forked from hmcts/cmc-citizen-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
saucelabs.conf.js
149 lines (144 loc) · 4.34 KB
/
saucelabs.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
require('ts-node/register')
require('tsconfig-paths/register')
const supportedBrowsers = require('./src/integration-test/crossbrowser/supportedBrowsers.js');
const claimantEmail = `civilmoneyclaims+claimant-${require('randomstring').generate(7).toLowerCase()}@gmail.com`
const defendantEmail = `civilmoneyclaims+defendant-${require('randomstring').generate(7).toLowerCase()}@gmail.com`
const { bootstrapAll } = require('./src/integration-test/bootstrap/bootstrap')
const { teardownAll } = require('./src/integration-test/bootstrap/teardown')
const waitForTimeout = parseInt(process.env.WAIT_FOR_TIMEOUT) || 45000;
const smartWait = parseInt(process.env.SMART_WAIT) || 30000;
const browser = process.env.BROWSER_GROUP || 'chrome';
const outputDir = './functional-output'
const defaultSauceOptions = {
username: process.env.SAUCE_USERNAME,
accessKey: process.env.SAUCE_ACCESS_KEY,
tunnelIdentifier: process.env.TUNNEL_IDENTIFIER || 'reformtunnel',
acceptSslCerts: true,
windowSize: '640x480',
tags: ['cmc']
};
function merge (intoObject, fromObject) {
return Object.assign({}, intoObject, fromObject);
}
function getBrowserConfig(browserGroup) {
const browserConfig = [];
for (const candidateBrowser in supportedBrowsers[browserGroup]) {
if (candidateBrowser) {
const candidateCapabilities = supportedBrowsers[browserGroup][candidateBrowser];
candidateCapabilities['sauce:options'] = merge(
defaultSauceOptions, candidateCapabilities['sauce:options']
);
browserConfig.push({
browser: candidateCapabilities.browserName,
capabilities: candidateCapabilities
});
} else {
console.error('ERROR: supportedBrowsers is empty or incorrectly defined');
}
}
return browserConfig;
}
const setupConfig = {
name: 'integration-tests',
async bootstrapAll() {
await bootstrapAll(claimantEmail, defendantEmail)
},
async teardownAll() {
await teardownAll(claimantEmail, defendantEmail)
},
tests: './src/integration-test/tests/**/*_test.*',
output: `${process.cwd()}/${outputDir}`,
helpers: {
WebDriver: {
url: process.env.CITIZEN_APP_URL || 'https://localhost:3000',
browser,
smartWait,
waitForTimeout,
cssSelectorsEnabled: 'true',
host: 'ondemand.eu-central-1.saucelabs.com',
port: 80,
region: 'eu',
capabilities: {}
},
IdamHelper: {
require: './src/integration-test/helpers/idamHelper',
claimantEmail,
defendantEmail
},
ClaimStoreHelper: {
require: './src/integration-test/helpers/claimStoreHelper',
claimantEmail,
defendantEmail
},
PageHelper: {
require: './src/integration-test/helpers/pageHelper'
},
PcqHelper: {
require: './src/integration-test/helpers/pcqHelper'
},
hwfHelper: {
require: './src/integration-test/helpers/hwfHelper'
},
SaucelabsReporter: {
require: './src/integration-test/helpers/saucelabsReporter'
},
SauceLabsBrowserHelper: {
require: './src/integration-test/helpers/SauceLabsBrowserHelper.js'
},
Mochawesome: {
uniqueScreenshotNames: 'true'
}
},
plugins: {
retryFailedStep: {
enabled: true,
retries: 2
},
autoDelay: {
enabled: true,
delayAfter: 2000
}
},
mocha: {
reporterOptions: {
'codeceptjs-cli-reporter': {
stdout: '-',
options: {
steps: true
}
},
'mocha-junit-reporter': {
stdout: `${outputDir}/${browser}-citizen-mocha-junit-reporter-stdout.log`,
options: {
mochaFile: `${outputDir}/${browser}-citizen-e2e-result.xml`,
reportTitle: `Citizen cross browser E2E results for: ${browser}`,
inlineAssets: true
}
},
mochawesome: {
stdout: `${outputDir}/${browser}-citizen-mochawesome-stdout.log`,
options: {
reportDir: outputDir,
reportFilename: `${browser}-citizen-e2e-result`,
inlineAssets: true,
reportTitle: `${browser} citizen E2E tests result`
}
}
}
},
multiple: {
microsoft: {
browsers: getBrowserConfig('microsoft')
},
chrome: {
browsers: getBrowserConfig('chrome')
},
firefox: {
browsers: getBrowserConfig('firefox')
},
safari: {
browsers: getBrowserConfig('safari')
}
}
};
exports.config = setupConfig;