-
Notifications
You must be signed in to change notification settings - Fork 1
/
url_matcher_test.go
122 lines (113 loc) · 2.42 KB
/
url_matcher_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
package mux
import (
"log"
"os"
"runtime/pprof"
"testing"
"github.com/stretchr/testify/require"
)
func TestUrlMatchesPattern(t *testing.T) {
testCases := []struct {
pattern string
url string
matches bool
paramsMap ParamsMap
}{
{
pattern: "/main",
url: "/",
matches: false,
},
{
pattern: "/api/{name}/provider/{git}",
url: "/api/mux/provider/github",
matches: true,
paramsMap: ParamsMap{"name": "mux", "git": "github"},
},
{
pattern: "/{slug}/{name}/{age}",
url: "/hello_world/mux/123",
matches: true,
paramsMap: ParamsMap{"slug": "hello_world", "name": "mux", "age": "123"},
},
{
pattern: "/{slug}/{name}/{age}",
url: "/hello_world/mux",
matches: false,
},
{
pattern: "/{slug}/{name}/{age}",
url: "/hello_world/mux/123/extra",
matches: false,
},
{
pattern: "/{slug}/{name}",
url: "/hello_world/mux/123",
matches: false,
},
{
pattern: "/{slug}/{name}",
url: "/hello_world/mux",
matches: true,
paramsMap: ParamsMap{"slug": "hello_world", "name": "mux"},
},
{
pattern: "/{slug}/",
url: "/hello_world/",
matches: true,
paramsMap: ParamsMap{"slug": "hello_world"},
},
{
pattern: "/",
url: "/",
matches: true,
paramsMap: ParamsMap{},
},
{
pattern: "",
url: "",
matches: false,
},
{
pattern: "/{slug}",
url: "/hello world",
matches: true,
paramsMap: ParamsMap{"slug": "hello world"},
},
{
pattern: "/{slug}",
url: "/hello/world",
matches: false,
},
}
paramsMap := make(ParamsMap)
for _, tc := range testCases {
matches, resultMap, err := urlMatchesPattern(tc.pattern, tc.url, paramsMap)
if tc.matches {
require.NoError(t, err)
}
require.Equal(t, matches, tc.matches, tc.url)
require.Equal(t, resultMap, tc.paramsMap)
// Clear the map for the next iteration
for k := range paramsMap {
delete(paramsMap, k)
}
}
}
func BenchmarkUrlMatchesPattern(b *testing.B) {
f, err := os.Create("url_matcher_allocs.pprof")
if err != nil {
log.Fatalln("Could not create file", err)
}
defer f.Close()
pprof.Lookup("allocs").WriteTo(f, 0)
paramsMap := make(ParamsMap)
b.ResetTimer()
for i := 0; i < b.N; i++ {
urlMatchesPattern("/{slug}", "hello_world", paramsMap)
// Clear the map for the next iteration
for k := range paramsMap {
delete(paramsMap, k)
}
}
}