forked from pion/webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration_test.go
55 lines (47 loc) · 1.17 KB
/
configuration_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
package webrtc
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestConfiguration_getICEServers(t *testing.T) {
t.Run("Success", func(t *testing.T) {
expectedServerStr := "stun:stun.l.google.com:19302"
cfg := Configuration{
ICEServers: []ICEServer{
{
URLs: []string{expectedServerStr},
},
},
}
parsedURLs, err := cfg.getICEServers()
assert.Nil(t, err)
assert.Equal(t, expectedServerStr, (*parsedURLs)[0].String())
})
t.Run("Failure", func(t *testing.T) {
expectedServerStr := "stun.l.google.com:19302"
cfg := Configuration{
ICEServers: []ICEServer{
{
URLs: []string{expectedServerStr},
},
},
}
_, err := cfg.getICEServers()
assert.NotNil(t, err)
})
t.Run("Success", func(t *testing.T) {
// ignore the fact that stun URLs shouldn't have a query
serverStr := "stun:global.stun.twilio.com:3478?transport=udp"
expectedServerStr := "stun:global.stun.twilio.com:3478"
cfg := Configuration{
ICEServers: []ICEServer{
{
URLs: []string{serverStr},
},
},
}
parsedURLs, err := cfg.getICEServers()
assert.Nil(t, err)
assert.Equal(t, expectedServerStr, (*parsedURLs)[0].String())
})
}