forked from openshift/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
protractor.conf.ts
254 lines (239 loc) · 8.2 KB
/
protractor.conf.ts
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
import { browser, $ } from 'protractor';
import { execSync } from 'child_process';
import * as HtmlScreenshotReporter from 'protractor-jasmine2-screenshot-reporter';
import * as _ from 'lodash';
import { TapReporter, JUnitXmlReporter } from 'jasmine-reporters';
import * as ConsoleReporter from 'jasmine-console-reporter';
import * as failFast from 'protractor-fail-fast';
import { createWriteStream, writeFileSync } from 'fs';
import { format } from 'util';
import { resolvePluginPackages } from '@console/plugin-sdk/src/codegen/plugin-resolver';
import {
reducePluginTestSuites,
mergeTestSuites,
} from '@console/plugin-sdk/src/codegen/plugin-integration-tests';
const tap = !!process.env.TAP;
export const BROWSER_NAME = process.env.BRIDGE_E2E_BROWSER_NAME || 'chrome';
export const BROWSER_TIMEOUT = 15000;
export const JASMSPEC_TIMEOUT = process.env.BRIDGE_JASMINE_TIMEOUT
? Number(process.env.BRIDGE_JASMINE_TIMEOUT)
: 120000;
export const appHost = `${process.env.BRIDGE_BASE_ADDRESS || 'http://localhost:9000'}${(
process.env.BRIDGE_BASE_PATH || '/'
).replace(/\/$/, '')}`;
export const testName = `test-${Math.random()
.toString(36)
.replace(/[^a-z]+/g, '')
.substr(0, 5)}`;
export const screenshotsDir = 'gui_test_screenshots';
const htmlReporter = new HtmlScreenshotReporter({
dest: `./${screenshotsDir}`,
inlineImages: true,
captureOnlyFailedSpecs: true,
filename: 'protractor-report.html',
});
const junitReporter = new JUnitXmlReporter({
savePath: `./${screenshotsDir}`,
filePrefix: 'junit_protractor',
consolidateAll: true,
});
const browserLogs = [];
const suite = (tests: string[]): string[] =>
(!_.isNil(process.env.BRIDGE_KUBEADMIN_PASSWORD) ? ['tests/login.scenario.ts'] : []).concat([
'tests/base.scenario.ts',
...tests,
]);
// TODO(vojtech): move base Console test suites to console-app package
const testSuites = {
environment: suite(['tests/environment.scenario.ts']),
secrets: suite(['tests/secrets.scenario.ts']),
crud: suite(['tests/secrets.scenario.ts', 'tests/environment.scenario.ts']),
event: suite(['tests/event.scenario.ts']),
monitoring: suite(['tests/monitoring.scenario.ts']),
newApp: suite(['tests/deploy-image.scenario.ts']),
crdExtensions: suite(['tests/crd-extensions.scenario.ts']),
oauth: suite(['tests/oauth.scenario.ts']),
e2e: suite([
'tests/secrets.scenario.ts',
'tests/environment.scenario.ts',
'tests/deploy-image.scenario.ts',
'tests/monitoring.scenario.ts',
'tests/alertmanager.scenario.ts',
'tests/crd-extensions.scenario.ts',
'tests/oauth.scenario.ts',
'tests/event.scenario.ts',
'tests/cluster-settings.scenario.ts',
]),
release: suite([
'tests/secrets.scenario.ts',
'tests/environment.scenario.ts',
'tests/deploy-image.scenario.ts',
'tests/monitoring.scenario.ts',
'tests/crd-extensions.scenario.ts',
'tests/event.scenario.ts',
]),
all: suite([
'tests/secrets.scenario.ts',
'tests/deploy-image.scenario.ts',
'tests/monitoring.scenario.ts',
'tests/alertmanager.scenario.ts',
'tests/crd-extensions.scenario.ts',
'tests/oauth.scenario.ts',
'tests/event.scenario.ts',
'tests/cluster-settings.scenario.ts',
]),
clusterSettings: suite(['tests/cluster-settings.scenario.ts']),
alertmanager: suite(['tests/alertmanager.scenario.ts']),
login: ['tests/login.scenario.ts'],
};
export const config = {
framework: 'jasmine',
directConnect: true,
skipSourceMapSupport: true,
jasmineNodeOpts: {
print: () => null,
defaultTimeoutInterval: JASMSPEC_TIMEOUT,
},
logLevel: tap ? 'ERROR' : 'INFO',
plugins: process.env.NO_FAILFAST ? [] : [failFast.init()],
capabilities: {
browserName: BROWSER_NAME,
acceptInsecureCerts: true,
chromeOptions: {
// A path to chrome binary, if undefined will use system chrome browser.
binary: process.env.CHROME_BINARY_PATH,
args: [
...(process.env.NO_HEADLESS ? [] : ['--headless']),
'--disable-gpu',
'--no-sandbox',
'--window-size=1920,1200',
'--disable-background-timer-throttling',
'--disable-renderer-backgrounding',
'--disable-raf-throttling',
// Avoid crashes when running in a container due to small /dev/shm size
// https://bugs.chromium.org/p/chromium/issues/detail?id=715363
'--disable-dev-shm-usage',
],
prefs: {
// eslint-disable-next-line camelcase
'profile.password_manager_enabled': false,
// eslint-disable-next-line camelcase
credentials_enable_service: false,
// eslint-disable-next-line camelcase
password_manager_enabled: false,
},
},
'moz:firefoxOptions': {
binary: process.env.FIREFOX_BINARY_PATH,
args: [
...(process.env.NO_HEADLESS ? [] : ['--headless']),
'--safe-mode',
'--width=1920',
'--height=1200',
'--MOZ_LOG=timestamp,nsHttp:0,sync',
`--MOZ_LOG_FILE=${screenshotsDir}/browser`,
],
log: { level: 'trace' },
},
},
beforeLaunch: () => new Promise((resolve) => htmlReporter.beforeLaunch(resolve)),
onPrepare: () => {
const addReporter = (jasmine as any).getEnv().addReporter;
browser.waitForAngularEnabled(false);
addReporter(htmlReporter);
addReporter(junitReporter);
if (tap) {
addReporter(new TapReporter());
} else {
addReporter(new ConsoleReporter());
}
},
onComplete: async () => {
const consoleLogStream = createWriteStream(`${screenshotsDir}/browser.log`, { flags: 'a' });
browserLogs.forEach((log) => {
const { level, message } = log;
const messageStr = _.isArray(message) ? message.join(' ') : message;
consoleLogStream.write(`${format.apply(null, [`[${level.name}]`, messageStr])}\n`);
});
const url = await browser.getCurrentUrl();
console.log('Last browser URL: ', url);
// Use projects if OpenShift so non-admin users can run tests. We need the fully-qualified name
// since we're using kubectl instead of oc.
const resource =
browser.params.openshift === 'true' ? 'projects.project.openshift.io' : 'namespaces';
await browser.close();
execSync(
`if kubectl get ${resource} ${testName} 2> /dev/null; then kubectl delete ${resource} ${testName}; fi`,
);
},
afterLaunch: (exitCode) => {
failFast.clean();
return new Promise((resolve) => htmlReporter.afterLaunch(resolve.bind(this, exitCode)));
},
suites: mergeTestSuites(
testSuites,
reducePluginTestSuites(resolvePluginPackages(), __dirname, suite),
),
params: {
// Set to 'true' to enable OpenShift resources in the crud scenario.
// Use a string rather than boolean so it can be specified on the command line:
// $ yarn test-protractor --params.openshift true
openshift: 'false',
},
};
export const checkLogs = async () => {
if (config.capabilities.browserName !== 'chrome') {
return;
}
(
await browser
.manage()
.logs()
.get('browser')
).map((log) => {
browserLogs.push(log);
return log;
});
};
function hasError() {
return (window as any).windowError;
}
export const checkErrors = async () =>
await browser.executeScript(hasError).then((err) => {
if (err) {
fail(err);
}
});
export const firstElementByTestID = (id: string) => $(`[data-test-id=${id}]`);
export const waitForCount = (elementArrayFinder, expectedCount) => {
return async () => {
const actualCount = await elementArrayFinder.count();
return expectedCount >= actualCount;
};
};
export const waitForNone = (elementArrayFinder) => {
return async () => {
const count = await elementArrayFinder.count();
return count === 0;
};
};
export const create = (obj) => {
const filename = [screenshotsDir, `${obj.metadata.name}.${obj.kind.toLowerCase()}.json`].join(
'/',
);
writeFileSync(filename, JSON.stringify(obj));
execSync(`kubectl create -f ${filename}`);
execSync(`rm ${filename}`);
};
// Retry an action to avoid StaleElementReferenceErrors.
export const retry = async <T>(fn: () => Promise<T>, retries = 3, interval = 1000): Promise<T> => {
try {
return await fn();
} catch (e) {
if (!retries) {
throw e;
}
await new Promise((r) => setTimeout(r, interval));
return retry(fn, retries - 1, interval * 2);
}
};