-
Notifications
You must be signed in to change notification settings - Fork 0
/
transport_test.go
367 lines (297 loc) · 7.31 KB
/
transport_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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
//go:build !js
// +build !js
package ice
import (
"context"
"net"
"sync"
"testing"
"time"
"github.com/pion/stun/v2"
"github.com/pion/transport/v3/test"
)
func TestStressDuplex(t *testing.T) {
// Check for leaking routines
report := test.CheckRoutines(t)
defer report()
// Limit runtime in case of deadlocks
lim := test.TimeOut(time.Second * 20)
defer lim.Stop()
// Run the test
stressDuplex(t)
}
func testTimeout(t *testing.T, c *Conn, timeout time.Duration) {
const pollRate = 100 * time.Millisecond
const margin = 20 * time.Millisecond // Allow 20msec error in time
ticker := time.NewTicker(pollRate)
defer func() {
ticker.Stop()
err := c.Close()
if err != nil {
t.Error(err)
}
}()
startedAt := time.Now()
for cnt := time.Duration(0); cnt <= timeout+defaultKeepaliveInterval+pollRate; cnt += pollRate {
<-ticker.C
var cs ConnectionState
err := c.agent.run(context.Background(), func(ctx context.Context, agent *Agent) {
cs = agent.connectionState
})
if err != nil {
// We should never get here.
panic(err)
}
if cs != ConnectionStateConnected {
elapsed := time.Since(startedAt)
if elapsed+margin < timeout {
t.Fatalf("Connection timed out %f msec early", elapsed.Seconds()*1000)
} else {
t.Logf("Connection timed out in %f msec", elapsed.Seconds()*1000)
return
}
}
}
t.Fatalf("Connection failed to time out in time. (expected timeout: %v)", timeout)
}
func TestTimeout(t *testing.T) {
if testing.Short() {
t.Skip("skipping test in short mode.")
}
// Check for leaking routines
report := test.CheckRoutines(t)
defer report()
// Limit runtime in case of deadlocks
lim := test.TimeOut(time.Second * 20)
defer lim.Stop()
t.Run("WithoutDisconnectTimeout", func(t *testing.T) {
ca, cb := pipe(nil)
err := cb.Close()
if err != nil {
// We should never get here.
panic(err)
}
testTimeout(t, ca, defaultDisconnectedTimeout)
})
t.Run("WithDisconnectTimeout", func(t *testing.T) {
ca, cb := pipeWithTimeout(5*time.Second, 3*time.Second)
err := cb.Close()
if err != nil {
// We should never get here.
panic(err)
}
testTimeout(t, ca, 5*time.Second)
})
}
func TestReadClosed(t *testing.T) {
// Check for leaking routines
report := test.CheckRoutines(t)
defer report()
// Limit runtime in case of deadlocks
lim := test.TimeOut(time.Second * 20)
defer lim.Stop()
ca, cb := pipe(nil)
err := ca.Close()
if err != nil {
// We should never get here.
panic(err)
}
err = cb.Close()
if err != nil {
// We should never get here.
panic(err)
}
empty := make([]byte, 10)
_, err = ca.Read(empty)
if err == nil {
t.Fatalf("Reading from a closed channel should return an error")
}
}
func stressDuplex(t *testing.T) {
ca, cb := pipe(nil)
defer func() {
err := ca.Close()
if err != nil {
t.Fatal(err)
}
err = cb.Close()
if err != nil {
t.Fatal(err)
}
}()
opt := test.Options{
MsgSize: 10,
MsgCount: 1, // Order not reliable due to UDP & potentially multiple candidate pairs.
}
err := test.StressDuplex(ca, cb, opt)
if err != nil {
t.Fatal(err)
}
}
func check(err error) {
if err != nil {
panic(err)
}
}
func gatherAndExchangeCandidates(aAgent, bAgent *Agent) {
var wg sync.WaitGroup
wg.Add(2)
check(aAgent.OnCandidate(func(candidate Candidate) {
if candidate == nil {
wg.Done()
}
}))
check(aAgent.GatherCandidates())
check(bAgent.OnCandidate(func(candidate Candidate) {
if candidate == nil {
wg.Done()
}
}))
check(bAgent.GatherCandidates())
wg.Wait()
candidates, err := aAgent.GetLocalCandidates()
check(err)
for _, c := range candidates {
candidateCopy, copyErr := c.copy()
check(copyErr)
check(bAgent.AddRemoteCandidate(candidateCopy))
}
candidates, err = bAgent.GetLocalCandidates()
check(err)
for _, c := range candidates {
candidateCopy, copyErr := c.copy()
check(copyErr)
check(aAgent.AddRemoteCandidate(candidateCopy))
}
}
func connect(aAgent, bAgent *Agent) (*Conn, *Conn) {
gatherAndExchangeCandidates(aAgent, bAgent)
accepted := make(chan struct{})
var aConn *Conn
go func() {
var acceptErr error
bUfrag, bPwd, acceptErr := bAgent.GetLocalUserCredentials()
check(acceptErr)
aConn, acceptErr = aAgent.Accept(context.TODO(), bUfrag, bPwd)
check(acceptErr)
close(accepted)
}()
aUfrag, aPwd, err := aAgent.GetLocalUserCredentials()
check(err)
bConn, err := bAgent.Dial(context.TODO(), aUfrag, aPwd)
check(err)
// Ensure accepted
<-accepted
return aConn, bConn
}
func pipe(defaultConfig *AgentConfig) (*Conn, *Conn) {
var urls []*stun.URI
aNotifier, aConnected := onConnected()
bNotifier, bConnected := onConnected()
cfg := &AgentConfig{}
if defaultConfig != nil {
*cfg = *defaultConfig
}
cfg.Urls = urls
cfg.NetworkTypes = supportedNetworkTypes()
aAgent, err := NewAgent(cfg)
check(err)
check(aAgent.OnConnectionStateChange(aNotifier))
bAgent, err := NewAgent(cfg)
check(err)
check(bAgent.OnConnectionStateChange(bNotifier))
aConn, bConn := connect(aAgent, bAgent)
// Ensure pair selected
// Note: this assumes ConnectionStateConnected is thrown after selecting the final pair
<-aConnected
<-bConnected
return aConn, bConn
}
func pipeWithTimeout(disconnectTimeout time.Duration, iceKeepalive time.Duration) (*Conn, *Conn) {
var urls []*stun.URI
aNotifier, aConnected := onConnected()
bNotifier, bConnected := onConnected()
cfg := &AgentConfig{
Urls: urls,
DisconnectedTimeout: &disconnectTimeout,
KeepaliveInterval: &iceKeepalive,
NetworkTypes: supportedNetworkTypes(),
}
aAgent, err := NewAgent(cfg)
check(err)
check(aAgent.OnConnectionStateChange(aNotifier))
bAgent, err := NewAgent(cfg)
check(err)
check(bAgent.OnConnectionStateChange(bNotifier))
aConn, bConn := connect(aAgent, bAgent)
// Ensure pair selected
// Note: this assumes ConnectionStateConnected is thrown after selecting the final pair
<-aConnected
<-bConnected
return aConn, bConn
}
func onConnected() (func(ConnectionState), chan struct{}) {
done := make(chan struct{})
return func(state ConnectionState) {
if state == ConnectionStateConnected {
close(done)
}
}, done
}
func randomPort(t testing.TB) int {
t.Helper()
conn, err := net.ListenPacket("udp4", "127.0.0.1:0")
if err != nil {
t.Fatalf("failed to pickPort: %v", err)
}
defer func() {
_ = conn.Close()
}()
switch addr := conn.LocalAddr().(type) {
case *net.UDPAddr:
return addr.Port
default:
t.Fatalf("unknown addr type %T", addr)
return 0
}
}
func TestConnStats(t *testing.T) {
// Check for leaking routines
report := test.CheckRoutines(t)
defer report()
// Limit runtime in case of deadlocks
lim := test.TimeOut(time.Second * 20)
defer lim.Stop()
ca, cb := pipe(nil)
if _, err := ca.Write(make([]byte, 10)); err != nil {
t.Fatal("unexpected error trying to write")
}
var wg sync.WaitGroup
wg.Add(1)
go func() {
buf := make([]byte, 10)
if _, err := cb.Read(buf); err != nil {
panic(errRead)
}
wg.Done()
}()
wg.Wait()
if ca.BytesSent() != 10 {
t.Fatal("bytes sent don't match")
}
if cb.BytesReceived() != 10 {
t.Fatal("bytes received don't match")
}
err := ca.Close()
if err != nil {
// We should never get here.
panic(err)
}
err = cb.Close()
if err != nil {
// We should never get here.
panic(err)
}
}