@testomatio/reporter 1.0.9 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/adapter/mocha.js +23 -19
- package/lib/client.js +1 -1
- package/lib/dataStorage.js +37 -26
- package/lib/logger.js +61 -1
- package/lib/pipe/testomatio.js +9 -0
- package/package.json +1 -1
package/lib/adapter/mocha.js
CHANGED
|
@@ -3,15 +3,18 @@ const Mocha = require('mocha');
|
|
|
3
3
|
const debug = require('debug')('@testomatio/reporter:adapter:mocha');
|
|
4
4
|
const chalk = require('chalk');
|
|
5
5
|
const TestomatClient = require('../client');
|
|
6
|
-
const { STATUS } = require('../constants');
|
|
7
|
-
const { parseTest, specificTestInfo } = require('../util');
|
|
6
|
+
const { STATUS, TESTOMAT_TMP_STORAGE } = require('../constants');
|
|
7
|
+
const { parseTest, specificTestInfo, fileSystem } = require('../util');
|
|
8
8
|
const ArtifactStorage = require('../_ArtifactStorageOld');
|
|
9
9
|
|
|
10
|
-
const { EVENT_RUN_BEGIN, EVENT_RUN_END, EVENT_TEST_FAIL, EVENT_TEST_PASS, EVENT_TEST_PENDING } =
|
|
10
|
+
const { EVENT_RUN_BEGIN, EVENT_RUN_END, EVENT_TEST_FAIL, EVENT_TEST_PASS, EVENT_TEST_PENDING } =
|
|
11
|
+
Mocha.Runner.constants;
|
|
11
12
|
|
|
12
13
|
function MochaReporter(runner, opts) {
|
|
13
14
|
Mocha.reporters.Base.call(this, runner);
|
|
14
|
-
let passes = 0;
|
|
15
|
+
let passes = 0;
|
|
16
|
+
let failures = 0;
|
|
17
|
+
let skipped = 0;
|
|
15
18
|
let artifactStore;
|
|
16
19
|
|
|
17
20
|
const apiKey = opts?.reporterOptions?.apiKey || process.env.TESTOMATIO;
|
|
@@ -25,33 +28,33 @@ function MochaReporter(runner, opts) {
|
|
|
25
28
|
runner.on(EVENT_RUN_BEGIN, () => {
|
|
26
29
|
client.createRun();
|
|
27
30
|
|
|
28
|
-
const params = {
|
|
29
|
-
toFile: true
|
|
31
|
+
const params = {
|
|
32
|
+
toFile: true,
|
|
30
33
|
};
|
|
31
|
-
|
|
32
|
-
artifactStore = runner._workerReporter !== undefined
|
|
33
|
-
|
|
34
|
-
|
|
34
|
+
|
|
35
|
+
artifactStore = runner._workerReporter !== undefined ? new ArtifactStorage(params) : new ArtifactStorage();
|
|
36
|
+
|
|
37
|
+
fileSystem.clearDir(TESTOMAT_TMP_STORAGE.mainDir);
|
|
35
38
|
});
|
|
36
39
|
|
|
37
|
-
runner.on(EVENT_TEST_PASS, async
|
|
40
|
+
runner.on(EVENT_TEST_PASS, async test => {
|
|
38
41
|
passes += 1;
|
|
39
42
|
console.log(chalk.bold.green('✔'), test.fullTitle());
|
|
40
43
|
const testId = parseTest(test.title);
|
|
41
44
|
|
|
42
|
-
const specificTest =
|
|
45
|
+
const specificTest = specificTestInfo(test);
|
|
43
46
|
const content = await artifactStore.artifactByTestName(specificTest);
|
|
44
47
|
|
|
45
48
|
debug(`test=${specificTest} content = `, content);
|
|
46
49
|
|
|
47
50
|
client.addTestRun(
|
|
48
|
-
STATUS.PASSED,
|
|
51
|
+
STATUS.PASSED,
|
|
49
52
|
{
|
|
50
53
|
test_id: testId,
|
|
51
54
|
title: test.title,
|
|
52
55
|
time: test.duration,
|
|
53
56
|
},
|
|
54
|
-
content
|
|
57
|
+
content,
|
|
55
58
|
);
|
|
56
59
|
});
|
|
57
60
|
|
|
@@ -66,24 +69,25 @@ function MochaReporter(runner, opts) {
|
|
|
66
69
|
});
|
|
67
70
|
});
|
|
68
71
|
|
|
69
|
-
runner.on(EVENT_TEST_FAIL, async(test, err) => {
|
|
72
|
+
runner.on(EVENT_TEST_FAIL, async (test, err) => {
|
|
70
73
|
failures += 1;
|
|
71
74
|
console.log(chalk.bold.red('✖'), test.fullTitle(), chalk.gray(err.message));
|
|
72
75
|
const testId = parseTest(test.title);
|
|
73
76
|
|
|
74
|
-
const specificTest =
|
|
77
|
+
const specificTest = specificTestInfo(test);
|
|
75
78
|
const content = await artifactStore.artifactByTestName(specificTest);
|
|
76
79
|
|
|
77
80
|
debug(`fail test=${specificTest} content = `, content);
|
|
78
81
|
|
|
79
82
|
client.addTestRun(
|
|
80
|
-
STATUS.FAILED,
|
|
83
|
+
STATUS.FAILED,
|
|
84
|
+
{
|
|
81
85
|
error: err,
|
|
82
86
|
test_id: testId,
|
|
83
87
|
title: test.title,
|
|
84
88
|
time: test.duration,
|
|
85
|
-
},
|
|
86
|
-
content
|
|
89
|
+
},
|
|
90
|
+
content,
|
|
87
91
|
);
|
|
88
92
|
});
|
|
89
93
|
|
package/lib/client.js
CHANGED
package/lib/dataStorage.js
CHANGED
|
@@ -11,7 +11,8 @@ const getTestIdFromTestTitle = require('./util').parseTest;
|
|
|
11
11
|
class DataStorage {
|
|
12
12
|
/**
|
|
13
13
|
* Creates data storage instance for specific data type.
|
|
14
|
-
* Stores data to global variable or to file depending on what is applicable for current test runner
|
|
14
|
+
* Stores data to global variable or to file depending on what is applicable for current test runner
|
|
15
|
+
* (running environment).
|
|
15
16
|
* dataType: 'log' | 'artifact' | ...
|
|
16
17
|
* @param {*} dataType storage type (like 'log', 'artifact'); could be any string, used only to define file path
|
|
17
18
|
*/
|
|
@@ -19,7 +20,7 @@ class DataStorage {
|
|
|
19
20
|
// if (!dataType) throw new Error('Data type is required when creating data storage');
|
|
20
21
|
this.dataType = dataType || 'data';
|
|
21
22
|
this.dataDirName = this.dataType;
|
|
22
|
-
|
|
23
|
+
this.isFileStorage = true;
|
|
23
24
|
this._refreshStorageType();
|
|
24
25
|
|
|
25
26
|
// dir is created in any case (not to recheck its existence every time)
|
|
@@ -37,14 +38,6 @@ class DataStorage {
|
|
|
37
38
|
// jest
|
|
38
39
|
if (process.env.JEST_WORKER_ID) return 'jest';
|
|
39
40
|
|
|
40
|
-
// mocha
|
|
41
|
-
try {
|
|
42
|
-
// @ts-expect-error mocha is defined only in mocha environment
|
|
43
|
-
if (typeof mocha !== 'undefined') return 'mocha';
|
|
44
|
-
} catch (e) {
|
|
45
|
-
// ignore
|
|
46
|
-
}
|
|
47
|
-
|
|
48
41
|
// codeceptjs
|
|
49
42
|
// @ts-expect-error codeceptjs is defined only in codeceptjs environment
|
|
50
43
|
if (global.codeceptjs) return 'codeceptjs';
|
|
@@ -55,6 +48,8 @@ class DataStorage {
|
|
|
55
48
|
|
|
56
49
|
if (process.env.PLAYWRIGHT_TEST_BASE_URL) return 'playwright';
|
|
57
50
|
|
|
51
|
+
// mocha - can't detect
|
|
52
|
+
|
|
58
53
|
return null;
|
|
59
54
|
}
|
|
60
55
|
|
|
@@ -69,15 +64,24 @@ class DataStorage {
|
|
|
69
64
|
|
|
70
65
|
let testId = this._tryToRetrieveTestId(context) || null;
|
|
71
66
|
|
|
72
|
-
if (this.runningEnvironment === 'codeceptjs')
|
|
73
|
-
|
|
74
|
-
|
|
67
|
+
if (this.runningEnvironment === 'codeceptjs') {
|
|
68
|
+
this.isFileStorage = false;
|
|
69
|
+
testId = testId ?? global.testomatioDataStore?.currentlyRunningTestId;
|
|
70
|
+
}
|
|
71
|
+
if (this.runningEnvironment === 'jest') {
|
|
72
|
+
testId = testId ?? JestReporter.getIdOfCurrentlyRunningTest();
|
|
73
|
+
this.isFileStorage = true;
|
|
74
|
+
}
|
|
75
|
+
// logs in playwright are gathered by pw framework itself
|
|
75
76
|
if (this.runningEnvironment === 'playwright' && this.dataType === 'log') return;
|
|
76
77
|
|
|
77
78
|
// get id from global store
|
|
78
79
|
if (global.testomatioDataStore && global.testomatioDataStore.currentlyRunningTestId)
|
|
79
80
|
testId = testId ?? global.testomatioDataStore?.currentlyRunningTestId;
|
|
80
81
|
|
|
82
|
+
if (!testId && global?.currentlyRunningTestTitle)
|
|
83
|
+
testId = this._tryToRetrieveTestId(global.currentlyRunningTestTitle);
|
|
84
|
+
|
|
81
85
|
// if testId is not provided, data is be saved to `{dataType}_other` file;
|
|
82
86
|
if (!testId) {
|
|
83
87
|
debug(`No test id provided for ${this.dataType} data: ${data}`);
|
|
@@ -116,17 +120,26 @@ class DataStorage {
|
|
|
116
120
|
return null;
|
|
117
121
|
}
|
|
118
122
|
|
|
119
|
-
let testData =
|
|
123
|
+
let testData = '';
|
|
120
124
|
|
|
121
125
|
if (global?.testomatioDataStore) {
|
|
122
126
|
testData = this._getDataFromGlobalVar(testId);
|
|
123
|
-
|
|
127
|
+
// these frameworks use global variable storage
|
|
128
|
+
if (testData && ['cucumber', 'codeceptjs'].includes(this.runningEnvironment)) return testData;
|
|
124
129
|
}
|
|
125
130
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
131
|
+
/* condition is removed for mocha
|
|
132
|
+
mocha has created a global storage, but just in some cases, generally it is not available
|
|
133
|
+
*/
|
|
134
|
+
// if (this.isFileStorage || !testData) {
|
|
135
|
+
// testData = this._getDataFromFile(testId);
|
|
136
|
+
// if (testData) return testData;
|
|
137
|
+
// }
|
|
138
|
+
|
|
139
|
+
const testDataFromFile = this._getDataFromFile(testId);
|
|
140
|
+
testData += testDataFromFile || '';
|
|
141
|
+
|
|
142
|
+
if (testData) return testData;
|
|
130
143
|
|
|
131
144
|
debug(`No ${this.dataType} data for test id ${testId} in both file and global variable`);
|
|
132
145
|
return testData;
|
|
@@ -162,7 +175,6 @@ class DataStorage {
|
|
|
162
175
|
* Because storage instance is created before the test runner is started. And storage type could be changed
|
|
163
176
|
*/
|
|
164
177
|
_refreshStorageType() {
|
|
165
|
-
this.isFileStorage = !global.testomatioDataStore;
|
|
166
178
|
/*
|
|
167
179
|
FYI:
|
|
168
180
|
If this storage instance is used within test runner, it works fine.
|
|
@@ -174,8 +186,8 @@ class DataStorage {
|
|
|
174
186
|
*/
|
|
175
187
|
this.runningEnvironment = this.getRunningEnviroment();
|
|
176
188
|
|
|
177
|
-
// some test frameworks do not persist global variables, thus file storage is used for them
|
|
178
|
-
if (this.runningEnvironment
|
|
189
|
+
// some test frameworks do not persist global variables, thus file storage is used for them (by default)
|
|
190
|
+
if (['playwright', 'codeceptjs'].includes(this.runningEnvironment)) this.isFileStorage = false;
|
|
179
191
|
}
|
|
180
192
|
|
|
181
193
|
_getDataFromGlobalVar(testId) {
|
|
@@ -186,7 +198,7 @@ class DataStorage {
|
|
|
186
198
|
return testData;
|
|
187
199
|
}
|
|
188
200
|
debug(`No ${this.dataType} data for test id ${testId} in <global> storage`);
|
|
189
|
-
return
|
|
201
|
+
return '';
|
|
190
202
|
} catch (e) {
|
|
191
203
|
// there could be no data, ignore
|
|
192
204
|
}
|
|
@@ -201,11 +213,11 @@ class DataStorage {
|
|
|
201
213
|
return testData;
|
|
202
214
|
}
|
|
203
215
|
debug(`No ${this.dataType} data for test id ${testId} in <file> storage`);
|
|
204
|
-
return
|
|
216
|
+
return '';
|
|
205
217
|
} catch (e) {
|
|
206
218
|
// there could be no data, ignore
|
|
207
219
|
}
|
|
208
|
-
return
|
|
220
|
+
return '';
|
|
209
221
|
}
|
|
210
222
|
|
|
211
223
|
_putDataToGlobalVar(data, testId) {
|
|
@@ -238,7 +250,6 @@ module.exports.DataStorage = DataStorage;
|
|
|
238
250
|
// TODO: use .env
|
|
239
251
|
// TODO: ability to intercept multiple loggers (upd: no need)
|
|
240
252
|
|
|
241
|
-
|
|
242
253
|
/* Cypress
|
|
243
254
|
Parallelization is only available if using Cypress Dashboard??
|
|
244
255
|
*/
|
package/lib/logger.js
CHANGED
|
@@ -53,6 +53,20 @@ class Logger {
|
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
55
|
};
|
|
56
|
+
|
|
57
|
+
// add beforeEach hook for mocha. it does not override existing hook, just add new one
|
|
58
|
+
try {
|
|
59
|
+
// @ts-ignore
|
|
60
|
+
if (!beforeEach) return;
|
|
61
|
+
// @ts-ignore
|
|
62
|
+
beforeEach(function () {
|
|
63
|
+
if (this.currentTest?.__mocha_id__) {
|
|
64
|
+
global.testTitle = this.currentTest.fullTitle();
|
|
65
|
+
}
|
|
66
|
+
});
|
|
67
|
+
} catch (e) {
|
|
68
|
+
// ignore
|
|
69
|
+
}
|
|
56
70
|
}
|
|
57
71
|
|
|
58
72
|
/**
|
|
@@ -115,6 +129,10 @@ class Logger {
|
|
|
115
129
|
_log(strings, ...args) {
|
|
116
130
|
// entity which is used to define testId
|
|
117
131
|
let context = null;
|
|
132
|
+
|
|
133
|
+
// get testId for mocha
|
|
134
|
+
context = global.testTitle ?? null;
|
|
135
|
+
|
|
118
136
|
// last argument could contain testId
|
|
119
137
|
const testId = this._helpers.parseLastArgToGetTestId(...args);
|
|
120
138
|
if (testId) {
|
|
@@ -152,7 +170,7 @@ class Logger {
|
|
|
152
170
|
}
|
|
153
171
|
|
|
154
172
|
/**
|
|
155
|
-
* This function is a wrapper for
|
|
173
|
+
* This function is a wrapper for each logging methods (log, warn, error etc) (not to repeat the same code)
|
|
156
174
|
* @param {*} argsArray
|
|
157
175
|
* @param {*} level
|
|
158
176
|
* @returns
|
|
@@ -162,6 +180,10 @@ class Logger {
|
|
|
162
180
|
|
|
163
181
|
// entity which is used to define testId
|
|
164
182
|
let context = null;
|
|
183
|
+
|
|
184
|
+
// get context for mocha
|
|
185
|
+
context = global.testTitle ?? null;
|
|
186
|
+
|
|
165
187
|
// last argument could contain testId
|
|
166
188
|
const testId = this._helpers.parseLastArgToGetTestId(...argsArray);
|
|
167
189
|
if (testId) {
|
|
@@ -299,3 +321,41 @@ module.exports = logger;
|
|
|
299
321
|
|
|
300
322
|
// TODO: parse passed arguments as {level: 'str', message: 'str'} because some loggers use such syntax;
|
|
301
323
|
// upd: did not face such loggers, but still could be useful
|
|
324
|
+
|
|
325
|
+
/* Cypress
|
|
326
|
+
There is no listener like "after:test" in cypress, only "after:spec" is available.
|
|
327
|
+
Thus, cannot separate logs even when I gather them (because I don't know when the test is done, just know about suite).
|
|
328
|
+
Also there is no easy way to access the message from cy.log() function.
|
|
329
|
+
(Using testomatio logger – logger.log() is not convenient because Cypress chains its commands,
|
|
330
|
+
thus such command will interrupt the chain.)
|
|
331
|
+
|
|
332
|
+
(Could not implement intercepting of cy.log('message'));
|
|
333
|
+
I found the only ability to get any logs using .task('log', 'message') (this is custom, not default cypress command)
|
|
334
|
+
and then intercept it with:
|
|
335
|
+
on('task', {
|
|
336
|
+
log (message) {
|
|
337
|
+
console.log(message)
|
|
338
|
+
return null
|
|
339
|
+
}
|
|
340
|
+
})
|
|
341
|
+
|
|
342
|
+
but:
|
|
343
|
+
1) it does not solve problem with getting current running testId;
|
|
344
|
+
2) leads to warning "Warning: Multiple attempts to register the following task(s):".)
|
|
345
|
+
|
|
346
|
+
My way to get test id:
|
|
347
|
+
add cypress command to save test title to file)):
|
|
348
|
+
Cypress.Commands.add('writeTestTitleToFile', () => {
|
|
349
|
+
const testTitle = cy.state('runnable').title;
|
|
350
|
+
cy.writeFile('testomatio_test_title', testTitle);
|
|
351
|
+
});
|
|
352
|
+
|
|
353
|
+
Finally, in the test it will look like:
|
|
354
|
+
cy
|
|
355
|
+
.writeTestTitleToFile() // <<<
|
|
356
|
+
.task('log', 'This is a log message from the test') // <<<
|
|
357
|
+
|
|
358
|
+
.get('element)
|
|
359
|
+
.type('text')
|
|
360
|
+
.click()
|
|
361
|
+
*/
|
package/lib/pipe/testomatio.js
CHANGED
|
@@ -71,12 +71,15 @@ class TestomatioPipe {
|
|
|
71
71
|
|
|
72
72
|
if (buildUrl && !buildUrl.startsWith('http')) buildUrl = undefined;
|
|
73
73
|
|
|
74
|
+
const accessEvent = process.env.TESTOMATIO_PUBLISH ? 'publish' : null;
|
|
75
|
+
|
|
74
76
|
const runParams = Object.fromEntries(
|
|
75
77
|
Object.entries({
|
|
76
78
|
ci_build_url: buildUrl,
|
|
77
79
|
parallel: this.parallel,
|
|
78
80
|
api_key: this.apiKey.trim(),
|
|
79
81
|
group_title: this.groupTitle,
|
|
82
|
+
access_event: accessEvent,
|
|
80
83
|
env: this.env,
|
|
81
84
|
title: this.title,
|
|
82
85
|
shared_run: this.sharedRun,
|
|
@@ -96,8 +99,10 @@ class TestomatioPipe {
|
|
|
96
99
|
});
|
|
97
100
|
this.runId = resp.data.uid;
|
|
98
101
|
this.runUrl = `${this.url}/${resp.data.url.split('/').splice(3).join('/')}`;
|
|
102
|
+
this.runPublicUrl = resp.data.public_url;
|
|
99
103
|
if (resp.data.artifacts) setS3Credentials(resp.data.artifacts);
|
|
100
104
|
this.store.runUrl = this.runUrl;
|
|
105
|
+
this.store.runPublicUrl = this.runPublicUrl;
|
|
101
106
|
this.store.runId = this.runId;
|
|
102
107
|
console.log(APP_PREFIX, '📊 Report created. Report ID:', this.runId);
|
|
103
108
|
process.env.runId = this.runId;
|
|
@@ -177,6 +182,10 @@ class TestomatioPipe {
|
|
|
177
182
|
if (this.runUrl) {
|
|
178
183
|
console.log(APP_PREFIX, '📊 Report Saved. Report URL:', chalk.magenta(this.runUrl));
|
|
179
184
|
}
|
|
185
|
+
if (this.runPublicUrl) {
|
|
186
|
+
console.log(APP_PREFIX, '🌟 Public URL:', chalk.magenta(this.runPublicUrl));
|
|
187
|
+
}
|
|
188
|
+
|
|
180
189
|
}
|
|
181
190
|
if (this.runUrl && this.proceed) {
|
|
182
191
|
const notFinishedMessage = chalk.yellow.bold('Run was not finished because of $TESTOMATIO_PROCEED');
|