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 9
/
Copy pathuri_test.go
156 lines (153 loc) · 2.69 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
package turn
import "testing"
func TestParseURI(t *testing.T) {
for _, tc := range []struct {
name string
in string
out URI
}{
{
name: "default",
in: "turn:example.org",
out: URI{
Host: "example.org",
Scheme: Scheme,
},
},
{
name: "secure",
in: "turns:example.org",
out: URI{
Host: "example.org",
Scheme: SchemeSecure,
},
},
{
name: "with port",
in: "turn:example.org:8000",
out: URI{
Host: "example.org",
Scheme: Scheme,
Port: 8000,
},
},
{
name: "with port and transport",
in: "turn:example.org:8000?transport=tcp",
out: URI{
Host: "example.org",
Scheme: Scheme,
Port: 8000,
Transport: TransportTCP,
},
},
{
name: "with transport",
in: "turn:example.org?transport=udp",
out: URI{
Host: "example.org",
Scheme: Scheme,
Transport: TransportUDP,
},
},
{
name: "with port and custom transport",
in: "turns:example.org:8000?transport=quic",
out: URI{
Host: "example.org",
Scheme: SchemeSecure,
Port: 8000,
Transport: "quic",
},
},
} {
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: "turn://example.org",
},
{
name: "bad scheme",
in: "tcp:example.org",
},
{
name: "invalid uri scheme",
in: "turn_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: "turn:example.org",
},
{
name: "secure",
uri: URI{
Host: "example.org",
Scheme: SchemeSecure,
},
out: "turns:example.org",
},
{
name: "secure with port",
uri: URI{
Host: "example.org",
Scheme: SchemeSecure,
Port: 443,
},
out: "turns:example.org:443",
},
{
name: "secure with transport",
uri: URI{
Host: "example.org",
Scheme: SchemeSecure,
Port: 443,
Transport: "tcp",
},
out: "turns:example.org:443?transport=tcp",
},
} {
t.Run(tc.name, func(t *testing.T) {
if v := tc.uri.String(); v != tc.out {
t.Errorf("%q != %q", v, tc.out)
}
})
}
}