-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathprefixmatch_test.go
46 lines (38 loc) · 1.11 KB
/
prefixmatch_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
package utils
import (
"fmt"
"testing"
)
func TestPrefixMatch(t *testing.T) {
pm := PrefixMatch{}
pm.Build([]string{"/api", "/api/auth", "blog"})
expected1 := []string{"/api"}
if res := pm.Match("/api"); !sliceEqual(res, expected1) {
t.Errorf("Expected %v, got %v for input '/api'", expected1, res)
}
expected2 := []string{"/api"}
if res := pm.Match("/api/index.html"); !sliceEqual(res, expected2) {
t.Errorf("Expected %v, got %v for input '/api/index.html'", expected2, res)
}
expected3 := []string{"/api", "/api/auth"}
if res := pm.Match("/api/auth"); !sliceEqual(res, expected3) {
t.Errorf("Expected %v, got %v for input '/api/auth'", expected3, res)
}
expected4 := []string{"/api", "/api/auth"}
if res := pm.Match("/api/auth/1234"); !sliceEqual(res, expected4) {
t.Errorf("Expected %v, got %v for input '/api/auth/1234'", expected4, res)
}
fmt.Printf("match(233) = %+v\n", pm.Match("233"))
}
// sliceEqual checks if two string slices are equal
func sliceEqual(a, b []string) bool {
if len(a) != len(b) {
return false
}
for i, v := range a {
if v != b[i] {
return false
}
}
return true
}