Skip to content

Commit bf2f134

Browse files
committed
Cypress fixes
1 parent 9ce4c3f commit bf2f134

File tree

9 files changed

+721
-566
lines changed

9 files changed

+721
-566
lines changed

test/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.vscode
22
node_modules
3-
3+
results
4+
cypress/videos

test/cypress/config/ci.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
{
22
"requestTimeout": 30000,
33
"defaultCommandTimeout": 20000,
4-
"reporter": "mocha-junit-reporter",
4+
"reporter": "cypress-multi-reporters",
55
"reporterOptions": {
6-
"jenkinsMode": true,
7-
"rootSuiteTitle": "Cypress",
8-
"jenkinsClassnamePrefix": "Cypress.",
9-
"mochaFile": "/results/junit/my-test-output-[hash].xml"
6+
"configFile": "multi-reporter.json"
107
},
11-
"videosFolder": "/results/videos",
12-
"screenshotsFolder": "/results/screenshots",
8+
"videosFolder": "results/videos",
9+
"screenshotsFolder": "results/screenshots",
1310
"env": {
1411
"swaggerBase": "{{baseUrl}}/api/schema",
1512
"RETRIES": 4

test/cypress/config/dev.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"requestTimeout": 30000,
33
"defaultCommandTimeout": 20000,
4-
"reporter": "junit",
4+
"reporter": "cypress-multi-reporters",
55
"reporterOptions": {
6-
"mochaFile": "results/junit/my-test-output-[hash].xml"
6+
"configFile": "multi-reporter.json"
77
},
8-
"video": false,
9-
"screenshotsFolder": "cypress/results/screenshots",
8+
"videos": false,
9+
"screenshotsFolder": "results/screenshots",
1010
"env": {
11-
"swaggerBase": "{{baseUrl}}/api/schema"
11+
"swaggerBase": "{{baseUrl}}/api/schema",
12+
"RETRIES": 0
1213
}
1314
}

test/cypress/integration/api/Health.spec.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@
22

33
describe('Basic API checks', () => {
44
it('Should return a valid health payload', function () {
5-
cy.wait(2000);
65
cy.task('backendApiGet', {
76
path: '/api/',
87
}).then((data) => {
98
// Check the swagger schema:
10-
cy.validateSwaggerSchema('get', '/', data);
9+
cy.validateSwaggerSchema('get', 200, '/', data);
1110
});
1211
});
1312

1413
it('Should return a valid schema payload', function () {
15-
cy.wait(2000);
1614
cy.task('backendApiGet', {
1715
path: '/api/schema',
1816
}).then((data) => {

test/cypress/integration/api/Users.spec.js

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ describe('Users endpoints', () => {
2626
path: '/api/users'
2727
}).then((data) => {
2828
cy.validateSwaggerSchema('get', 200, '/users', data);
29-
expect(typeof data).to.be.equal('array');
3029
expect(data.length).to.be.greaterThan(0);
3130
});
3231
});

test/cypress/support/commands.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@
1313
* Check the swagger schema:
1414
*
1515
* @param {string} method API Method in swagger doc, "get", "put", "post", "delete"
16+
* @param {number} statusCode API status code in swagger doc
1617
* @param {string} path Swagger doc endpoint path, exactly as defined in swagger doc
1718
* @param {*} data The API response data to check against the swagger schema
1819
*/
19-
Cypress.Commands.add('validateSwaggerSchema', (method, path, data) => {
20+
Cypress.Commands.add('validateSwaggerSchema', (method, statusCode, path, data) => {
2021
cy.task('validateSwaggerSchema', {
2122
file: Cypress.env('swaggerBase'),
2223
endpoint: path,
2324
method: method,
24-
statusCode: 200,
25+
statusCode: statusCode,
2526
responseSchema: data,
2627
verbose: true
2728
}).should('equal', null);
@@ -32,10 +33,10 @@ Cypress.Commands.add('getToken', () => {
3233
cy.task('backendApiPost', {
3334
path: '/api/tokens',
3435
data: {
35-
identity: "admin@example.com",
36-
secret: "changeme"
36+
identity: 'admin@example.com',
37+
secret: 'changeme'
3738
}
3839
}).then(res => {
39-
cy.wrap(res.result.token);
40+
cy.wrap(res.token);
4041
});
4142
});

test/multi-reporter.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"reporterEnabled": "spec, mocha-junit-reporter",
3+
"mochaJunitReporterReporterOptions": {
4+
"jenkinsMode": true,
5+
"rootSuiteTitle": "Cypress.npm",
6+
"jenkinsClassnamePrefix": "Cypress.npm.",
7+
"mochaFile": "results/junit/cypress.npm.[hash].xml"
8+
}
9+
}

test/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"@jc21/restler": "^3.4.0",
99
"chalk": "^4.1.0",
1010
"cypress": "^4.12.1",
11+
"cypress-multi-reporters": "^1.4.0",
1112
"cypress-plugin-retries": "^1.5.2",
1213
"eslint": "^7.6.0",
1314
"eslint-plugin-align-assignments": "^1.1.2",
@@ -18,7 +19,8 @@
1819
"mocha-junit-reporter": "^2.0.0"
1920
},
2021
"scripts": {
21-
"cypress": "cypress open --config-file=cypress/config/dev.json --config baseUrl=http://127.0.0.1:3081"
22+
"cypress": "cypress open --config-file=cypress/config/dev.json --config baseUrl=${BASE_URL:-http://127.0.0.1:3081}",
23+
"cypress:headless": "cypress run --config-file=cypress/config/dev.json --config baseUrl=${BASE_URL:-http://127.0.0.1:3081}"
2224
},
2325
"author": "",
2426
"license": "ISC"

0 commit comments

Comments
 (0)