@@ -14,7 +14,8 @@ import {
14
14
import getUuid from 'uuid-by-string' ;
15
15
import getUuidByString from 'uuid-by-string' ;
16
16
import { parseAllure } from 'allure-js-parser' ;
17
- import { copyFileSync , existsSync , mkdirSync , readFile , readFileSync , writeFileSync } from 'fs' ;
17
+ import { copyFileSync , existsSync , mkdirSync , readFileSync , writeFileSync } from 'fs' ;
18
+ import { readFile } from 'fs/promises' ;
18
19
import path , { basename } from 'path' ;
19
20
import glob from 'fast-glob' ;
20
21
import { ReporterOptions } from './allure' ;
@@ -24,14 +25,7 @@ import { AllureTaskArgs, LabelName, Stage, StatusType, UNKNOWN } from './allure-
24
25
import { extname , packageLog } from '../common' ;
25
26
import type { ContentType } from '../common/types' ;
26
27
import { randomUUID } from 'crypto' ;
27
- import {
28
- copyAttachments ,
29
- copyFileCp ,
30
- copyTest ,
31
- mkdirSyncWithTry ,
32
- waitWhileCondition ,
33
- writeResultFile ,
34
- } from './fs-tools' ;
28
+ import { copyAttachments , copyFileCp , copyTest , mkdirSyncWithTry , writeResultFile } from './fs-tools' ;
35
29
36
30
const beforeEachHookName = '"before each" hook' ;
37
31
const beforeAllHookName = '"before all" hook' ;
@@ -41,11 +35,9 @@ const isBeforeEachHook = (ttl: string | undefined) => ttl?.indexOf(beforeEachHoo
41
35
const isAfterEachHook = ( ttl : string | undefined ) => ttl ?. indexOf ( afterEachHookName ) !== - 1 ;
42
36
const isBeforeAllHook = ( ttl : string | undefined ) => ttl ?. indexOf ( beforeAllHookName ) !== - 1 ;
43
37
44
- const debug = Debug ( 'cypress-allure:reporter' ) ;
38
+ const log = Debug ( 'cypress-allure:reporter' ) ;
45
39
46
- const log = ( ...args : unknown [ ] ) => {
47
- debug ( args ) ;
48
- } ;
40
+ const allTasks : any [ ] = [ ] ;
49
41
50
42
const createNewContentForContainer = ( nameAttAhc : string , existingContents : Buffer , ext : string , specname : string ) => {
51
43
const getContentJson = ( ) => {
@@ -93,15 +85,15 @@ const createNewContentForContainer = (nameAttAhc: string, existingContents: Buff
93
85
* @param input
94
86
* @param allureResultsWatch
95
87
*/
96
- const copyFileToWatch = async (
88
+ const copyFileToWatch = (
97
89
input : { test : string ; attachments : { name : string ; type : string ; source : string } [ ] } ,
98
90
allureResultsWatch : string ,
99
91
) => {
100
92
const { test : allureResultFile , attachments } = input ;
101
93
const allureResults = path . dirname ( allureResultFile ) ;
102
94
103
95
if ( allureResults === allureResultsWatch ) {
104
- log ( `afterSpec allureResultsWatch the same as allureResults ${ allureResults } , will not copy` ) ;
96
+ log ( `copyFileToWatch allureResultsWatch the same as allureResults ${ allureResults } , will not copy` ) ;
105
97
106
98
return ;
107
99
}
@@ -111,8 +103,8 @@ const copyFileToWatch = async (
111
103
log ( `allureResultsWatch: ${ allureResultsWatch } ` ) ;
112
104
log ( `attachments: ${ JSON . stringify ( attachments ) } ` ) ;
113
105
114
- await copyAttachments ( attachments , allureResultsWatch , allureResultFile ) ;
115
- await copyTest ( allureResultFile , allureResultsWatch ) ;
106
+ copyAttachments ( allTasks , attachments , allureResultsWatch , allureResultFile ) ;
107
+ copyTest ( allTasks , allureResultFile , allureResultsWatch ) ;
116
108
} ;
117
109
118
110
/**
@@ -458,7 +450,7 @@ export class AllureReporter {
458
450
459
451
writeFileSync ( testFile , JSON . stringify ( testCon ) ) ;
460
452
} catch ( e ) {
461
- console . log ( `Could not attach screenshot ${ x . screenshotId } ` ) ;
453
+ console . log ( `${ packageLog } Could not attach screenshot ${ x . screenshotId } ` ) ;
462
454
}
463
455
} ) ;
464
456
} ) ;
@@ -500,11 +492,23 @@ export class AllureReporter {
500
492
} ) ;
501
493
}
502
494
495
+ async waitAllTasksToFinish ( ) {
496
+ await Promise . all ( allTasks )
497
+ . then ( ( ) => {
498
+ log ( `All tasks completed (${ allTasks . length } )` ) ;
499
+ } )
500
+ . catch ( err => {
501
+ console . error ( `${ packageLog } Some of tasks (${ allTasks . length } ) failed:` , err ) ;
502
+ } ) ;
503
+
504
+ log ( 'All files / video copying tasks finished!' ) ;
505
+ }
506
+
503
507
/**
504
508
* Attach video to parent suite
505
509
* @param arg {path: string}
506
510
*/
507
- async attachVideoToContainers ( arg : { path : string } ) {
511
+ attachVideoToContainers ( arg : { path : string } ) {
508
512
// this happens after test and suites have already finished
509
513
const { path : videoPath } = arg ;
510
514
log ( `attachVideoToTests: ${ videoPath } ` ) ;
@@ -518,81 +522,78 @@ export class AllureReporter {
518
522
const tests = res
519
523
. filter ( t => ( this . allureAddVideoOnPass ? true : t . status !== 'passed' && t . status !== 'skipped' ) )
520
524
. map ( t => ( {
521
- path : t . labels . find ( l => l . name === 'path' ) ?. value ,
525
+ path : t . labels . find ( ( l : any ) => l . name === 'path' ) ?. value ,
522
526
id : t . uuid ,
523
527
fullName : t . fullName ,
524
528
parent : t . parent ,
525
529
} ) ) ;
526
530
527
531
const testsAttach = tests . filter ( t => t . path && t . path . indexOf ( specname ) !== - 1 ) ;
528
532
529
- let doneFiles = 0 ;
530
-
531
- readFile ( videoPath , errVideo => {
532
- if ( errVideo ) {
533
- console . error ( `${ packageLog } Could not read video: ${ errVideo } ` ) ;
533
+ try {
534
+ readFileSync ( videoPath ) ;
535
+ } catch ( errVideo ) {
536
+ console . error ( `${ packageLog } Could not read video: ${ errVideo } ` ) ;
534
537
535
- return ;
536
- }
538
+ return ;
539
+ }
537
540
538
- testsAttach . forEach ( test => {
541
+ allTasks . push (
542
+ ...testsAttach . map ( test => {
539
543
if ( ! test . parent ) {
540
544
console . error ( `${ packageLog } not writing videos since test has no parent suite: ${ test . fullName } ` ) ;
541
545
542
- return ;
546
+ return Promise . resolve ( ) ;
543
547
}
548
+
544
549
const containerFile = `${ this . allureResults } /${ test . parent . uuid } -container.json` ;
545
550
log ( `ATTACHING to container: ${ containerFile } ` ) ;
546
551
547
- readFile ( containerFile , ( err , contents ) => {
548
- if ( err ) {
549
- log ( `error reading container: ${ err . message } ` ) ;
552
+ return readFile ( containerFile )
553
+ . then ( contents => {
554
+ const uuid = randomUUID ( ) ;
555
+ const nameAttAhc = `${ uuid } -attachment${ ext } ` ;
556
+ const newPath = path . join ( this . allureResults , nameAttAhc ) ;
557
+ const newContentJson = createNewContentForContainer ( nameAttAhc , contents , ext , specname ) ;
558
+ const newContent = JSON . stringify ( newContentJson ) ;
550
559
551
- return ;
552
- }
553
- const uuid = randomUUID ( ) ;
554
- const nameAttAhc = `${ uuid } -attachment${ ext } ` ;
555
- const newPath = path . join ( this . allureResults , nameAttAhc ) ;
556
- const newContentJson = createNewContentForContainer ( nameAttAhc , contents , ext , specname ) ;
557
- const newContent = JSON . stringify ( newContentJson ) ;
560
+ const writeContainer = ( ) => {
561
+ log ( `write result file ${ containerFile } ` ) ;
558
562
559
- const writeContainer = ( ) => {
560
- log ( `write result file ${ containerFile } ` ) ;
561
- writeResultFile ( containerFile , newContent , ( ) => {
562
- doneFiles = doneFiles + 1 ;
563
- } ) ;
564
- } ;
563
+ return writeResultFile ( containerFile , newContent ) ;
564
+ } ;
565
565
566
- if ( existsSync ( newPath ) ) {
567
- log ( `not writing video, file already exist in path ${ newPath } ` ) ;
568
- writeContainer ( ) ;
566
+ if ( existsSync ( newPath ) ) {
567
+ log ( `not writing video, file already exists in path ${ newPath } ` ) ;
569
568
570
- return ;
571
- }
569
+ return writeContainer ( ) ;
570
+ }
572
571
573
- copyFileCp ( videoPath , newPath , false , ( ) => {
574
- writeContainer ( ) ;
572
+ return copyFileCp ( videoPath , newPath , false ) . then ( writeContainer ) ;
573
+ } )
574
+ . catch ( err => {
575
+ log ( `error reading container: ${ err . message } ` ) ;
575
576
} ) ;
576
- } ) ;
577
- } ) ;
578
- } ) ;
579
-
580
- await waitWhileCondition ( ( ) => doneFiles < testsAttach . length ) ;
577
+ } ) ,
578
+ ) ;
581
579
}
582
580
583
581
endGroup ( ) {
584
582
// why >= 1?
585
583
if ( this . groups . length >= 1 ) {
584
+ log ( 'addGlobalHooks' ) ;
586
585
this . addGlobalHooks ( ) ;
587
586
}
588
587
589
588
if ( this . currentGroup ) {
589
+ log ( 'END GROUP' ) ;
590
590
this . currentGroup ?. endGroup ( ) ;
591
591
this . groups . pop ( ) ;
592
592
}
593
593
}
594
594
595
595
endAllGroups ( ) {
596
+ log ( 'endAllGroups' ) ;
596
597
this . groups . forEach ( g => {
597
598
g . endGroup ( ) ;
598
599
} ) ;
@@ -748,24 +749,24 @@ export class AllureReporter {
748
749
this . globalHooks . processForTest ( ) ;
749
750
}
750
751
751
- async endTests ( ) {
752
+ endTests ( ) {
752
753
// eslint-disable-next-line @typescript-eslint/no-unused-vars
753
754
for ( const _tst of this . tests ) {
754
- await this . endTest ( { result : UNKNOWN , details : undefined } ) ;
755
+ this . endTest ( { result : UNKNOWN , details : undefined } ) ;
755
756
}
756
757
}
757
758
758
- async endGroups ( ) {
759
- await this . endTests ( ) ;
759
+ endGroups ( ) {
760
+ this . endTests ( ) ;
760
761
this . groups . forEach ( ( ) => {
761
762
this . endGroup ( ) ;
762
763
} ) ;
763
764
}
764
765
765
- async endAll ( ) {
766
+ endAll ( ) {
766
767
this . endAllSteps ( { status : UNKNOWN , details : undefined } ) ;
767
768
this . endHooks ( Status . BROKEN ) ;
768
- await this . endGroups ( ) ;
769
+ this . endGroups ( ) ;
769
770
}
770
771
771
772
addDescriptionHtml ( arg : AllureTaskArgs < 'addDescriptionHtml' > ) {
@@ -826,7 +827,7 @@ export class AllureReporter {
826
827
}
827
828
}
828
829
829
- async endTest ( arg : AllureTaskArgs < 'testEnded' > ) : Promise < void > {
830
+ endTest ( arg : AllureTaskArgs < 'testEnded' > ) : void {
830
831
const { result, details } = arg ;
831
832
const storedStatus = this . testStatusStored ;
832
833
const storedDetails = this . testDetailsStored ;
@@ -888,9 +889,8 @@ export class AllureReporter {
888
889
waitResultWritten ( this . allureResults , testFile ) ;
889
890
890
891
// move to watch
891
-
892
892
log ( 'testEnded: will move result to watch folder' ) ;
893
- await copyFileToWatch ( { test : testFile , attachments } , this . allureResultsWatch ) ;
893
+ copyFileToWatch ( { test : testFile , attachments } , this . allureResultsWatch ) ;
894
894
}
895
895
896
896
startStep ( arg : AllureTaskArgs < 'stepStarted' > ) {
0 commit comments