@testomatio/reporter 2.9.1-beta.4-allure-step-status → 2.9.1

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.
@@ -1,691 +0,0 @@
1
- import createDebugMessages from 'debug';
2
- import path from 'path';
3
- import pc from 'picocolors';
4
- import fs from 'fs';
5
- import { glob } from 'glob';
6
- import { APP_PREFIX, STATUS, BATCH_MODE } from './constants.js';
7
- import { randomUUID } from 'crypto';
8
- import { fileURLToPath } from 'url';
9
- import { config } from './config.js';
10
- import { S3Uploader } from './uploader.js';
11
- import { pipesFactory } from './pipe/index.js';
12
- import { splitTestsIntoChunks } from './utils/pipe_utils.js';
13
- import {
14
- fetchSourceCode,
15
- fetchIdFromCode,
16
- } from './utils/utils.js';
17
- import adapterFactory from './junit-adapter/index.js';
18
-
19
- // @ts-ignore
20
- const __dirname = path.dirname(fileURLToPath(import.meta.url));
21
-
22
- const debug = createDebugMessages('@testomatio/reporter:allure');
23
-
24
- const TESTOMATIO_URL = process.env.TESTOMATIO_URL || 'https://app.testomat.io';
25
- const { TESTOMATIO_RUNGROUP_TITLE, TESTOMATIO_SUITE, TESTOMATIO_TITLE, TESTOMATIO_ENV, TESTOMATIO_RUN } = process.env;
26
-
27
- class AllureReader {
28
- constructor(opts = {}) {
29
- this.requestParams = {
30
- apiKey: opts.apiKey || config.TESTOMATIO,
31
- url: opts.url || TESTOMATIO_URL,
32
- title: TESTOMATIO_TITLE,
33
- env: TESTOMATIO_ENV,
34
- group_title: TESTOMATIO_RUNGROUP_TITLE,
35
- // Buffer tests and flush them manually in size-limited chunks, exactly like XmlReader.
36
- // No setInterval auto-upload means each test is sent exactly once (no double-send).
37
- batchMode: BATCH_MODE.MANUAL,
38
- };
39
- this.runId = opts.runId || TESTOMATIO_RUN;
40
- this.opts = opts || {};
41
- this.withPackage = opts.withPackage || false;
42
- this.store = {};
43
- this.pipesPromise = pipesFactory(opts, this.store);
44
- this._tests = [];
45
- this.stats = {};
46
- this.suites = {};
47
- this.uploader = new S3Uploader();
48
-
49
- // Allure results already contain steps and stack traces for all tests,
50
- // so enable passing them for passed tests by default
51
- if (!process.env.TESTOMATIO_STACK_PASSED) {
52
- process.env.TESTOMATIO_STACK_PASSED = '1';
53
- }
54
- if (!process.env.TESTOMATIO_STEPS_PASSED) {
55
- process.env.TESTOMATIO_STEPS_PASSED = '1';
56
- }
57
-
58
- const packageJsonPath = path.resolve(__dirname, '..', 'package.json');
59
- this.version = JSON.parse(fs.readFileSync(packageJsonPath).toString()).version;
60
- console.log(APP_PREFIX, `Testomatio Reporter v${this.version}`);
61
- }
62
-
63
- get tests() {
64
- return this._tests;
65
- }
66
-
67
- set tests(value) {
68
- this._tests = value;
69
- }
70
-
71
- async createRun() {
72
- const runParams = {
73
- api_key: this.requestParams.apiKey,
74
- title: this.requestParams.title,
75
- env: this.requestParams.env,
76
- group_title: this.requestParams.group_title,
77
- batchMode: this.requestParams.batchMode,
78
- };
79
-
80
- debug('Run', runParams);
81
- this.pipes = this.pipes || (await this.pipesPromise);
82
-
83
- const run = await Promise.all(this.pipes.map(p => p.createRun(runParams)));
84
- this.uploader.checkEnabled();
85
- return run;
86
- }
87
-
88
- parse(resultsPattern) {
89
- this._tests = [];
90
- let pattern = resultsPattern;
91
-
92
- // Auto-append wildcard if pattern refers to a directory (like XML command does)
93
- if (!pattern.endsWith('.json') && !pattern.includes('*')) {
94
- if (pattern.endsWith('/') || (fs.existsSync(pattern) && fs.statSync(pattern).isDirectory())) {
95
- pattern = pattern.replace(/\/+$/, '') + '/*-result.json';
96
- } else {
97
- pattern += '*-result.json';
98
- }
99
- }
100
-
101
- const resultsDir = path.dirname(pattern);
102
-
103
- console.log(APP_PREFIX, `Scanning for Allure results in: ${resultsDir}`);
104
- console.log(APP_PREFIX, `Using pattern: ${pattern}`);
105
-
106
- const resultFiles = glob.sync(pattern);
107
- const containerFiles = glob.sync(pattern.replace('*-result.json', '*-container.json'));
108
-
109
- if (resultFiles.length === 0 && containerFiles.length === 0) {
110
- throw new Error(`No Allure result files found matching pattern: ${pattern}`);
111
- }
112
-
113
- console.log(APP_PREFIX, `Found ${resultFiles.length} result files and ${containerFiles.length} container files`);
114
-
115
- this.parseContainerFiles(containerFiles);
116
-
117
- // Store all tests temporarily for deduplication by historyId
118
- const allTests = [];
119
- for (const file of resultFiles) {
120
- const fullPath = file;
121
- const fileDir = path.dirname(file);
122
- try {
123
- const resultData = JSON.parse(fs.readFileSync(fullPath, 'utf8'));
124
- const test = this.processAllureResult(resultData, fileDir);
125
- if (test) {
126
- test._historyId = resultData.historyId;
127
- test._stop = resultData.stop || 0;
128
- allTests.push(test);
129
- }
130
- } catch (err) {
131
- console.warn(APP_PREFIX, `Failed to parse ${file}:`, err.message);
132
- debug('Parse error:', err);
133
- }
134
- }
135
-
136
- const attemptsMap = new Map();
137
- for (const test of allTests) {
138
- const historyId = test._historyId || test.rid;
139
- if (!attemptsMap.has(historyId)) {
140
- attemptsMap.set(historyId, []);
141
- }
142
- attemptsMap.get(historyId).push(test);
143
- }
144
-
145
- const uniqueTestsMap = new Map();
146
- for (const [historyId, attempts] of attemptsMap) {
147
- uniqueTestsMap.set(historyId, this.combineRetryAttempts(attempts));
148
- }
149
-
150
- // Convert map to array and clean up internal fields
151
- this._tests = Array.from(uniqueTestsMap.values()).map(t => {
152
- delete t._historyId;
153
- delete t._stop;
154
- return t;
155
- });
156
-
157
- console.log(APP_PREFIX, `Processed ${this._tests.length} unique tests (from ${allTests.length} result files)`);
158
-
159
- return this.calculateStats();
160
- }
161
-
162
- parseContainerFiles(containerFiles) {
163
- for (const file of containerFiles) {
164
- try {
165
- const data = JSON.parse(fs.readFileSync(file, 'utf8'));
166
- if (data.name && data.children) {
167
- data.children.forEach(uuid => {
168
- this.suites[uuid] = data.name;
169
- });
170
- }
171
- } catch (err) {
172
- debug('Failed to parse container file:', file, err.message);
173
- }
174
- }
175
- debug('Parsed suites:', this.suites);
176
- }
177
-
178
- processAllureResult(result, resultsDir) {
179
- const test = {
180
- rid: result.uuid || randomUUID(),
181
- title: result.name || 'Unknown test',
182
- status: this.mapStatus(result.status),
183
- suite_title: this.extractSuiteTitle(result),
184
- file: this.extractFile(result),
185
- run_time: this.calculateRunTime(result),
186
- steps: this.convertSteps(result.steps || []),
187
- message: result.statusDetails?.message || '',
188
- stack: result.statusDetails?.trace || '',
189
- meta: this.extractMeta(result),
190
- links: this.extractLinks(result),
191
- artifacts: [],
192
- create: true,
193
- overwrite: true,
194
- };
195
-
196
- // Use the @TmsLink / Testomat.io link as the test id so reported tests MATCH
197
- // existing cases instead of creating duplicates on every run.
198
- const testId = this.extractTestId(result);
199
- if (testId) {
200
- test.test_id = testId;
201
- }
202
-
203
- // Add description if present
204
- if (result.description) {
205
- test.description = result.description;
206
- }
207
-
208
- if (result.parameters && result.parameters.length > 0) {
209
- test.example = this.convertParameters(result.parameters);
210
- }
211
-
212
- if (result.attachments && result.attachments.length > 0) {
213
- const attachments = result.attachments
214
- .map(att => {
215
- const fullPath = path.join(resultsDir, att.source);
216
- if (fs.existsSync(fullPath)) {
217
- return fullPath;
218
- }
219
- debug('Attachment file not found:', fullPath);
220
- return null;
221
- })
222
- .filter(Boolean);
223
-
224
- if (attachments.length > 0) {
225
- test.files = attachments;
226
- }
227
- }
228
-
229
- return test;
230
- }
231
-
232
- mapStatus(status) {
233
- const statusMap = {
234
- passed: 'passed',
235
- failed: 'failed',
236
- broken: 'failed',
237
- skipped: 'skipped',
238
- pending: 'skipped',
239
- };
240
- return statusMap[status] || 'failed';
241
- }
242
-
243
- /**
244
- * Map an Allure step status to the Testomat.io Step status enum
245
- * (`passed | failed | none | custom`, see testomat-api-definition.yml).
246
- *
247
- * Allure marks a step `broken` when it threw an unexpected error — that is a
248
- * failure for reporting purposes, matching how `mapStatus` treats tests.
249
- * `skipped` and anything unknown/absent become `none` (the neutral value),
250
- * since the step enum has no `skipped`.
251
- *
252
- * @param {string} status - Allure step status
253
- * @returns {'passed'|'failed'|'none'} Testomat.io step status
254
- */
255
- mapStepStatus(status) {
256
- const statusMap = {
257
- passed: 'passed',
258
- failed: 'failed',
259
- broken: 'failed',
260
- skipped: 'none',
261
- pending: 'none',
262
- };
263
- return statusMap[status] || 'none';
264
- }
265
-
266
- extractSuiteTitle(result) {
267
- const labels = result.labels || [];
268
-
269
- // Only use suite label for suite_title
270
- // Epic and Feature are sent as separate labels in meta
271
- const suiteLabel = labels.find(l => l.name === 'suite')?.value;
272
-
273
- if (suiteLabel) {
274
- return this.stripNamespace(suiteLabel);
275
- }
276
-
277
- // Fallback to parentSuite or subSuite if no suite label
278
- const parentSuite = labels.find(l => l.name === 'parentSuite')?.value;
279
- const subSuite = labels.find(l => l.name === 'subSuite')?.value;
280
-
281
- if (parentSuite && subSuite) {
282
- return `${parentSuite} / ${subSuite}`;
283
- }
284
- if (parentSuite) return parentSuite;
285
- if (subSuite) return subSuite;
286
-
287
- return 'Default Suite';
288
- }
289
-
290
- stripNamespace(suiteName) {
291
- if (suiteName && suiteName.includes('.')) {
292
- return suiteName.split('.').pop();
293
- }
294
- return suiteName;
295
- }
296
-
297
- extractFile(result) {
298
- const labels = result.labels || [];
299
- const packageLabel = labels.find(l => l.name === 'package')?.value;
300
- const testClassLabel = labels.find(l => l.name === 'testClass')?.value;
301
-
302
- if (!packageLabel) {
303
- return null;
304
- }
305
-
306
- const ext = this.getFileExtension(result);
307
- let className;
308
-
309
- if (testClassLabel) {
310
- className = testClassLabel.split('.').pop();
311
- } else if (result.fullName) {
312
- const fullNameParts = result.fullName.split('.');
313
- className = fullNameParts[fullNameParts.length - 2] || fullNameParts[fullNameParts.length - 1];
314
- } else {
315
- return null;
316
- }
317
-
318
- if (this.withPackage) {
319
- const parts = packageLabel.split('.');
320
- return `${parts.join('/')}/${className}.${ext}`;
321
- }
322
-
323
- return `${className}.${ext}`;
324
- }
325
-
326
- getFileExtension(result) {
327
- const labels = result.labels || [];
328
- const languageLabel = labels.find(l => l.name === 'language')?.value;
329
-
330
- const extMap = {
331
- java: 'java',
332
- kotlin: 'kt',
333
- javascript: 'js',
334
- typescript: 'ts',
335
- python: 'py',
336
- ruby: 'rb',
337
- 'c#': 'cs',
338
- php: 'php',
339
- };
340
-
341
- return extMap[languageLabel?.toLowerCase()] || 'java';
342
- }
343
-
344
- extractMeta(result) {
345
- const labels = result.labels || [];
346
- const excludedLabels = [
347
- 'suite', 'package', 'parentSuite', 'subSuite',
348
- 'testClass', 'testMethod', 'epic', 'feature',
349
- ];
350
-
351
- const meta = {};
352
- labels.forEach(label => {
353
- if (!excludedLabels.includes(label.name)) {
354
- meta[label.name] = label.value;
355
- }
356
- });
357
-
358
- return meta;
359
- }
360
-
361
- extractLinks(result) {
362
- const labels = result.labels || [];
363
- const links = [];
364
-
365
- const epicLabel = labels.find(l => l.name === 'epic');
366
- const featureLabel = labels.find(l => l.name === 'feature');
367
-
368
- if (epicLabel?.value) {
369
- links.push({ label: `epic:${epicLabel.value}` });
370
- }
371
-
372
- if (featureLabel?.value) {
373
- links.push({ label: `feature:${featureLabel.value}` });
374
- }
375
-
376
- return links.length > 0 ? links : undefined;
377
- }
378
-
379
- /**
380
- * Extract a Testomat.io test id from Allure links so reported tests match
381
- * existing cases instead of creating duplicates.
382
- *
383
- * Allure's `@TmsLink("T1a2b3c4d")` produces a link with `type: "tms"`. Some exporters
384
- * omit the type but still point the link URL at a Testomat.io test page; both are
385
- * accepted. The link `name` is used as the id (falling back to the last URL segment).
386
- *
387
- * @param {object} result - Parsed Allure result JSON
388
- * @returns {string|null} Normalized test id, or null when no usable link exists
389
- */
390
- extractTestId(result) {
391
- const links = result.links || [];
392
- if (!links.length) return null;
393
-
394
- const isTmsLink = l => typeof l?.type === 'string' && l.type.toLowerCase() === 'tms';
395
- const isTestomatioLink = l => typeof l?.url === 'string' && /testomat\.io\/[^\s]*\/test\//i.test(l.url);
396
-
397
- const link = links.find(isTmsLink) || links.find(isTestomatioLink);
398
- if (!link) return null;
399
-
400
- // Prefer the explicit link name; fall back to the id segment of a Testomat.io URL.
401
- let id = this.normalizeTestId(link.name);
402
- if (!id && typeof link.url === 'string') {
403
- const fromUrl = link.url.match(/\/test\/([\w\d]{8})(?=$|[/?#])/i);
404
- if (fromUrl) id = fromUrl[1];
405
- }
406
-
407
- return id;
408
- }
409
-
410
- /**
411
- * Normalize a value into a Testomat.io test id.
412
- *
413
- * Testomat.io test ids are exactly **8 word characters**. The value may arrive bare
414
- * (`1a2b3c4d`), or carrying the `T` / `@T` markers Testomat uses in code and titles
415
- * (`T1a2b3c4d`, `@T1a2b3c4d`). The markers are removed only when doing so still leaves
416
- * a valid 8-char id, so a real id that happens to start with `T` is preserved.
417
- *
418
- * Anything that does not resolve to a valid 8-char id — a numeric Allure TestOps id
419
- * like `12345`, a JIRA key, a 6-digit TMS number — is rejected (returns null) so we
420
- * never send an unmatchable id that would create duplicates.
421
- *
422
- * @param {string|number|null|undefined} value
423
- * @returns {string|null} The bare 8-char id, or null when the value is not a valid id
424
- */
425
- normalizeTestId(value) {
426
- if (value === null || value === undefined) return null;
427
- const match = value.toString().trim().match(/^@?T?([\w\d]{8})$/);
428
- return match ? match[1] : null;
429
- }
430
-
431
- convertSteps(steps, depth = 0) {
432
- if (depth >= 10) return null;
433
-
434
- return steps
435
- .map(step => {
436
- const convertedStep = {
437
- category: 'user',
438
- title: step.name || step.title || 'Unknown step',
439
- status: this.mapStepStatus(step.status),
440
- duration: this.calculateRunTime(step),
441
- steps: this.convertSteps(step.steps || [], depth + 1),
442
- };
443
-
444
- // Attach the failure description (error message + trace with the failing
445
- // code line) straight onto the failed step. Testomat.io renders a step's
446
- // `error` inline in the step tree, so the failure shows up on the exact
447
- // step that broke instead of only at the test level.
448
- const error = this.extractStepError(step);
449
- if (error) {
450
- convertedStep.error = error;
451
- }
452
-
453
- if (convertedStep.steps && convertedStep.steps.length === 0) {
454
- delete convertedStep.steps;
455
- }
456
-
457
- if (convertedStep.duration === 0) {
458
- delete convertedStep.duration;
459
- }
460
-
461
- return convertedStep;
462
- })
463
- .filter(Boolean);
464
- }
465
-
466
- /**
467
- * Build the `error` payload for a failed step from its Allure `statusDetails`.
468
- *
469
- * Allure stores the failure message and stack trace (which includes the failing
470
- * source line) in `statusDetails` on the step itself. We only surface it for
471
- * failed/broken steps — passing or skipped steps carry no error. Returns null
472
- * when there is no usable failure information so the field is omitted entirely.
473
- *
474
- * @param {object} step - Allure step
475
- * @returns {{message: string, stack: string}|null}
476
- */
477
- extractStepError(step) {
478
- if (this.mapStepStatus(step.status) !== 'failed') return null;
479
-
480
- const details = step.statusDetails || {};
481
- const message = details.message || '';
482
- const stack = details.trace || '';
483
-
484
- if (!message && !stack) return null;
485
-
486
- return { message, stack };
487
- }
488
-
489
- calculateRunTime(item) {
490
- if (item.start && item.stop) {
491
- const durationMs = item.stop - item.start;
492
- return durationMs / 1000;
493
- }
494
- return null;
495
- }
496
-
497
- convertParameters(parameters) {
498
- const example = {};
499
- parameters.forEach(param => {
500
- if (param.name) {
501
- example[param.name] = param.value;
502
- }
503
- });
504
- return example;
505
- }
506
-
507
- combineRetryAttempts(attempts) {
508
- attempts.sort((a, b) => (a._stop || 0) - (b._stop || 0));
509
-
510
- const finalTest = attempts[attempts.length - 1];
511
- const retryCount = attempts.length - 1;
512
-
513
- if (retryCount > 0) {
514
- finalTest.retries = retryCount;
515
- }
516
-
517
- const failedAttempts = attempts.filter(t => t.status === 'failed');
518
-
519
- if (failedAttempts.length === 0) {
520
- return finalTest;
521
- }
522
-
523
- const failureMessages = [];
524
- const failureStacks = [];
525
-
526
- for (const failed of failedAttempts) {
527
- const attemptNum = attempts.indexOf(failed) + 1;
528
- if (failed.message) {
529
- failureMessages.push(`[Attempt ${attemptNum}] ${failed.message}`);
530
- }
531
- if (failed.stack) {
532
- failureStacks.push(`\n--- Attempt ${attemptNum} ---\n${failed.stack}`);
533
- }
534
- }
535
-
536
- if (failureMessages.length > 0) {
537
- finalTest.message = failureMessages.join('\n');
538
- }
539
- if (failureStacks.length > 0) {
540
- finalTest.stack = failureStacks.join('\n');
541
- }
542
-
543
- if (finalTest.status === 'passed') {
544
- finalTest.status = 'failed';
545
- const retryMsg = `Test passed after ${failedAttempts.length} retries. Previous failures:\n`;
546
- finalTest.message = retryMsg + finalTest.message;
547
- }
548
-
549
- return finalTest;
550
- }
551
-
552
- calculateStats() {
553
- this.stats = {
554
- create_tests: true,
555
- tests_count: this._tests.length,
556
- passed_count: 0,
557
- failed_count: 0,
558
- skipped_count: 0,
559
- duration: 0,
560
- status: 'passed',
561
- tests: this._tests,
562
- };
563
- this._tests.forEach(t => {
564
- if (t.status === 'passed') this.stats.passed_count++;
565
- if (t.status === 'failed') this.stats.failed_count++;
566
- if (t.status === 'skipped') this.stats.skipped_count++;
567
- });
568
- this.stats.duration = this._tests.reduce((acc, t) => acc + (t.run_time || 0), 0);
569
- if (this.stats.failed_count) this.stats.status = 'failed';
570
-
571
- debug('Stats:', this.stats);
572
- return this.stats;
573
- }
574
-
575
- fetchSourceCode() {
576
- const adapter = this.adapter || adapterFactory(this.getLanguage(), this.opts);
577
-
578
- this._tests.forEach(t => {
579
- try {
580
- let filePath = t.file;
581
-
582
- if (adapter && adapter.getFilePath) {
583
- filePath = adapter.getFilePath(t);
584
- }
585
-
586
- if (!filePath) return;
587
-
588
- if (!fs.existsSync(filePath)) {
589
- debug('Source file not found:', filePath);
590
- return;
591
- }
592
-
593
- const contents = fs.readFileSync(filePath).toString();
594
- const code = fetchSourceCode(contents, { ...t, lang: this.getLanguage() });
595
- if (code) {
596
- t.code = code;
597
- debug('Fetched code for test %s', t.title);
598
- }
599
-
600
- // Don't override an id already taken from a @TmsLink — the link is the
601
- // explicit, source-independent match key the client maintains.
602
- const testId = fetchIdFromCode(contents, { lang: this.getLanguage() });
603
- if (testId && !t.test_id) {
604
- t.test_id = testId;
605
- debug('Fetched test id %s for test %s', testId, t.title);
606
- }
607
- } catch (err) {
608
- debug('Failed to fetch source code:', err.message);
609
- }
610
- });
611
- }
612
-
613
- getLanguage() {
614
- if (this._tests.length === 0) return null;
615
- return this._tests[0].meta?.language || this.opts.lang;
616
- }
617
-
618
- async uploadArtifacts() {
619
- for (const test of this._tests.filter(t => t.files && t.files.length > 0)) {
620
- const runId = this.runId || this.store.runId || Date.now().toString();
621
- const artifacts = await Promise.all(
622
- test.files.map(f => this.uploader.uploadFileByPath(f, [runId, test.rid, path.basename(f)])),
623
- );
624
- test.artifacts = artifacts.filter(a => a && a.link).map(a => a.link);
625
- delete test.files;
626
- if (test.artifacts.length > 0) {
627
- console.log(APP_PREFIX, `🗄️ Uploaded ${pc.bold(`${test.artifacts.length} artifacts`)} for test ${test.title}`);
628
- }
629
- }
630
- }
631
-
632
- async uploadData() {
633
- await this.uploadArtifacts();
634
- this.calculateStats();
635
- this.fetchSourceCode();
636
-
637
- this.pipes = this.pipes || (await this.pipesPromise);
638
-
639
- const finishData = {
640
- api_key: this.requestParams.apiKey,
641
- status: 'finished',
642
- duration: this.stats.duration,
643
- };
644
-
645
- if (!this._tests || !Array.isArray(this._tests) || this._tests.length === 0) {
646
- debug('No tests to upload, finishing run');
647
- return Promise.all(this.pipes.map(p => p.finishRun(finishData)));
648
- }
649
-
650
- // Upload tests in size-limited chunks (max 1MB each), exactly like XmlReader.
651
- // The testomatio pipe runs in MANUAL batch mode, so addTest only buffers tests and
652
- // sync() flushes one batch request per chunk. There is no setInterval auto-upload,
653
- // so each test is sent exactly once (no double-send) and requests stay under the limit.
654
- const testChunks = splitTestsIntoChunks(this._tests);
655
-
656
- const totalChunks = testChunks.length;
657
- const totalTests = this._tests.length;
658
-
659
- debug(`Split ${totalTests} tests into ${totalChunks} chunks (max 1MB per chunk)`);
660
-
661
- let uploadedTests = 0;
662
- for (let i = 0; i < testChunks.length; i++) {
663
- const chunk = testChunks[i];
664
-
665
- if (totalChunks > 1) {
666
- debug(`Uploading chunk ${i + 1}/${totalChunks} (${chunk.length} tests)`);
667
- }
668
-
669
- // Buffer each test in the chunk, then flush the whole chunk as a single batch
670
- for (const test of chunk) {
671
- await Promise.all(this.pipes.map(p => p.addTest(test)));
672
- }
673
- await Promise.all(this.pipes.map(p => p.sync()));
674
-
675
- uploadedTests += chunk.length;
676
- debug(`Uploaded ${uploadedTests}/${totalTests} tests`);
677
- }
678
-
679
- if (totalChunks > 1) {
680
- console.log(APP_PREFIX, `✅ Successfully uploaded ${uploadedTests} tests in ${totalChunks} chunks`);
681
- } else {
682
- console.log(APP_PREFIX, `✅ Successfully uploaded ${uploadedTests} tests`);
683
- }
684
-
685
- debug('Uploaded %d tests, finishing run', this._tests.length);
686
-
687
- return Promise.all(this.pipes.map(p => p.finishRun(finishData)));
688
- }
689
- }
690
-
691
- export default AllureReader;