-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathBrowserTest.js
More file actions
268 lines (222 loc) · 7.65 KB
/
BrowserTest.js
File metadata and controls
268 lines (222 loc) · 7.65 KB
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
const { describe, it } = (exports.lab = require('@hapi/lab').script());
const expect = require('@hapi/code').expect;
const Browser = require('../../src/model/Browser');
const Version = require('../../src/model/Version');
const Family = require('../../src/model/Family');
const Using = require('../../src/model/Using');
describe('Browser Class', () => {
describe('test defaults', () => {
it('should be as expected', () => {
const browser = new Browser();
expect(browser.stock).to.be.true();
expect(browser.hidden).to.be.false();
expect(browser.mode).to.be.equal('');
expect(browser.type).to.be.equal('');
});
});
describe('test reset', () => {
it('should reset to defaults', () => {
const browser = new Browser({
stock: false,
hidden: true,
mode: 'xxxx',
type: 'xxxx',
});
expect(browser.stock).to.be.false();
expect(browser.hidden).to.be.true();
expect(browser.mode).to.be.equal('xxxx');
expect(browser.type).to.be.equal('xxxx');
browser.reset();
expect(browser.stock).to.be.true();
expect(browser.hidden).to.be.false();
expect(browser.mode).to.be.equal('');
expect(browser.type).to.be.equal('');
});
});
describe('test getName method', () => {
it('should return the name', () => {
const browser = new Browser({
name: 'Chrome',
version: new Version({ value: '47.0.2526.73', details: 1 }),
});
expect(browser.getName()).to.be.equal('Chrome');
});
});
describe('test getVersion method', () => {
describe('without details property', () => {
it('should return the entire version', () => {
const browser = new Browser({
name: 'Chrome',
version: new Version({ value: '47.0.2526.73' }),
});
expect(browser.getVersion()).to.equal('47.0.2526.73');
});
});
describe('without details property', () => {
it('should return the entire version', () => {
const browser = new Browser({
name: 'Chrome',
version: new Version({ value: '47.0.2526.73', details: 1 }),
});
expect(browser.getVersion()).to.equal('47');
});
});
});
describe('test isDetected method', () => {
it('should return true', () => {
const browser = new Browser();
expect(browser.isDetected()).to.be.false();
browser.reset({
name: 'Chrome',
version: new Version({ value: '47.0.2526.73', details: 1 }),
});
expect(browser.isDetected()).to.be.true();
});
});
describe('test isFamily method', () => {
describe('with no initialization', () => {
it('should return false', () => {
const browser = new Browser();
expect(browser.isFamily('Chrome')).to.be.false();
});
});
describe('with correct family', () => {
it('should return true', () => {
const browser = new Browser({
name: 'Opera',
family: new Family({ name: 'Chrome' }),
});
expect(browser.isFamily('Chrome')).to.be.true();
});
});
describe('with wrong family', () => {
it('should return true', () => {
const browser = new Browser({
name: 'Opera',
family: new Family({ name: 'Chrome' }),
});
expect(browser.isFamily('Firefox')).to.be.false();
});
});
});
describe('test toString method', () => {
describe('with version details property', () => {
it('should return the name and version', () => {
const browser = new Browser({
name: 'Chrome',
version: new Version({ value: '47.0.2526.73', details: 1 }),
});
expect(browser.toString()).to.be.equal('Chrome 47');
});
});
describe('with hidden set to true ', () => {
it('should return an empty string', () => {
const browser = new Browser({
name: 'Safari',
hidden: true,
version: new Version({ value: '8.0' }),
});
expect(browser.toString()).to.be.equal('');
});
});
describe('with name and using property', () => {
it('should return the name', () => {
const browser = new Browser({
name: 'TestBrowser',
using: new Using({ name: 'Crosswalk Webview' }),
});
expect(browser.toString()).to.be.equal('TestBrowser');
});
});
describe('without name and with using property', () => {
it('should return the name', () => {
const browser = new Browser({
using: new Using({ name: 'Crosswalk Webview' }),
});
expect(browser.toString()).to.be.equal('Crosswalk Webview');
});
});
describe('with name and hidden set to true ', () => {
it('should return an empty string', () => {
const browser = new Browser({
name: 'BlackBerry Browser',
hidden: true,
});
expect(browser.toString()).to.be.equal('');
});
});
});
describe('test identifyVersion method', () => {
describe('with matching RegExp and details set to 1 ', () => {
it('should return the major version', () => {
const browser = new Browser();
browser.identifyVersion(/Chrome\/([0-9.]+)/u, 'Chrome/47.0.2526.73', { details: 1 });
expect(browser.getVersion()).to.be.equal('47');
});
});
describe('with matching RegExp and legacy type', () => {
it('should return the version in the current format', () => {
const browser = new Browser();
browser.identifyVersion(/Mozilla\/([0-9.]+)/u, 'Mozilla/2.03', { type: 'legacy' });
expect(browser.getVersion()).to.be.equal('2.0.3');
});
});
describe('with not matching RegExp', () => {
it('should return empty version', () => {
const browser = new Browser();
browser.identifyVersion(/Safari\/([0-9.]+)/u, 'Chrome/47.0.2526.73');
expect(browser.getVersion()).to.be.empty();
});
});
});
describe('test toObject method', () => {
describe('with name empty', () => {
it('should return an empty object', () => {
const browser = new Browser({
name: '',
});
expect(browser.toObject()).equal({});
});
});
describe('with name and details filled', () => {
it('should return the name value according to details level', () => {
const browser = new Browser({
name: 'Chrome',
version: new Version({ value: '47.0.2526.73', details: 1 }),
});
expect(browser.toObject()).to.equal({ name: 'Chrome', version: '47' });
});
});
describe('with name and alias filled', () => {
it('should return an object with name and alias properties', () => {
const properties = { name: 'TestBrowser', alias: 'Alias' };
const browser = new Browser(properties);
expect(browser.toObject()).to.equal(properties);
});
});
describe('with name and family filled', () => {
it('should return an object with name and family properties', () => {
const browser = new Browser({
name: 'Opera',
family: new Family({ name: 'Chrome' }),
});
expect(browser.toObject()).to.equal({
name: 'Opera',
family: 'Chrome',
});
});
});
describe('with name and using filled', () => {
it('should return an object with name and using properties', () => {
const browser = new Browser({
name: 'TestBrowser',
using: new Using({ name: 'Crosswalk WebView' }),
});
expect(browser.toObject()).to.equal({
name: 'TestBrowser',
using: 'Crosswalk WebView',
});
});
});
});
});