index.js
5.39 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
"use strict";
var test = require("tape").test
var spy = require("../")
var spigot = require("stream-spigot")
var concat = require("terminus").concat
test("ctor", function (t) {
t.plan(2)
var count = 0
var Spy = spy.ctor(function () {
count++
})
var input = [
{foo: "bar"},
{foo: "baz"},
{foo: "bif"},
{foo: "blah"},
{foo: "buzz"},
]
// Input gets consumed, so make a copy for comparison.
var copy = input.slice(0)
function combine(records) {
t.equals(count, 5, "Spied the right number of chunks")
t.deepEquals(copy, records, "Content unchanged")
}
spigot({objectMode: true}, input)
.pipe(new Spy({objectMode: true}))
.pipe(concat({objectMode: true}, combine))
})
test("objCtor", function (t) {
t.plan(2)
var count = 0
var Spy = spy.objCtor(function () {
count++
})
var input = [
{foo: "bar"},
{foo: "baz"},
{foo: "bif"},
{foo: "blah"},
{foo: "buzz"},
]
// Input gets consumed, so make a copy for comparison.
var copy = input.slice(0)
function combine(records) {
t.equals(count, 5, "Spied the right number of chunks")
t.deepEquals(copy, records, "Content unchanged")
}
spigot({objectMode: true}, input)
.pipe(new Spy())
.pipe(concat({objectMode: true}, combine))
})
test("ctor options", function (t) {
t.plan(2)
var count = 0
var Spy = spy.ctor({objectMode: true}, function () {
count++
})
var input = [
{foo: "bar"},
{foo: "baz"},
{foo: "bif"},
{foo: "blah"},
{foo: "buzz"},
]
// Input gets consumed, so make a copy for comparison.
var copy = input.slice(0)
function combine(records) {
t.equals(count, 5, "Spied the right number of chunks")
t.deepEquals(copy, records, "Content unchanged")
}
spigot({objectMode: true}, input)
.pipe(new Spy())
.pipe(concat({objectMode: true}, combine))
})
test("ctor buffer wantStrings index", function (t) {
t.plan(2)
var seen = false
var Spy = spy.ctor({wantStrings: true}, function (chunk, index) {
if (chunk == "e") seen = true
})
function combine(result) {
t.ok(seen, "Saw an e")
t.equals(result.toString(), "abcdef", "result is correct")
}
spigot([
"a",
"b",
"c",
"d",
"e",
"f",
]).pipe(new Spy())
.pipe(concat(combine))
})
test("simple", function (t) {
t.plan(2)
var count = 0
var s = spy({objectMode: true}, function () {
count++
})
var input = [
{foo: "bar"},
{foo: "baz"},
{foo: "bif"},
{foo: "blah"},
{foo: "buzz"},
]
// Input gets consumed, so make a copy for comparison.
var copy = input.slice(0)
function combine(records) {
t.equals(count, 5, "Spied the right number of chunks")
t.deepEquals(copy, records, "Content unchanged")
}
spigot({objectMode: true}, input)
.pipe(s)
.pipe(concat({objectMode: true}, combine))
})
test("return non-error", function (t) {
t.plan(2)
// Non-error return is ignored.
var count = 0
var s = spy({objectMode: true}, function () {
if (++count > 2) return "WUT"
})
var input = [
{foo: "bar"},
{foo: "baz"},
{foo: "bif"},
{foo: "blah"},
{foo: "buzz"},
]
// Input gets consumed, so make a copy for comparison.
var copy = input.slice(0)
function combine(records) {
t.equals(count, 5, "Spied the right number of chunks")
t.deepEquals(copy, records, "Content unchanged")
}
spigot({objectMode: true}, input)
.pipe(s)
.pipe(concat({objectMode: true}, combine))
})
test("return non-error obj", function (t) {
t.plan(2)
// Non-error return is ignored.
var count = 0
var s = spy.obj(function () {
if (++count > 2) return "WUT"
})
var input = [
{foo: "bar"},
{foo: "baz"},
{foo: "bif"},
{foo: "blah"},
{foo: "buzz"},
]
// Input gets consumed, so make a copy for comparison.
var copy = input.slice(0)
function combine(records) {
t.equals(count, 5, "Spied the right number of chunks")
t.deepEquals(copy, records, "Content unchanged")
}
spigot({objectMode: true}, input)
.pipe(s)
.pipe(concat({objectMode: true}, combine))
})
test("abort", function (t) {
t.plan(2)
var count = 0
var s = spy(function () {
if (++count > 2) return new Error("Aborting")
})
s.on("error", function (e) {
t.ok(e, "Caught the error")
t.equals(count, 3, "Saw 3 records first")
})
spigot([
"a",
"b",
"cdefghijk",
"lmnopqrst",
"u",
"vwxyz",
]).pipe(s)
})
test("size abort options", function (t) {
t.plan(1)
var s = spy({maxBytes: 10, bytes: 0}, function (chunk) {
this.options.bytes += chunk.length
if (this.options.bytes >= this.options.maxBytes)
return new Error("Aborting -- max size")
})
s.on("error", function (e) {
t.ok(e, "Caught the error")
})
function combine(data) {
t.fail("Stream was aborted, should not see this.")
}
spigot([
"a",
"b",
"cdefghijk",
"lmnopqrst",
"u",
"vwxyz",
]).pipe(s)
.pipe(concat(combine))
})
test("emit in spy", function (t) {
t.plan(7)
var s = spy({maxBytes: 10, bytes: 0}, function (chunk) {
this.emit("progress", "hi")
})
s.on("progress", function (msg) {
t.ok(msg, "Saw progress")
})
function combine(data) {
t.equals(data.toString(), "abcdefghijklmnopqrstuvwxyz", "stream unmodified")
}
spigot([
"a",
"b",
"cdefghijk",
"lmnopqrst",
"u",
"vwxyz",
]).pipe(s)
.pipe(concat(combine))
})