-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroup_test.go
109 lines (97 loc) · 3.49 KB
/
group_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
package rmhttp
import (
"fmt"
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
// ------------------------------------------------------------------------------------------------
// GROUP TESTS
// ------------------------------------------------------------------------------------------------
// Test_Group_Handle checks that a handler can be successfully added to a Group
func Test_Group_Handle(t *testing.T) {
groupPattern := "/group"
handlerPattern := "/pattern"
group := NewGroup(groupPattern)
group.Handle(
"get",
handlerPattern,
HandlerFunc(createTestHandlerFunc(200, "test body", nil)),
)
routes := group.ComputedRoutes()
assert.Len(t, routes, 1, "they should be equal")
expectedKey := fmt.Sprintf("GET %s", handlerPattern)
if route, ok := routes[expectedKey]; !ok {
t.Errorf("route not found: %s", expectedKey)
} else {
assert.Equal(t, "GET", route.Method, "they should be equal")
assert.Equal(t, fmt.Sprintf("%s%s", groupPattern, handlerPattern), route.ComputedPattern(), "they should be equal")
assert.NotNil(t, route.Handler, "it should not be nil")
}
}
// Test_Group_HandleFunc checks that a handlerFunc can be successfully added to a Group
func Test_Group_HandleFunc(t *testing.T) {
groupPattern := "/group"
handlerPattern := "/pattern"
group := NewGroup(groupPattern)
group.HandleFunc(
"get",
handlerPattern,
createTestHandlerFunc(200, "test body", nil),
)
routes := group.ComputedRoutes()
assert.Len(t, routes, 1, "they should be equal")
expectedKey := fmt.Sprintf("GET %s", handlerPattern)
if route, ok := routes[expectedKey]; !ok {
t.Errorf("route not found: %s", expectedKey)
} else {
assert.Equal(t, "GET", route.Method, "they should be equal")
assert.Equal(t, fmt.Sprintf("%s%s", groupPattern, handlerPattern), route.ComputedPattern(), "they should be equal")
assert.NotNil(t, route.Handler, "it should not be nil")
}
}
// Test_Group_Convenience_Handlers checks that a handlerFunc can be successfully added to the Group with
// any of the convenience methods.
func Test_Group_Convenience_Handlers(t *testing.T) {
groupPattern := "/group"
handlerPattern := "/pattern"
group := NewGroup(groupPattern)
tests := []struct {
name string
method string
handler func(string, func(http.ResponseWriter, *http.Request) error) *Group
}{
{"Get creates a route and adds it to the group with a GET method", "GET", group.Get},
{"Post creates a route and adds it to the group with a Post method", "POST", group.Post},
{
"Patch creates a route and adds it to the group with a Patch method",
"PATCH",
group.Patch,
},
{"Put creates a route and adds it to the group with a Put method", "PUT", group.Put},
{
"Delete creates a route and adds it to the group with a Delete method",
"DELETE",
group.Delete,
},
{
"Options creates a route and adds it to the group with a Options method",
"OPTIONS",
group.Options,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
test.handler(handlerPattern, createTestHandlerFunc(200, "test body", nil))
routes := group.ComputedRoutes()
expectedKey := fmt.Sprintf("%s %s", test.method, handlerPattern)
if route, ok := routes[expectedKey]; !ok {
t.Errorf("route not found: %s", expectedKey)
} else {
assert.Equal(t, test.method, route.Method, "they should be equal")
assert.Equal(t, fmt.Sprintf("%s%s", groupPattern, handlerPattern), route.ComputedPattern(), "they should be equal")
assert.NotNil(t, route.Handler, "it should not be nil")
}
})
}
}