@@ -10,6 +10,7 @@ const assert = require('assert');
10
10
const { spawnSync } = require ( 'child_process' ) ;
11
11
const tmpdir = require ( '../common/tmpdir' ) ;
12
12
const fixtures = require ( '../common/fixtures' ) ;
13
+ const { expectSyncExitWithoutError } = require ( '../common/child_process' ) ;
13
14
const fs = require ( 'fs' ) ;
14
15
15
16
const warningScript = fixtures . path ( 'snapshot' , 'warning.js' ) ;
@@ -27,12 +28,7 @@ tmpdir.refresh();
27
28
] , {
28
29
cwd : tmpdir . path
29
30
} ) ;
30
- console . log ( '[stderr]:' , child . stderr . toString ( ) ) ;
31
- console . log ( '[stdout]:' , child . stdout . toString ( ) ) ;
32
- if ( child . status !== 0 ) {
33
- console . log ( child . signal ) ;
34
- assert . strictEqual ( child . status , 0 ) ;
35
- }
31
+ expectSyncExitWithoutError ( child ) ;
36
32
const stats = fs . statSync ( blobPath ) ;
37
33
assert ( stats . isFile ( ) ) ;
38
34
@@ -43,14 +39,14 @@ tmpdir.refresh();
43
39
] , {
44
40
cwd : tmpdir . path
45
41
} ) ;
46
- console . log ( '[stderr]:' , child . stderr . toString ( ) ) ;
47
- console . log ( '[stdout]:' , child . stdout . toString ( ) ) ;
48
- if ( child . status !== 0 ) {
49
- console . log ( child . signal ) ;
50
- assert . strictEqual ( child . status , 0 ) ;
51
- }
52
- const match = child . stderr . toString ( ) . match ( / W a r n i n g : t e s t w a r n i n g / g ) ;
53
- assert . strictEqual ( match . length , 1 ) ;
42
+ expectSyncExitWithoutError ( child , {
43
+ stderr ( output ) {
44
+ const match = output . match ( / W a r n i n g : t e s t w a r n i n g / g ) ;
45
+ assert . strictEqual ( match . length , 1 ) ;
46
+ return true ;
47
+ }
48
+ } ) ;
49
+
54
50
}
55
51
56
52
tmpdir . refresh ( ) ;
@@ -65,18 +61,17 @@ tmpdir.refresh();
65
61
] , {
66
62
cwd : tmpdir . path
67
63
} ) ;
68
- console . log ( '[stderr]:' , child . stderr . toString ( ) ) ;
69
- console . log ( '[stdout]:' , child . stdout . toString ( ) ) ;
70
- if ( child . status !== 0 ) {
71
- console . log ( child . signal ) ;
72
- assert . strictEqual ( child . status , 0 ) ;
73
- }
64
+ expectSyncExitWithoutError ( child , {
65
+ stderr ( output ) {
66
+ let match = output . match ( / W a r n i n g : t e s t w a r n i n g / g) ;
67
+ assert . strictEqual ( match . length , 1 ) ;
68
+ match = output . match ( / U s e ` n o d e - - t r a c e - w a r n i n g s / g) ;
69
+ assert . strictEqual ( match . length , 1 ) ;
70
+ return true ;
71
+ }
72
+ } ) ;
74
73
const stats = fs . statSync ( blobPath ) ;
75
74
assert ( stats . isFile ( ) ) ;
76
- let match = child . stderr . toString ( ) . match ( / W a r n i n g : t e s t w a r n i n g / g) ;
77
- assert . strictEqual ( match . length , 1 ) ;
78
- match = child . stderr . toString ( ) . match ( / U s e ` n o d e - - t r a c e - w a r n i n g s / g) ;
79
- assert . strictEqual ( match . length , 1 ) ;
80
75
81
76
child = spawnSync ( process . execPath , [
82
77
'--snapshot-blob' ,
@@ -85,17 +80,17 @@ tmpdir.refresh();
85
80
] , {
86
81
cwd : tmpdir . path
87
82
} ) ;
88
- console . log ( '[stderr]:' , child . stderr . toString ( ) ) ;
89
- console . log ( '[stdout]:' , child . stdout . toString ( ) ) ;
90
- if ( child . status !== 0 ) {
91
- console . log ( child . signal ) ;
92
- assert . strictEqual ( child . status , 0 ) ;
93
- }
94
- // Warnings should not be handled more than once.
95
- match = child . stderr . toString ( ) . match ( / W a r n i n g : t e s t w a r n i n g / g ) ;
96
- assert . strictEqual ( match . length , 1 ) ;
97
- match = child . stderr . toString ( ) . match ( / U s e ` n o d e - - t r a c e - w a r n i n g s / g ) ;
98
- assert . strictEqual ( match . length , 1 ) ;
83
+
84
+ expectSyncExitWithoutError ( child , {
85
+ stderr ( output ) {
86
+ // Warnings should not be handled more than once.
87
+ let match = output . match ( / W a r n i n g : t e s t w a r n i n g / g ) ;
88
+ assert . strictEqual ( match . length , 1 ) ;
89
+ match = output . match ( / U s e ` n o d e - - t r a c e - w a r n i n g s / g ) ;
90
+ assert . strictEqual ( match . length , 1 ) ;
91
+ return true ;
92
+ }
93
+ } ) ;
99
94
}
100
95
101
96
tmpdir . refresh ( ) ;
@@ -114,25 +109,26 @@ tmpdir.refresh();
114
109
] , {
115
110
cwd : tmpdir . path
116
111
} ) ;
117
- console . log ( '[stderr]:' , child . stderr . toString ( ) ) ;
118
- console . log ( '[stdout]:' , child . stdout . toString ( ) ) ;
119
- if ( child . status !== 0 ) {
120
- console . log ( child . signal ) ;
121
- assert . strictEqual ( child . status , 0 ) ;
122
- }
112
+
113
+ expectSyncExitWithoutError ( child , {
114
+ stderr ( output ) {
115
+ assert . doesNotMatch ( output , / W a r n i n g : t e s t w a r n i n g / ) ;
116
+ }
117
+ } ) ;
118
+
123
119
const stats = fs . statSync ( blobPath ) ;
124
120
assert ( stats . isFile ( ) ) ;
121
+
125
122
const warnings1 = fs . readFileSync ( warningFile1 , 'utf8' ) ;
126
123
console . log ( warningFile1 , ':' , warnings1 ) ;
127
124
let match = warnings1 . match ( / W a r n i n g : t e s t w a r n i n g / g) ;
128
125
assert . strictEqual ( match . length , 1 ) ;
129
126
match = warnings1 . match ( / U s e ` n o d e - - t r a c e - w a r n i n g s / g) ;
130
127
assert . strictEqual ( match . length , 1 ) ;
131
- assert . doesNotMatch ( child . stderr . toString ( ) , / W a r n i n g : t e s t w a r n i n g / ) ;
132
-
133
128
fs . rmSync ( warningFile1 , {
134
129
maxRetries : 3 , recursive : false , force : true
135
130
} ) ;
131
+
136
132
child = spawnSync ( process . execPath , [
137
133
'--snapshot-blob' ,
138
134
blobPath ,
@@ -142,12 +138,13 @@ tmpdir.refresh();
142
138
] , {
143
139
cwd : tmpdir . path
144
140
} ) ;
145
- console . log ( '[stderr]:' , child . stderr . toString ( ) ) ;
146
- console . log ( '[stdout]:' , child . stdout . toString ( ) ) ;
147
- if ( child . status !== 0 ) {
148
- console . log ( child . signal ) ;
149
- assert . strictEqual ( child . status , 0 ) ;
150
- }
141
+
142
+ expectSyncExitWithoutError ( child , {
143
+ stderr ( output ) {
144
+ assert . doesNotMatch ( output , / W a r n i n g : t e s t w a r n i n g / ) ;
145
+ return true ;
146
+ }
147
+ } ) ;
151
148
assert ( ! fs . existsSync ( warningFile1 ) ) ;
152
149
153
150
const warnings2 = fs . readFileSync ( warningFile2 , 'utf8' ) ;
@@ -156,5 +153,4 @@ tmpdir.refresh();
156
153
assert . strictEqual ( match . length , 1 ) ;
157
154
match = warnings2 . match ( / U s e ` n o d e - - t r a c e - w a r n i n g s / g) ;
158
155
assert . strictEqual ( match . length , 1 ) ;
159
- assert . doesNotMatch ( child . stderr . toString ( ) , / W a r n i n g : t e s t w a r n i n g / ) ;
160
156
}
0 commit comments