forked from spinnaker/deck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wdio.conf.js
131 lines (120 loc) · 3.83 KB
/
wdio.conf.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
require('ts-node/register');
const fs = require('fs');
const path = require('path');
const process = require('process');
const minimist = require('minimist');
const { MountebankService } = require('./test/functional/tools/MountebankService');
const { FixtureService } = require('./test/functional/tools/FixtureService');
const flags = minimist(process.argv.slice(2), {
default: {
'replay-fixtures': false,
'record-fixtures': false,
'mountebank-port': 2525,
'gate-port': 18084,
'imposter-port': 8084,
browser: 'chrome',
headless: false,
savelogs: false,
},
});
if (flags.savelogs && flags.browser !== 'chrome') {
console.warn('fetching browser logs is only supported by chrome driver; disabling --savelogs');
flags.savelogs = false;
}
const mountebankService = MountebankService.builder()
.mountebankPath(path.resolve(__dirname, './node_modules/.bin/mb'))
.mountebankPort(flags['mountebank-port'])
.gatePort(flags['gate-port'])
.imposterPort(flags['imposter-port'])
.build();
let testRun = null;
const config = {
specs: ['test/functional/tests/**/*.spec.ts'],
runner: 'local',
path: '/wd/hub',
maxInstances: 1,
capabilities: [
{
maxInstances: 1,
browserName: flags.browser,
},
],
sync: true,
logLevel: 'error', // silent | verbose | command | data | result | error
coloredLogs: false,
deprecationWarnings: false,
bail: 0,
screenshotPath: null,
baseUrl: 'http://localhost:9000',
waitforTimeout: 10000,
connectionRetryTimeout: 90000,
connectionRetryCount: 3,
services: ['selenium-standalone'],
seleniumLogs: './selenium-logs',
framework: 'jasmine',
reporters: ['spec'],
jasmineNodeOpts: {
defaultTimeoutInterval: 60000,
},
suites: {
google: ['./src/google/**/*.spec.ts'],
},
beforeSession: (_config, _capabilities, specs) => {
if (!specs.length) {
return;
}
if (!flags['replay-fixtures'] && !flags['record-fixtures']) {
return;
}
const fixtureService = new FixtureService();
testRun = { fixtureFile: fixtureService.fixturePathForTestPath(specs[0]) };
return mountebankService.removeImposters().then(() => {
if (flags['record-fixtures']) {
return mountebankService.beginRecording();
} else {
return mountebankService.createImposterFromFixtureFile(
testRun.fixtureFile,
fixtureService.anonymousAuthFixturePath(),
);
}
});
},
beforeTest: function(test, context) {
browser.setWindowSize(1280, 1024);
},
afterTest: function(test) {
if (flags['record-fixtures']) {
if (test.passed) {
mountebankService
.saveRecording(testRun.fixtureFile)
.then(() => {
console.log(`wrote fixture to ${testRun.fixtureFile}`);
})
.catch(err => {
console.log(`error saving recording: ${err}`);
});
} else {
console.log(`test failed: "${test.fullName}"; network fixture will not be saved.`);
}
}
if (flags.savelogs && browser.sessionId) {
const outPath = path.resolve(__dirname, './' + browser.sessionId + '.browser.log');
fs.writeFileSync(outPath, JSON.stringify(browser.log('browser'), null, 4));
console.log(`browser log written to ${outPath}`);
}
},
};
if (flags.headless) {
config.capabilities.forEach(cap => {
if (cap.browserName === 'chrome') {
cap['goog:chromeOptions'] = cap['goog:chromeOptions'] || {};
cap['goog:chromeOptions'].args = cap['goog:chromeOptions'].args || [];
cap['goog:chromeOptions'].args.push('--headless');
} else if (cap.browserName === 'firefox') {
cap['moz:firefoxOptions'] = cap['moz:firefoxOptions'] || {};
cap['moz:firefoxOptions'].args = cap['moz:firefoxOptions'].args || [];
cap['moz:firefoxOptions'].args.push('-headless');
}
});
}
exports.config = config;