forked from BlueBrain/nexus-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cypress.config.ts
164 lines (156 loc) · 4.58 KB
/
cypress.config.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
import { createNexusClient, ResourcePayload } from '@bbp/nexus-sdk';
import { defineConfig } from 'cypress';
import {
createNexusOrgAndProject,
createResource,
deprecateNexusOrgAndProject,
} from './cypress/plugins/nexus';
import { uuidv4 } from './src/shared/utils';
import setup, { TestUsers } from './cypress/support/setupRealmsAndUsers';
const fetch = require('node-fetch');
export default defineConfig({
projectId: '1iihco',
viewportWidth: 1200,
video: false,
e2e: {
baseUrl: 'http://localhost:8000',
fileServerFolder: '/cypress',
defaultCommandTimeout: 10000,
experimentalSessionAndOrigin: true,
specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}',
env: {
ELECTRON_DISABLE_GPU: 'true',
ELECTRON_EXTRA_LAUNCH_ARGS: '--disable-gpu',
},
setupNodeEvents(on, config) {
// @ts-ignore
on('before:browser:launch', (browser = {}, launchOptions) => {
console.log(launchOptions.args);
if (browser.name == 'chrome') {
launchOptions.args.push('--disable-gpu');
}
return launchOptions;
}),
on('task', {
'auth:createRealmsAndUsers': async function(users: {
[key: string]: {
username: string;
password: string;
realm: { name: string; baseUrl: string };
};
}) {
await setup(users);
return null;
},
log(message) {
console.log(message);
return null;
},
'project:setup': async function({
nexusApiUrl,
authToken,
orgLabel,
projectLabelBase,
}: {
nexusApiUrl: string;
authToken: string;
orgLabel: string;
projectLabelBase: string;
}) {
const orgDescription =
'An organization used for Cypress automated tests';
const projectLabel = `${projectLabelBase}-${uuidv4()}`;
const projectDescription =
'An project used for Cypress automated tests';
try {
const nexus = createNexusClient({
uri: nexusApiUrl,
fetch,
token: authToken,
});
await createNexusOrgAndProject({
nexus,
orgLabel,
orgDescription,
projectLabel,
projectDescription,
});
} catch (e) {
console.log('Error encountered in project:setup task.', e);
}
return { projectLabel };
},
'project:teardown': async ({
nexusApiUrl,
authToken,
orgLabel,
projectLabel,
}: {
nexusApiUrl: string;
authToken: string;
orgLabel: string;
projectLabel: string;
}) => {
try {
const nexus = createNexusClient({
uri: nexusApiUrl,
fetch,
token: authToken,
});
deprecateNexusOrgAndProject({
nexus,
orgLabel,
projectLabel,
});
} catch (e) {
console.log('Error encountered in project:teardown task.', e);
}
return null;
},
'resource:create': async ({
nexusApiUrl,
authToken,
resourcePayload,
orgLabel,
projectLabel,
}: {
nexusApiUrl: string;
authToken: string;
resourcePayload: ResourcePayload;
orgLabel: string;
projectLabel: string;
}) => {
try {
const nexus = createNexusClient({
uri: nexusApiUrl,
fetch,
token: authToken,
});
return await createResource({
nexus,
orgLabel,
projectLabel,
resource: resourcePayload,
});
} catch (e) {
console.log(
'Error encountered in analysisResource:create task.',
e
);
}
return null;
},
});
if (!config.env.users) {
config.env.users = TestUsers;
}
if (!config.env.ORG_LABEL) {
config.env.ORG_LABEL = 'Cypress-Testing';
}
if (!config.env.PROJECT_LABEL_BASE) {
config.env.PROJECT_LABEL_BASE = 'e2e';
}
return config;
},
},
});