This repository was archived by the owner on May 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathutils_test.js
146 lines (126 loc) · 4.22 KB
/
utils_test.js
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
/*
* Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree.
*/
/* More information about these options at jshint.com/docs/options */
/* globals describe, expect, it, filterIceServersUrls, randomString,
queryStringToDictionary */
'use strict';
describe('Utils test', function() {
var PEERCONNECTION_CONFIG = {
iceServers: [
{
urls: [
'turn:turn.example1.com',
'turn:turn.example.com?transport=tcp',
'turn:turn.example.com?transport=udp',
'turn:turn.example1.com:8888',
'turn:turn.example.com:8888?transport=tcp',
'turn:turn.example.com:8888?transport=udp'
],
username: 'username',
credential: 'credential'
},
{
urls: [
'stun:stun.example1.com',
'stun:stun.example.com?transport=tcp',
'stun:stun.example.com?transport=udp',
'stun:stun.example1.com:8888',
'stun:stun.example.com:8888?transport=tcp',
'stun:stun.example.com:8888?transport=udp'
]
},
{
// This should not appear at all due to it being empty after filtering
// it.
urls: [
'stun:stun2.example.com?transport=tcp'
]
}
]
};
var PEERCONNECTION_CONFIG_FILTERED = {
iceServers: [
{
urls: [
'turn:turn.example1.com?transport=udp',
'turn:turn.example.com?transport=udp',
'turn:turn.example1.com:8888?transport=udp',
'turn:turn.example.com:8888?transport=udp'
],
username: 'username',
credential: 'credential'
},
{
urls: [
'stun:stun.example1.com?transport=udp',
'stun:stun.example.com?transport=udp',
'stun:stun.example1.com:8888?transport=udp',
'stun:stun.example.com:8888?transport=udp'
]
}
]
};
it('filter Ice Servers URLS', function() {
filterIceServersUrls(PEERCONNECTION_CONFIG, 'udp');
// Only transport=udp URLs should remain.'
expect(PEERCONNECTION_CONFIG).toEqual(PEERCONNECTION_CONFIG_FILTERED);
});
it('random Returns Correct Length', function() {
expect(randomString(13).length).toEqual(13);
expect(randomString(5).length).toEqual(5);
expect(randomString(10).length).toEqual(10);
});
it('random Returns Correct Characters', function() {
var str = randomString(500);
// randomString should return only the digits 0-9.
var positiveRe = /^[0-9]+$/;
var negativeRe = /[^0-9]/;
var positiveResult = positiveRe.exec(str);
var negativeResult = negativeRe.exec(str);
expect(positiveResult.index).toEqual(0);
expect(negativeResult).toBeNull();
});
it('query String To Dictionary', function() {
var dictionary = {
'foo': 'a',
'baz': '',
'bar': 'b',
'tee': '',
};
var buildQuery = function(data, includeEqualsOnEmpty) {
var queryString = '?';
for (var key in data) {
queryString += key;
if (data[key] || includeEqualsOnEmpty) {
queryString += '=';
}
queryString += data[key] + '&';
}
queryString = queryString.slice(0, -1);
return queryString;
};
// Build query where empty value is formatted as &tee=&.
var query = buildQuery(dictionary, true);
var result = queryStringToDictionary(query);
expect(JSON.stringify(result)).toEqual(JSON.stringify(dictionary));
// Build query where empty value is formatted as &tee&.
query = buildQuery(dictionary, false);
result = queryStringToDictionary(query);
expect(JSON.stringify(result)).toEqual(JSON.stringify(dictionary));
result = queryStringToDictionary('?');
expect(Object.keys(result).length).toEqual(0);
result = queryStringToDictionary('?=');
expect(Object.keys(result).length).toEqual(0);
result = queryStringToDictionary('?&=');
expect(Object.keys(result).length).toEqual(0);
result = queryStringToDictionary('');
expect(Object.keys(result).length).toEqual(0);
result = queryStringToDictionary('?=abc');
expect(Object.keys(result).length).toEqual(0);
});
});