forked from gemini-testing/gemini
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgemini.js
More file actions
462 lines (365 loc) · 15 KB
/
Copy pathgemini.js
File metadata and controls
462 lines (365 loc) · 15 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
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
'use strict';
const EventEmitter = require('events').EventEmitter;
const _ = require('lodash');
const proxyquire = require('proxyquire');
const Promise = require('bluebird');
const pluginsLoader = require('plugins-loader');
const Config = require('lib/config');
const Runner = require('lib/runner');
const Events = require('lib/constants/events');
const SuiteCollection = require('lib/suite-collection');
const temp = require('lib/temp');
const mkSuiteStub = require('../util').makeSuiteStub;
const mkStateStub = require('../util').makeStateStub;
describe('gemini', () => {
const sandbox = sinon.sandbox.create();
let Gemini;
let gemini;
let testReaderStub;
let signalHandler;
const stubBrowsers = (browserIds) => {
return browserIds.reduce((fakeBrowsers, browser) => {
return _.set(fakeBrowsers, browser, {desiredCapabilities: {}});
}, {});
};
const initGemini = (opts) => {
opts = opts || {};
opts.rootSuite = opts.rootSuite || mkSuiteStub();
testReaderStub = sandbox.stub().named('TestReader').returns(Promise.resolve(opts.rootSuite));
signalHandler = new EventEmitter();
Gemini = proxyquire('lib/gemini', {
'./test-reader': testReaderStub,
'./signal-handler': signalHandler
});
return new Gemini({
rootUrl: 'http://localhost',
system: {
projectRoot: 'stub/project/root',
tempDir: opts.tempDir || 'stub/temp/dir',
plugins: opts.plugins || {}
},
browsers: opts.browserIds ? stubBrowsers(opts.browserIds) : []
});
};
const runGeminiTest = (opts) => {
opts = _.defaults(opts || {}, {
browserIds: []
});
gemini = initGemini(opts);
gemini.config.sets = opts.sets;
return gemini.test([], opts.cliOpts);
};
beforeEach(() => {
sandbox.stub(Runner.prototype, 'on').returnsThis();
sandbox.stub(Runner.prototype, 'run').returns(Promise.resolve());
sandbox.stub(Runner.prototype, 'cancel').returns(Promise.resolve());
sandbox.stub(console, 'warn');
sandbox.stub(pluginsLoader, 'load');
sandbox.stub(temp, 'init');
});
afterEach(() => sandbox.restore());
it('should passthrough runner events', () => {
const runner = new EventEmitter();
sandbox.stub(Runner, 'create').returns(runner);
const gemini = initGemini({});
gemini.test();
[
Events.START_RUNNER,
Events.END_RUNNER,
Events.BEGIN,
Events.END,
Events.BEGIN_SESSION,
Events.END_SESSION,
Events.RETRY,
Events.START_BROWSER,
Events.STOP_BROWSER,
Events.BEGIN_SUITE,
Events.END_SUITE,
Events.SKIP_STATE,
Events.BEGIN_STATE,
Events.END_STATE,
Events.INFO,
Events.WARNING,
Events.ERROR,
Events.END_TEST,
Events.CAPTURE,
Events.TEST_RESULT,
Events.UPDATE_RESULT
].forEach((event, name) => {
const spy = sinon.spy().named(`${name} handler`);
gemini.on(event, spy);
runner.emit(event, 'value');
assert.calledOnce(spy);
assert.calledWith(spy, 'value');
});
});
describe('load plugins', () => {
it('should load plugins', () => {
return runGeminiTest()
.then(() => assert.calledOnce(pluginsLoader.load));
});
it('should load plugins before reading tests', () => {
return runGeminiTest()
.then(() => assert.callOrder(pluginsLoader.load, testReaderStub));
});
it('should load plugins for gemini instance', () => {
const gemini = initGemini();
return gemini.test()
.then(() => assert.calledWith(pluginsLoader.load, gemini));
});
it('should load plugins from config', () => {
return runGeminiTest({plugins: {'some-plugin': true}})
.then(() => assert.calledWith(pluginsLoader.load, sinon.match.any, {'some-plugin': true}));
});
it('should load plugins with appropriate prefix', () => {
const prefix = require('../../package').name + '-';
return runGeminiTest()
.then(() => assert.calledWith(pluginsLoader.load, sinon.match.any, sinon.match.any, prefix));
});
});
describe('readTests', () => {
const readTests_ = (rootSuite, options) => {
gemini = initGemini({rootSuite});
return gemini.readTests(null, options);
};
beforeEach(() => {
sandbox.stub(Config.prototype);
Config.prototype.getBrowserIds.returns([]);
});
it('should pass sets from cli to test-reader', () => {
const opts = {
cliOpts: {sets: ['set1']}
};
return runGeminiTest(opts)
.then(() => {
assert.calledWithMatch(testReaderStub,
sinon.match.any,
sinon.match.any,
sinon.match({sets: ['set1']})
);
});
});
it('should pass browsers from cli to test-reader', () => {
const opts = {
cliOpts: {browsers: ['bro1']}
};
return runGeminiTest(opts)
.then(() => {
assert.calledWithMatch(testReaderStub,
sinon.match.any,
sinon.match.any,
sinon.match({browsers: ['bro1']})
);
});
});
it('should return SuiteCollection instance', () => {
return readTests_()
.then((result) => {
assert.instanceOf(result, SuiteCollection);
});
});
it('should add to suite collection all read tests excluding root', () => {
const parent = mkSuiteStub();
const child = mkSuiteStub({parent: parent});
const anotherChild = mkSuiteStub({parent: parent});
parent.addChild(child);
parent.addChild(anotherChild);
return readTests_(parent)
.then((collection) => {
const allSuites = collection.allSuites();
assert.notInclude(allSuites, parent);
assert.include(allSuites, child);
assert.include(allSuites, anotherChild);
});
});
it('should grep leaf suites by fullname', () => {
const grandParent = mkSuiteStub();
const parent = mkSuiteStub({parent: grandParent});
grandParent.addChild(parent);
const matchingChild = mkSuiteStub({
states: [mkStateStub()],
name: 'ok',
parent: parent
});
const nonMatchingChild = mkSuiteStub({
states: [mkStateStub()],
name: 'fail',
parent: parent
});
parent.addChild(matchingChild);
parent.addChild(nonMatchingChild);
return readTests_(parent, {grep: /ok/})
.then((collection) => {
const allSuites = collection.allSuites();
assert.include(allSuites, matchingChild);
assert.notInclude(allSuites, nonMatchingChild);
});
});
it('should remove tree branch if it does not have leaf suites', () => {
const grandParent = mkSuiteStub();
const parent = mkSuiteStub({parent: grandParent});
const nonMatchingBranchRoot = mkSuiteStub({
name: 'nonMatchingBranchRoot',
parent: parent
});
const nonMatchingBranchLeaf = mkSuiteStub({
states: [mkStateStub()],
name: 'nonMatchingBranchLeaf',
parent: nonMatchingBranchRoot
});
return readTests_(grandParent, {grep: /matchingBranchLeaf/})
.then((collection) => {
const allSuites = collection.allSuites();
assert.notInclude(allSuites, nonMatchingBranchRoot);
assert.notInclude(allSuites, nonMatchingBranchLeaf);
});
});
it('should keep in tree branch that have matching leaf suites', () => {
const grandParent = mkSuiteStub();
const parent = mkSuiteStub({parent: grandParent});
grandParent.addChild(parent);
const matchingBranchRoot = mkSuiteStub({
name: 'matchingBranchRoot',
parent: parent
});
parent.addChild(matchingBranchRoot);
const matchingBranchLeaf = mkSuiteStub({
states: [mkStateStub()],
name: 'matchingBranchLeaf',
parent: matchingBranchRoot
});
matchingBranchRoot.addChild(matchingBranchLeaf);
return readTests_(grandParent, {grep: /matchingBranchLeaf/})
.then((collection) => {
const allSuites = collection.allSuites();
assert.include(allSuites, matchingBranchRoot);
assert.include(allSuites, matchingBranchLeaf);
});
});
it('should warn if RegExp was passed instead of object', () => {
return readTests_(null, new RegExp(/string/))
.then(() => assert.calledWith(console.warn, sinon.match(
'Passing grep to readTests is deprecated. You should pass an object with options: {grep: /string/}.'
)));
});
});
describe('test', () => {
it('should initialize temp with specified temp dir', () => {
runGeminiTest({tempDir: '/some/dir'});
assert.calledOnce(temp.init);
assert.calledWith(temp.init, '/some/dir');
});
it('should initialize temp before start runner', () => {
return runGeminiTest()
.then(() => {
assert.callOrder(
temp.init,
Runner.prototype.run
);
});
});
});
describe('environment variables', () => {
beforeEach(() => {
sandbox.stub(SuiteCollection.prototype, 'skipBrowsers');
});
afterEach(() => {
delete process.env.GEMINI_BROWSERS;
delete process.env.GEMINI_SKIP_BROWSERS;
});
it('should use browsers from GEMINI_BROWSERS', () => {
process.env.GEMINI_BROWSERS = 'b1';
return runGeminiTest({browserIds: ['b1', 'b2']})
.then(() => {
assert.calledWithMatch(testReaderStub,
sinon.match.any,
sinon.match.any,
{browsers: ['b1']}
);
});
});
it('should handle spaces in value of GEMINI_BROWSERS', () => {
process.env.GEMINI_BROWSERS = 'b1, b2';
return runGeminiTest({browserIds: ['b1', 'b2']})
.then(() => {
assert.calledWithMatch(testReaderStub,
sinon.match.any,
sinon.match.any,
{browsers: ['b1', 'b2']}
);
});
});
it('should warn about unknown browsers in GEMINI_BROWSERS', () => {
process.env.GEMINI_BROWSERS = 'b1, b2';
return runGeminiTest({browserIds: ['b1']})
.then(() => {
assert.calledWith(console.warn, sinon.match('Unknown browsers id: b2'));
});
});
it('should skip browsers from GEMINI_SKIP_BROWSERS', () => {
process.env.GEMINI_SKIP_BROWSERS = 'b1';
return runGeminiTest({browserIds: ['b1', 'b2']})
.then(() => assert.calledWith(SuiteCollection.prototype.skipBrowsers, ['b1']));
});
it('should remove spaces from GEMINI_SKIP_BROWSERS', () => {
process.env.GEMINI_SKIP_BROWSERS = 'b1, b2';
return runGeminiTest({browserIds: ['b1', 'b2']})
.then(() => assert.calledWith(SuiteCollection.prototype.skipBrowsers, ['b1', 'b2']));
});
it('should warn about unknown browsers in GEMINI_SKIP_BROWSERS', () => {
process.env.GEMINI_SKIP_BROWSERS = 'b1,b2';
return runGeminiTest({browserIds: ['b1']})
.then(() => assert.calledWith(console.warn, sinon.match('Unknown browsers id: b2')));
});
});
describe('readRawConfig', () => {
beforeEach(() => {
sandbox.stub(Config, 'readRawConfig');
});
it('should read configuration object from file by given path', () => {
Config.readRawConfig
.withArgs('some/file/path')
.returns({foo: 'bar'});
assert.deepEqual(Gemini.readRawConfig('some/file/path'), {foo: 'bar'});
});
});
describe('on "INTERRUPT"', () => {
const stubRunner = (scenario) => {
Runner.prototype.run.restore();
sandbox.stub(Runner.prototype, 'run', function() {
return Promise.resolve(scenario(this));
});
};
const emulateRunnerInterrupt = (exitCode) => stubRunner(() => signalHandler.emit(Events.INTERRUPT, {exitCode}));
it('should emit "INTERRUPT" event from gemini', () => {
const gemini = initGemini();
const onCancel = sinon.spy().named('onCancel');
emulateRunnerInterrupt();
gemini.on(Events.INTERRUPT, onCancel);
return gemini.test()
.then(() => assert.calledOnce(onCancel));
});
it('should pass exit code when emitting "INTERRUPT" event', () => {
const gemini = initGemini();
const onCancel = sinon.spy().named('onCancel');
emulateRunnerInterrupt(130);
gemini.on(Events.INTERRUPT, onCancel);
return gemini.test()
.then(() => assert.calledWith(onCancel, {exitCode: 130}));
});
it('should cancel gemini runner', () => {
const gemini = initGemini();
emulateRunnerInterrupt();
return gemini.test()
.then(() => assert.calledOnce(Runner.prototype.cancel));
});
it('should emit "INTERRUPT" event from gemini before cancelling of gemini runner', () => {
const gemini = initGemini();
const onCancel = sinon.spy().named('onCancel');
emulateRunnerInterrupt();
gemini.on(Events.INTERRUPT, onCancel);
return gemini.test()
.then(() => assert.callOrder(onCancel, Runner.prototype.cancel));
});
});
});