-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuri_tools_test.go
More file actions
55 lines (47 loc) · 1.37 KB
/
uri_tools_test.go
File metadata and controls
55 lines (47 loc) · 1.37 KB
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
package maas
import (
. "github.com/smartystreets/goconvey/convey"
"strings"
"testing"
)
func TestReloadRegex(t *testing.T) {
Convey("check all compile regex", t, func() {
for k, rgx := range IgnoreTrailUrlSlashRegexPreCompile {
tS := strings.ReplaceAll(strings.ReplaceAll(k, "{", ""), "}", "")
So(rgx.FindStringIndex(tS), ShouldNotBeNil)
}
})
}
func BenchmarkTestRegex(b *testing.B) {
for i := 0; i < b.N; i++ {
for k, rgx := range IgnoreTrailUrlSlashRegexPreCompile {
rgx.FindStringIndex(k)
}
}
}
func TestEnsureTrailingSlash(t *testing.T) {
Convey("test should add / for url", t, func() {
So(
EnsureTrailingSlash("/MAAS/api/2.0/account"),
ShouldEqual,
"/MAAS/api/2.0/account/")
So(
EnsureTrailingSlash("/MAAS/api/2.0/nodes/{system_id}/blockdevices/{device_id}/partition/{id}"),
ShouldEqual,
"/MAAS/api/2.0/nodes/{system_id}/blockdevices/{device_id}/partition/{id}")
So(
EnsureTrailingSlash("/MAAS/api/2.0/nodes/{system_id}/blockdevices/{device_id}/partitions"),
ShouldEqual,
"/MAAS/api/2.0/nodes/{system_id}/blockdevices/{device_id}/partitions/")
So(
EnsureTrailingSlash("/MAAS/api/2.0/fannetworks/"),
ShouldEqual,
"/MAAS/api/2.0/fannetworks/")
})
}
func TestJoinURLs(t *testing.T) {
Convey("join urls ", t, func() {
So(JoinURLs("http://example.com/base/", "/szot"),
ShouldEqual, "http://example.com/base/szot")
})
}