This repository was archived by the owner on Feb 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.js
More file actions
304 lines (243 loc) · 7.92 KB
/
test.js
File metadata and controls
304 lines (243 loc) · 7.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/* eslint-env node, jest */
'use strict';
const fs = require('fs');
const path = require('path');
const { PassThrough } = require('stream');
const collect = require('.');
const testDataPart1 = 'Some data to ';
const testDataPart2 = 'go into the stream';
const completeData = 'Some data to go into the stream';
describe('collect.Collect', () => {
describe('collect event', () => {
it('collects buffer data', (done) => {
const stream = new collect.Collect()
.on('collect', (data) => {
expect(Buffer.isBuffer(data)).toBe(true);
expect(data.toString()).toBe(completeData);
done();
});
stream.write(testDataPart1);
stream.end(testDataPart2);
});
it('collects string data', (done) => {
const stream = new collect.Collect({ encoding: 'utf8' })
.on('collect', (data) => {
expect(typeof data).toBe('string');
expect(data).toBe(completeData);
done();
});
stream.write(testDataPart1);
stream.end(testDataPart2);
});
it('handles encoding correctly with string data', (done) => {
const stream = new collect.Collect({ encoding: 'base64' })
.on('collect', (data) => {
expect(typeof data).toBe('string');
expect(Buffer.from(data, 'base64').toString()).toBe(completeData);
done();
});
stream.write(testDataPart1);
stream.end(testDataPart2);
});
it('collects object data', (done) => {
const stream = new collect.Collect({ objectMode: true })
.on('collect', (data) => {
expect(Array.isArray(data)).toBe(true);
expect(data).toEqual([1, 2, 3]);
done();
});
stream.write(1);
stream.write(2);
stream.end(3);
});
it('collects a big file', (done) => {
const file = path.resolve(__dirname, 'the-machine-stops.txt');
const fileContents = fs.readFileSync(
file,
{ encoding: 'utf8' },
);
const stream = new collect.Collect({ encoding: 'utf8' })
.on('collect', (data) => {
expect(data).toBe(fileContents);
done();
});
fs.createReadStream(file, { encoding: 'utf8' })
.pipe(stream);
});
it('can handle having two collect listeners', (done) => {
const stream = new collect.Collect()
.on('collect', (data) => {
// This one will be called first
expect(Buffer.isBuffer(data)).toBe(true);
expect(data.toString()).toBe(completeData);
})
.on('collect', (data) => {
// Then this one
expect(Buffer.isBuffer(data)).toBe(true);
expect(data.toString()).toBe(completeData);
done();
});
stream.write(testDataPart1);
stream.end(testDataPart2);
});
});
describe('#collect', () => {
it('returns a promise resolving to the data', () => {
const stream = new collect.Collect();
stream.write(testDataPart1);
stream.end(testDataPart2);
return stream.collect((data) => {
expect(Buffer.isBuffer(data)).toBe(true);
expect(data.toString()).toBe(completeData);
});
});
it('returns the same promise for subsequent calls', () => {
const stream = new collect.Collect();
stream.write(testDataPart1);
stream.end(testDataPart2);
expect(stream.collect()).toEqual(stream.collect());
});
it('rejects if the stream errors', () => {
const stream = new collect.Collect();
const error = new Error('foo');
stream.write('foobar');
const promise = stream.collect();
stream.emit('error', error);
return promise
.then(() => { throw new Error('Should not have been called'); })
.catch((e) => expect(e).toBe(error));
});
});
describe('#then (deprecated)', () => {
it('returns a promise resolving to the data', () => {
const stream = new collect.Collect();
stream.write(testDataPart1);
stream.end(testDataPart2);
return stream.then((data) => {
expect(Buffer.isBuffer(data)).toBe(true);
expect(data.toString()).toBe(completeData);
});
});
it('rejects if the stream errors', () => {
const stream = new collect.Collect();
const error = new Error('foo');
stream.write('foobar');
const promise = stream
.then(
() => { throw new Error('Should not have been called'); },
(e) => expect(e).toBe(error),
);
stream.emit('error', error);
return promise;
});
});
describe('#catch (deprecated)', () => {
it('rejects if the stream errors', () => {
const stream = new collect.Collect();
const error = new Error('foo');
stream.write('foobar');
const promise = stream
.catch((e) => expect(e).toBe(error));
stream.emit('error', error);
return promise;
});
});
});
describe('collect.PassThrough (deprecated)', () => {
it('creates a collect stream', () => {
expect(collect.PassThrough()).toBeInstanceOf(collect.Collect);
});
it('creates a collect stream when used with new', () => {
expect(new collect.PassThrough()).toBeInstanceOf(collect.Collect);
});
});
describe('collect.stream (deprecated)', () => {
it('creates a collect stream', () => {
expect(collect.stream()).toBeInstanceOf(collect.Collect);
});
});
describe('collect.CollectObjects', () => {
it('collects as an object stream', () => {
const stream = new collect.CollectObjects();
const ob1 = {};
const ob2 = {};
stream.write(ob1);
stream.end(ob2);
return stream.collect()
.then((data) => {
expect(data[0]).toBe(ob1);
expect(data[1]).toBe(ob2);
});
});
});
describe('collect.PassThroughObject (deprecated)', () => {
it('creates a collectobjects stream', () => {
expect(collect.PassThroughObject()).toBeInstanceOf(collect.CollectObjects);
});
it('creates a collect stream when used with new', () => {
expect(new collect.PassThroughObject()).toBeInstanceOf(collect.CollectObjects);
});
});
describe('collect.objectStream (deprecated)', () => {
it('creates a collectobjects stream', () => {
expect(collect.objectStream()).toBeInstanceOf(collect.CollectObjects);
});
});
describe('collect', () => {
it('collects using a callback', (done) => {
const stream = new PassThrough();
collect(stream, (error, data) => {
expect(Buffer.isBuffer(data)).toBe(true);
expect(data.toString()).toBe(completeData);
done();
});
stream.write(testDataPart1);
stream.end(testDataPart2);
});
it('collects using a specified encoding', (done) => {
const stream = new PassThrough();
collect(stream, 'hex', (error, data) => {
expect(typeof data).toBe('string');
expect(Buffer.from(data, 'hex').toString()).toBe(completeData);
done();
});
stream.write(testDataPart1);
stream.end(testDataPart2);
});
it('collects using a promise', () => {
const stream = new PassThrough();
const ret = collect(stream)
.then((data) => {
expect(Buffer.isBuffer(data)).toBe(true);
expect(data.toString()).toBe(completeData);
});
stream.write(testDataPart1);
stream.end(testDataPart2);
return ret;
});
it('collects object data', () => {
const stream = new PassThrough({ objectMode: true });
const ret = collect(stream);
stream.write(1);
stream.write(2);
stream.end(3);
return ret
.then((data) => {
expect(Array.isArray(data)).toBe(true);
expect(data).toEqual([1, 2, 3]);
});
});
});
describe('collect.addToStream', () => {
it('augments a stream with the collect event', (done) => {
const stream = new PassThrough();
expect(collect.addToStream(stream)).toEqual(stream);
stream
.on('collect', (data) => {
expect(data.toString()).toBe(completeData);
done();
});
stream.write(testDataPart1);
stream.end(testDataPart2);
});
});