This repository has been archived by the owner on Jun 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
uri_test.go
117 lines (114 loc) · 1.88 KB
/
uri_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
package stun
import "testing"
func TestParseURI(t *testing.T) {
for _, tc := range []struct {
name string
in string
out URI
}{
{
name: "default",
in: "stun:example.org",
out: URI{
Host: "example.org",
Scheme: Scheme,
},
},
{
name: "secure",
in: "stuns:example.org",
out: URI{
Host: "example.org",
Scheme: SchemeSecure,
},
},
{
name: "with port",
in: "stun:example.org:8000",
out: URI{
Host: "example.org",
Scheme: Scheme,
Port: 8000,
},
},
} {
t.Run(tc.name, func(t *testing.T) {
out, parseErr := ParseURI(tc.in)
if parseErr != nil {
t.Fatal(parseErr)
}
if out != tc.out {
t.Errorf("%s != %s", out, tc.out)
}
})
}
t.Run("MustFail", func(t *testing.T) {
for _, tc := range []struct {
name string
in string
}{
{
name: "hierarchical",
in: "stun://example.org",
},
{
name: "bad scheme",
in: "tcp:example.org",
},
{
name: "invalid uri scheme",
in: "stun_s:test",
},
} {
t.Run(tc.name, func(t *testing.T) {
_, parseErr := ParseURI(tc.in)
if parseErr == nil {
t.Fatal("should fail, but did not")
}
})
}
})
}
func TestURI_String(t *testing.T) {
for _, tc := range []struct {
name string
uri URI
out string
}{
{
name: "blank",
out: ":",
},
{
name: "simple",
uri: URI{
Host: "example.org",
Scheme: Scheme,
},
out: "stun:example.org",
},
{
name: "secure",
uri: URI{
Host: "example.org",
Scheme: SchemeSecure,
},
out: "stuns:example.org",
},
{
name: "secure with port",
uri: URI{
Host: "example.org",
Scheme: SchemeSecure,
Port: 443,
},
out: "stuns:example.org:443",
},
} {
t.Run(tc.name, func(t *testing.T) {
if v := tc.uri.String(); v != tc.out {
t.Errorf("%q != %q", v, tc.out)
}
})
}
}