-
Notifications
You must be signed in to change notification settings - Fork 4
/
server_test.go
134 lines (131 loc) · 3.84 KB
/
server_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
package sslmgr
import (
"errors"
"net/http"
"syscall"
"testing"
"time"
. "github.com/smartystreets/goconvey/convey"
)
func TestSecureServer(t *testing.T) {
Convey("Test NewSecureServer()", t, func() {
Convey("Test Required Fields Suffice", func() {
ss, err := NewSecureServer(http.NotFoundHandler(), "yourdomain.io")
So(ss, ShouldNotBeNil)
So(err, ShouldBeNil)
})
})
Convey("Test NewServer()", t, func() {
Convey("Test Required Field - Hostnames nil", func() {
ss, err := NewServer(ServerConfig{
Handler: http.NotFoundHandler(),
})
So(ss, ShouldBeNil)
So(err, ShouldEqual, ErrNoHostname)
})
Convey("Test Required Field - Hostnames empty", func() {
ss, err := NewServer(ServerConfig{
Handler: http.NotFoundHandler(),
Hostnames: []string{},
})
So(ss, ShouldBeNil)
So(err, ShouldEqual, ErrNoHostname)
})
Convey("Test Required Field - Handler", func() {
ss, err := NewServer(ServerConfig{
Hostnames: []string{"yourdomain.io"},
})
So(ss, ShouldBeNil)
So(err, ShouldEqual, ErrNoHandler)
})
Convey("Test Required Fields Suffice", func() {
ss, err := NewServer(ServerConfig{
Handler: http.NotFoundHandler(),
Hostnames: []string{"yourdomain.io"},
})
So(ss, ShouldNotBeNil)
So(err, ShouldBeNil)
})
Convey("Test Default Values Are Applied", func() {
ss, err := NewServer(ServerConfig{
Handler: http.NotFoundHandler(),
Hostnames: []string{"yourdomain.io"},
})
So(err, ShouldBeNil)
So(ss, ShouldNotBeNil)
So(ss.certMgr, ShouldNotBeNil)
So(ss.serveSSLFunc, ShouldNotBeNil)
So(ss.serveSSLFunc(), ShouldEqual, true)
So(ss.httpPort, ShouldEqual, ":80")
So(ss.httpsPort, ShouldEqual, ":443")
So(ss.server.ReadTimeout, ShouldEqual, 5*time.Second)
So(ss.server.IdleTimeout, ShouldEqual, 25*time.Second)
So(ss.server.WriteTimeout, ShouldEqual, 5*time.Second)
So(ss.gracefulnessTimeout, ShouldEqual, 5*time.Second)
So(ss.gracefulShutdownErrHandler, ShouldNotBeNil)
So(func() {
ss.gracefulShutdownErrHandler(errors.New("Hello World"))
}, ShouldNotPanic)
})
Convey("Test Port Address Correction", func() {
ss, err := NewServer(ServerConfig{
Handler: http.NotFoundHandler(),
Hostnames: []string{"yourdomain.io"},
HTTPPort: "80",
HTTPSPort: "443",
})
So(err, ShouldBeNil)
So(ss, ShouldNotBeNil)
So(ss.httpPort, ShouldEqual, ":80")
So(ss.httpsPort, ShouldEqual, ":443")
})
Convey("Test HTTP Port Address Failure", func() {
ss, err := NewServer(ServerConfig{
Handler: http.NotFoundHandler(),
Hostnames: []string{"yourdomain.io"},
HTTPPort: "not an int",
})
So(ss, ShouldBeNil)
So(err, ShouldEqual, ErrNotAnInteger)
})
Convey("Test HTTPS Port Address Failure", func() {
ss, err := NewServer(ServerConfig{
Handler: http.NotFoundHandler(),
Hostnames: []string{"yourdomain.io"},
HTTPSPort: "not an int",
})
So(ss, ShouldBeNil)
So(err, ShouldEqual, ErrNotAnInteger)
})
})
Convey("Test startGracefulStopHandler()", t, func() {
Convey("Test startGracefulStopHandler Does Not Panic", func() {
ss, err := NewServer(ServerConfig{
Handler: http.NotFoundHandler(),
Hostnames: []string{"yourdomain.io"},
})
So(ss, ShouldNotBeNil)
So(err, ShouldBeNil)
So(func() {
ss.startGracefulStopHandler(5*time.Second, func(e error) { /* NOP */ })
syscall.Signal(syscall.SIGINT).Signal()
}, ShouldNotPanic)
})
})
Convey("Test serveHTTPS()", t, func() {
Convey("Test serveHTTPS Does Not Panic", func() {
ss, err := NewServer(ServerConfig{
Handler: http.NotFoundHandler(),
Hostnames: []string{"yourdomain.io"},
})
So(ss, ShouldNotBeNil)
So(err, ShouldBeNil)
So(func() {
ss.testing = true
ss.serveHTTPS()
syscall.Signal(syscall.SIGINT).Signal()
}, ShouldNotPanic)
So(ss.server.Addr, ShouldEqual, ":443")
})
})
}