Skip to content

Commit a40bd51

Browse files
authored
[fix] [patch] await for result to be written (#33)
* await for result to be written * fix build * simplified * fix
1 parent 15be8b9 commit a40bd51

File tree

4 files changed

+73
-57
lines changed

4 files changed

+73
-57
lines changed

src/plugins/allure-reporter-plugin.ts

+15-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ export class AllureReporter {
367367
});
368368
}
369369

370-
async attachVideoToTests(arg: AllureTaskArgs<'attachVideoToTests'>) {
370+
async attachVideoToTests(arg: { path: string }) {
371371
// this happens after test has already finished
372372
const { path: videoPath } = arg;
373373
log(`attachVideoToTests: ${videoPath}`);
@@ -718,13 +718,27 @@ export class AllureReporter {
718718
}
719719

720720
this.applyGroupLabels();
721+
const uid = this.currentTest.uuid;
721722
this.currentTest.endTest();
722723

723724
this.tests.pop();
724725
this.descriptionHtml = [];
725726
this.testStatusStored = undefined;
726727
this.testDetailsStored = undefined;
727728
this.labels = [];
729+
730+
const waitResultWritten = (results: string, file: string) => {
731+
const started = Date.now();
732+
733+
while (!(Date.now() - started > 10000 || existsSync(file))) {
734+
// do sync
735+
}
736+
737+
if (!existsSync(file)) {
738+
console.error(`${packageLog} Result file doesn't exist: ${file}`);
739+
}
740+
};
741+
waitResultWritten(this.allureResults, `${this.allureResults}/${uid}-result.json`);
728742
}
729743

730744
startStep(arg: AllureTaskArgs<'stepStarted'>) {

src/plugins/allure-types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ type AllureTask = {
5353
delete: { path: string };
5454
attachScreenshots: { screenshots: AutoScreen[] };
5555
screenshotOne: { name: string; forStep?: boolean };
56-
attachVideoToTests: { path: string };
56+
// attachVideoToTests: { path: string };
5757
testResult: {
5858
title: string;
5959
id: string;

src/plugins/allure.ts

+57-53
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,58 @@ export type ReporterOptions = {
2323
isTest: boolean;
2424
};
2525

26+
const copyResultsToWatchFolder = async (allureResults: string, allureResultsWatch: string) => {
27+
if (allureResults === allureResultsWatch) {
28+
log(`afterSpec allureResultsWatch the same as allureResults ${allureResults}, will not copy`);
29+
30+
return;
31+
}
32+
33+
const results = glob.sync(`${allureResults}/*.*`);
34+
35+
if (!existsSync(allureResultsWatch)) {
36+
const mkdirSyncWithTry = (dir: string) => {
37+
for (let i = 0; i < 5; i++) {
38+
try {
39+
mkdirSync(dir);
40+
41+
return;
42+
} catch (err) {
43+
// ignore
44+
}
45+
}
46+
};
47+
mkdirSyncWithTry(allureResultsWatch);
48+
}
49+
log(`allureResults: ${allureResults}`);
50+
log(`allureResultsWatch: ${allureResultsWatch}`);
51+
let doneFiles = 0;
52+
const started = Date.now();
53+
const timeout = 10000;
54+
55+
results.forEach(res => {
56+
const to = `${allureResultsWatch}/${basename(res)}`;
57+
log(`copy file ${res} to ${to}`);
58+
copyFile(res, to, err => {
59+
if (err) {
60+
log(err);
61+
}
62+
rm(res, () => {
63+
// ignore
64+
});
65+
doneFiles = doneFiles + 1;
66+
});
67+
});
68+
69+
while (doneFiles < results.length) {
70+
if (Date.now() - started >= timeout) {
71+
console.error(`${packageLog} Could not write all attachments in ${timeout}ms`);
72+
break;
73+
}
74+
await delay(100);
75+
}
76+
};
77+
2678
export const allureTasks = (opts: ReporterOptions): AllureTasks => {
2779
// todo config
2880
let allureReporter = new AllureReporter(opts);
@@ -301,6 +353,7 @@ export const allureTasks = (opts: ReporterOptions): AllureTasks => {
301353
allureReporter.screenshotOne(arg);
302354
log('screenshotOne');
303355
},
356+
304357
// add all screenshots
305358
attachScreenshots: (arg: AllureTaskArgs<'attachScreenshots'>) => {
306359
log(`attachScreenshots ${JSON.stringify(arg)}`);
@@ -310,74 +363,25 @@ export const allureTasks = (opts: ReporterOptions): AllureTasks => {
310363
log('attachScreenshots');
311364
},
312365

313-
attachVideoToTests: async (arg: AllureTaskArgs<'attachVideoToTests'>) => {
366+
/* attachVideoToTests: async (arg: AllureTaskArgs<'attachVideoToTests'>) => {
314367
log(`attachScreenshots ${JSON.stringify(arg)}`);
315368
await allureReporter.attachVideoToTests(arg);
316369
log('attachVideoToTests');
317-
},
370+
},*/
318371

319372
async afterSpec(arg: AllureTaskArgs<'afterSpec'>) {
320373
log(`afterSpec ${JSON.stringify(arg)}`);
321374

322375
if (arg.results && arg.results?.video) {
323-
const { video } = arg.results;
376+
const { video } = arg.results ?? {};
324377
log(`afterSpec video path: ${video}`);
325378

326379
await allureReporter.attachVideoToTests({ path: video ?? '' });
327380
} else {
328381
console.error(`${packageLog} No video path in afterSpec result`);
329382
}
330383

331-
if (allureResults === allureResultsWatch) {
332-
log(`afterSpec allureResultsWatch the same as allureResults ${allureResults}, will not copy`);
333-
334-
return;
335-
}
336-
337-
const results = glob.sync(`${allureResults}/*.*`);
338-
339-
if (!existsSync(allureResultsWatch)) {
340-
const mkdirSyncWithTry = (dir: string) => {
341-
for (let i = 0; i < 5; i++) {
342-
try {
343-
mkdirSync(dir);
344-
345-
return;
346-
} catch (err) {
347-
// ignore
348-
}
349-
}
350-
};
351-
mkdirSyncWithTry(allureResultsWatch);
352-
}
353-
log(`allureResults: ${allureResults}`);
354-
log(`allureResultsWatch: ${allureResultsWatch}`);
355-
let doneFiles = 0;
356-
const started = Date.now();
357-
const timeout = 10000;
358-
359-
results.forEach(res => {
360-
const to = `${allureResultsWatch}/${basename(res)}`;
361-
log(`copy file ${res} to ${to}`);
362-
copyFile(res, to, err => {
363-
if (err) {
364-
log(err);
365-
}
366-
rm(res, () => {
367-
// ignore
368-
});
369-
doneFiles = doneFiles + 1;
370-
});
371-
});
372-
373-
while (doneFiles < results.length) {
374-
if (Date.now() - started >= timeout) {
375-
console.error(`${packageLog} Could not write all attachments in ${timeout}ms`);
376-
break;
377-
}
378-
await delay(100);
379-
}
380-
384+
await copyResultsToWatchFolder(allureResults, allureResultsWatch);
381385
log('afterSpec');
382386
},
383387

tests/cy-helper/utils.ts

-2
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,6 @@ export const createResTest2 = (
255255
err = e as Error;
256256
}
257257

258-
await delay(2000);
259-
260258
expect(err).toBeUndefined();
261259
});
262260

0 commit comments

Comments
 (0)