-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserver_test.go
88 lines (70 loc) · 1.75 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
package webfmwk
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestDumpRoutes(t *testing.T) {
s, e := InitServer(
SetPrefix("/api"),
CheckIsUp())
require.Nil(t, e)
s.GET("/get", func(c Context) error {
return nil
})
s.POST("/post", func(c Context) error {
return nil
})
s.PUT("/put", func(c Context) error {
return nil
})
s.PATCH("/patch", func(c Context) error {
return nil
})
s.DELETE("/delete", func(c Context) error {
return nil
})
all := s.DumpRoutes()
t.Log(all)
expected := map[string][]string{
"DELETE": {"/api/delete"},
"GET": {"/api/ping", "/api/get"},
"PATCH": {"/api/patch"},
"POST": {"/api/post"},
"PUT": {"/api/put"},
}
require.Equal(t, expected, all)
// options handled by fasthttp
// require.Contains(t, all, "OPTIONS")
}
func TestGetLauncher(t *testing.T) {
s, e := InitServer(CheckIsUp())
require.Nil(t, e)
t.Cleanup(func() { require.Nil(t, s.ShutdownAndWait()) })
if s.GetLauncher() == nil {
t.Errorf("Launcher wrongly created : %v.", s.launcher)
}
}
func TestGetContext(t *testing.T) {
s, e := InitServer(CheckIsUp())
require.Nil(t, e)
t.Cleanup(func() { require.Nil(t, s.ShutdownAndWait()) })
if s.GetContext() == nil {
t.Errorf("Context wrongly created : %v.", s.ctx)
}
}
func TestAddHandlers(t *testing.T) {
s, e := InitServer(CheckIsUp())
require.Nil(t, e)
t.Cleanup(func() { require.Nil(t, s.ShutdownAndWait()) })
s.addHandlers(func(next HandlerFunc) HandlerFunc {
return HandlerFunc(func(c Context) error {
return nil
})
})
require.True(t, len(s.meta.handlers) == 1, "handler wrongly saved")
}
// // // TODO: TestStartTLS(t *testing.T)
// // // TODO: TestStart
// // // TODO: TestShutDown
// // // TODO: TestWaitAndStop
// // // TODO: TestExitHandler