@@ -80,6 +80,31 @@ describe('UnionIterator', () => {
80
80
} ) ;
81
81
} ) ;
82
82
83
+ describe ( 'when constructed with an array of 0 sources without autoStart' , ( ) => {
84
+ let iterator ;
85
+ before ( ( ) => {
86
+ const sources = [ ] ;
87
+ iterator = new UnionIterator ( sources , { autoStart : false } ) ;
88
+ } ) ;
89
+
90
+ describe ( 'before reading' , ( ) => {
91
+ it ( 'should not have ended' , ( ) => {
92
+ iterator . ended . should . be . false ;
93
+ } ) ;
94
+ } ) ;
95
+
96
+ describe ( 'after reading' , ( ) => {
97
+ before ( done => {
98
+ iterator . read ( ) ;
99
+ queueMicrotask ( done ) ;
100
+ } ) ;
101
+
102
+ it ( 'should have ended' , ( ) => {
103
+ iterator . ended . should . be . true ;
104
+ } ) ;
105
+ } ) ;
106
+ } ) ;
107
+
83
108
describe ( 'when constructed with an array of 1 source' , ( ) => {
84
109
let iterator ;
85
110
before ( ( ) => {
@@ -127,6 +152,31 @@ describe('UnionIterator', () => {
127
152
} ) ;
128
153
} ) ;
129
154
155
+ describe ( 'when constructed with an iterator of 0 sources without autoStart' , ( ) => {
156
+ let iterator ;
157
+ before ( ( ) => {
158
+ const sources = [ ] ;
159
+ iterator = new UnionIterator ( new ArrayIterator ( sources ) , { autoStart : false } ) ;
160
+ } ) ;
161
+
162
+ describe ( 'before reading' , ( ) => {
163
+ it ( 'should not have ended' , ( ) => {
164
+ iterator . ended . should . be . false ;
165
+ } ) ;
166
+ } ) ;
167
+
168
+ describe ( 'after reading' , ( ) => {
169
+ before ( done => {
170
+ iterator . read ( ) ;
171
+ queueMicrotask ( done ) ;
172
+ } ) ;
173
+
174
+ it ( 'should have ended' , ( ) => {
175
+ iterator . ended . should . be . true ;
176
+ } ) ;
177
+ } ) ;
178
+ } ) ;
179
+
130
180
describe ( 'when constructed with an iterator of 1 source' , ( ) => {
131
181
let iterator ;
132
182
before ( ( ) => {
@@ -166,6 +216,98 @@ describe('UnionIterator', () => {
166
216
} ) ;
167
217
} ) ;
168
218
219
+ describe ( 'when constructed with an iterator and with autoStart' , ( ) => {
220
+ let iterator , sourceIterator ;
221
+ before ( ( ) => {
222
+ const sources = [ range ( 0 , 2 ) , range ( 3 , 6 ) ] ;
223
+ sourceIterator = new ArrayIterator ( sources ) ;
224
+ sinon . spy ( sourceIterator , 'read' ) ;
225
+ iterator = new UnionIterator ( sourceIterator , { autoStart : true } ) ;
226
+ } ) ;
227
+
228
+ describe ( 'before reading' , ( ) => {
229
+ it ( 'should have read the sources' , ( ) => {
230
+ sourceIterator . read . should . have . been . called ;
231
+ } ) ;
232
+
233
+ it ( 'should not have ended' , ( ) => {
234
+ iterator . ended . should . be . false ;
235
+ } ) ;
236
+
237
+ it ( 'should pass errors' , ( ) => {
238
+ const callback = sinon . spy ( ) ;
239
+ const error = new Error ( 'error' ) ;
240
+ iterator . once ( 'error' , callback ) ;
241
+ sourceIterator . emit ( 'error' , error ) ;
242
+ callback . should . have . been . calledOnce ;
243
+ callback . should . have . been . calledWith ( error ) ;
244
+ } ) ;
245
+ } ) ;
246
+
247
+ describe ( 'after reading' , ( ) => {
248
+ let items ;
249
+ before ( async ( ) => {
250
+ items = ( await toArray ( iterator ) ) . sort ( ) ;
251
+ } ) ;
252
+
253
+ it ( 'should have emitted all items' , ( ) => {
254
+ items . should . eql ( [ 0 , 1 , 2 , 3 , 4 , 5 , 6 ] ) ;
255
+ } ) ;
256
+
257
+ it ( 'should have ended' , ( ) => {
258
+ iterator . ended . should . be . true ;
259
+ } ) ;
260
+ } ) ;
261
+ } ) ;
262
+
263
+ describe ( 'when constructed with an iterator and without autoStart' , ( ) => {
264
+ let iterator , sourceIterator ;
265
+ before ( ( ) => {
266
+ const sources = [ range ( 0 , 2 ) , range ( 3 , 6 ) ] ;
267
+ sourceIterator = new ArrayIterator ( sources ) ;
268
+ sinon . spy ( sourceIterator , 'read' ) ;
269
+ iterator = new UnionIterator ( sourceIterator , { autoStart : false } ) ;
270
+ } ) ;
271
+
272
+ describe ( 'before reading' , ( ) => {
273
+ it ( 'should not have read the sources' , ( ) => {
274
+ sourceIterator . read . should . not . have . been . called ;
275
+ } ) ;
276
+
277
+ it ( 'should not have ended' , ( ) => {
278
+ iterator . ended . should . be . false ;
279
+ } ) ;
280
+
281
+ it ( 'should pass errors' , ( ) => {
282
+ const callback = sinon . spy ( ) ;
283
+ const error = new Error ( 'error' ) ;
284
+ iterator . once ( 'error' , callback ) ;
285
+ sourceIterator . emit ( 'error' , error ) ;
286
+ callback . should . have . been . calledOnce ;
287
+ callback . should . have . been . calledWith ( error ) ;
288
+ } ) ;
289
+ } ) ;
290
+
291
+ describe ( 'after reading' , ( ) => {
292
+ let items ;
293
+ before ( async ( ) => {
294
+ items = ( await toArray ( iterator ) ) . sort ( ) ;
295
+ } ) ;
296
+
297
+ it ( 'should have read the sources' , ( ) => {
298
+ sourceIterator . read . should . have . been . called ;
299
+ } ) ;
300
+
301
+ it ( 'should have emitted all items' , ( ) => {
302
+ items . should . eql ( [ 0 , 1 , 2 , 3 , 4 , 5 , 6 ] ) ;
303
+ } ) ;
304
+
305
+ it ( 'should have ended' , ( ) => {
306
+ iterator . ended . should . be . true ;
307
+ } ) ;
308
+ } ) ;
309
+ } ) ;
310
+
169
311
describe ( 'a UnionIterator with two sources' , ( ) => {
170
312
let iterator , sources ;
171
313
0 commit comments