@@ -4,8 +4,9 @@ var tap = require('tap');
4
4
var spawn = require ( 'child_process' ) . spawn ;
5
5
var concat = require ( 'concat-stream' ) ;
6
6
var hasDynamicImport = require ( 'has-dynamic-import' ) ;
7
+ var assign = require ( 'object.assign' ) ;
7
8
8
- tap . test ( 'importing mjs files' , function ( t ) {
9
+ tap . test ( 'importing mjs files' , function ( t ) {
9
10
hasDynamicImport ( ) . then ( function ( hasSupport ) {
10
11
if ( hasSupport ) {
11
12
var tc = function ( rows ) {
@@ -36,7 +37,7 @@ tap.test('importing mjs files', function (t) {
36
37
] . join ( '\n' ) + '\n\n' ) ;
37
38
} ;
38
39
39
- var ps = tape ( 'import/*.mjs' ) ;
40
+ var ps = tape ( 'import/mjs- *.mjs' ) ;
40
41
ps . stdout . pipe ( concat ( tc ) ) ;
41
42
ps . stderr . pipe ( process . stderr ) ;
42
43
ps . on ( 'exit' , function ( code ) {
@@ -85,9 +86,113 @@ tap.test('importing type: "module" files', function (t) {
85
86
} ) ;
86
87
} ) ;
87
88
88
- function tape ( args ) {
89
+ tap . test ( 'errors importing test files' , function ( t ) {
90
+ hasDynamicImport ( ) . then ( function ( hasSupport ) {
91
+ var createTest = function ( options ) {
92
+ var message = options . error + ' in `' + options . mode + '` mode`' ;
93
+ var ps = tape ( options . files , { env : { NODE_OPTIONS : '--unhandled-rejections=' + options . mode } } ) ;
94
+ ps . stderr . pipe ( concat ( options . unhandledRejection ( message ) ) ) ;
95
+ ps . on ( 'exit' , function ( code , sig ) {
96
+ t . equal ( code , options . exitCode , message + ' has exit code ' + options . exitCode ) ;
97
+ } ) ;
98
+ } ;
99
+
100
+ var warning = function ( message ) {
101
+ return function ( rows ) {
102
+ t . match ( rows . toString ( 'utf8' ) , 'UnhandledPromiseRejectionWarning' , 'should have unhandled rejection warning: ' + message ) ;
103
+ } ;
104
+ } ;
105
+
106
+ var noWarning = function ( message ) {
107
+ return function ( rows ) {
108
+ t . notMatch ( rows . toString ( 'utf8' ) , 'UnhandledPromiseRejectionWarning' , 'should not have unhandled rejection warning: ' + message ) ;
109
+ } ;
110
+ } ;
111
+
112
+ if ( hasSupport ) {
113
+ var tests = [ {
114
+ files : 'import/syntax-error.mjs import/mjs-a.mjs import/mjs-b.mjs' ,
115
+ error : 'syntax errors in first imported esm file' ,
116
+ mode : 'warn' ,
117
+ exitCode : 0 ,
118
+ unhandledRejection : warning
119
+ } , {
120
+ files : 'import/throws.mjs import/mjs-a.mjs import/mjs-b.mjs' ,
121
+ error : 'thrown errors in first imported esm file' ,
122
+ mode : 'warn' ,
123
+ exitCode : 0 ,
124
+ unhandledRejection : warning
125
+ } , {
126
+ files : 'import/mjs-a.mjs import/syntax-error.mjs' ,
127
+ error : 'syntax error in esm file' ,
128
+ mode : 'warn' ,
129
+ exitCode : 1 ,
130
+ unhandledRejection : warning
131
+ } , {
132
+ files : 'import/syntax-error.mjs' ,
133
+ error : 'syntax error in esm file' ,
134
+ mode : 'strict' ,
135
+ exitCode : 1 ,
136
+ unhandledRejection : noWarning
137
+ } , {
138
+ files : 'import/throws.mjs' ,
139
+ error : 'thrown error in esm file' ,
140
+ mode : 'strict' ,
141
+ exitCode : 1 ,
142
+ unhandledRejection : noWarning
143
+ } , {
144
+ files : 'import/syntax-error.cjs' ,
145
+ error : 'syntax error in cjs file' ,
146
+ mode : 'warn' ,
147
+ exitCode : 1 ,
148
+ unhandledRejection : noWarning
149
+ } , {
150
+ files : 'import/throws.cjs' ,
151
+ error : 'thrown error in cjs file' ,
152
+ mode : 'warn' ,
153
+ exitCode : 1 ,
154
+ unhandledRejection : noWarning
155
+ } , {
156
+ files : 'import/syntax-error.cjs' ,
157
+ error : 'syntax error in cjs file' ,
158
+ mode : 'strict' ,
159
+ exitCode : 1 ,
160
+ unhandledRejection : noWarning
161
+ } , {
162
+ files : 'import/throws.cjs' ,
163
+ error : 'thrown error in cjs file' ,
164
+ mode : 'strict' ,
165
+ exitCode : 1 ,
166
+ unhandledRejection : noWarning
167
+ } , {
168
+ files : 'import/mjs-a.mjs import/syntax-error.cjs' ,
169
+ error : 'syntax error in cjs file in loading promise' ,
170
+ mode : 'warn' ,
171
+ exitCode : 1 ,
172
+ unhandledRejection : warning
173
+ } , {
174
+ files : 'import/mjs-a.mjs import/syntax-error.cjs' ,
175
+ error : 'syntax error in cjs file in loading promise' ,
176
+ mode : 'strict' ,
177
+ exitCode : 1 ,
178
+ unhandledRejection : noWarning
179
+ } ] ;
180
+
181
+ t . plan ( tests . length * 2 ) ;
182
+
183
+ tests . map ( createTest ) ;
184
+ } else {
185
+ t . pass ( 'does not support dynamic import' ) ;
186
+ t . end ( ) ;
187
+ }
188
+ } ) ;
189
+ } ) ;
190
+
191
+ function tape ( args , options ) {
192
+ options = assign ( { cwd : __dirname } , options ) ;
193
+
89
194
var proc = require ( 'child_process' ) ;
90
195
var bin = __dirname + '/../bin/tape' ;
91
196
92
- return proc . spawn ( 'node' , [ bin ] . concat ( args . split ( ' ' ) ) , { cwd : __dirname } ) ;
197
+ return proc . spawn ( 'node' , [ bin ] . concat ( args . split ( ' ' ) ) , options ) ;
93
198
}
0 commit comments