2019-08-21 19:40:19 +00:00
|
|
|
const test = require("ava");
|
2019-08-22 18:52:39 +00:00
|
|
|
const { expect } = require("chai");
|
2019-09-07 15:04:33 +00:00
|
|
|
const { sleep } = require("../src/helpers");
|
2019-12-02 21:02:40 +00:00
|
|
|
import mhysa from "../src";
|
2019-09-07 15:04:33 +00:00
|
|
|
import { performance } from "perf_hooks";
|
2019-12-02 21:02:40 +00:00
|
|
|
const { compose, map } = mhysa({ objectMode: true });
|
2019-08-21 19:40:19 +00:00
|
|
|
|
2019-08-22 18:52:39 +00:00
|
|
|
test.cb("compose() chains two streams together in the correct order", t => {
|
|
|
|
t.plan(3);
|
2019-09-09 12:58:04 +00:00
|
|
|
interface Chunk {
|
|
|
|
visited: number[];
|
|
|
|
key: string;
|
|
|
|
}
|
|
|
|
|
2019-08-22 18:52:39 +00:00
|
|
|
let i = 0;
|
2019-09-09 12:58:04 +00:00
|
|
|
const first = map((chunk: Chunk) => {
|
|
|
|
chunk.visited.push(1);
|
|
|
|
return chunk;
|
|
|
|
});
|
|
|
|
const second = map((chunk: Chunk) => {
|
|
|
|
chunk.visited.push(2);
|
|
|
|
return chunk;
|
|
|
|
});
|
2019-08-21 19:40:19 +00:00
|
|
|
|
|
|
|
const composed = compose(
|
|
|
|
[first, second],
|
|
|
|
{ objectMode: true },
|
|
|
|
);
|
2019-08-22 16:07:30 +00:00
|
|
|
|
|
|
|
composed.on("data", data => {
|
2019-09-09 12:58:04 +00:00
|
|
|
expect(data).to.deep.equal(result[i]);
|
2019-08-22 18:52:39 +00:00
|
|
|
t.pass();
|
|
|
|
i++;
|
|
|
|
if (i === 3) {
|
|
|
|
t.end();
|
|
|
|
}
|
2019-08-22 16:07:30 +00:00
|
|
|
});
|
2019-08-22 18:52:39 +00:00
|
|
|
composed.on("error", err => {
|
|
|
|
t.end(err);
|
2019-08-22 16:07:30 +00:00
|
|
|
});
|
2019-08-22 18:52:39 +00:00
|
|
|
composed.on("end", () => {
|
|
|
|
t.end();
|
2019-08-22 16:07:30 +00:00
|
|
|
});
|
2019-08-21 19:40:19 +00:00
|
|
|
|
2019-09-09 12:58:04 +00:00
|
|
|
const input = [
|
|
|
|
{ key: "a", visited: [] },
|
|
|
|
{ key: "b", visited: [] },
|
|
|
|
{ key: "c", visited: [] },
|
|
|
|
];
|
|
|
|
const result = [
|
|
|
|
{ key: "a", visited: [1, 2] },
|
|
|
|
{ key: "b", visited: [1, 2] },
|
|
|
|
{ key: "c", visited: [1, 2] },
|
|
|
|
];
|
2019-08-22 18:52:39 +00:00
|
|
|
|
|
|
|
input.forEach(item => composed.write(item));
|
2019-08-22 16:07:30 +00:00
|
|
|
});
|
|
|
|
|
2019-09-09 12:58:04 +00:00
|
|
|
test.cb("piping compose() maintains correct order", t => {
|
|
|
|
t.plan(3);
|
|
|
|
interface Chunk {
|
|
|
|
visited: number[];
|
|
|
|
key: string;
|
|
|
|
}
|
|
|
|
let i = 0;
|
|
|
|
const first = map((chunk: Chunk) => {
|
|
|
|
chunk.visited.push(1);
|
|
|
|
return chunk;
|
|
|
|
});
|
|
|
|
const second = map((chunk: Chunk) => {
|
|
|
|
chunk.visited.push(2);
|
|
|
|
return chunk;
|
|
|
|
});
|
|
|
|
|
|
|
|
const composed = compose(
|
|
|
|
[first, second],
|
|
|
|
{ objectMode: true },
|
|
|
|
);
|
|
|
|
const third = map((chunk: Chunk) => {
|
|
|
|
chunk.visited.push(3);
|
|
|
|
return chunk;
|
|
|
|
});
|
|
|
|
|
|
|
|
composed.pipe(third).on("data", data => {
|
|
|
|
expect(data).to.deep.equal(result[i]);
|
|
|
|
t.pass();
|
|
|
|
i++;
|
|
|
|
if (i === 3) {
|
|
|
|
t.end();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
composed.on("error", err => {
|
|
|
|
t.end(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
const input = [
|
|
|
|
{ key: "a", visited: [] },
|
|
|
|
{ key: "b", visited: [] },
|
|
|
|
{ key: "c", visited: [] },
|
|
|
|
];
|
|
|
|
const result = [
|
|
|
|
{ key: "a", visited: [1, 2, 3] },
|
|
|
|
{ key: "b", visited: [1, 2, 3] },
|
|
|
|
{ key: "c", visited: [1, 2, 3] },
|
|
|
|
];
|
|
|
|
|
|
|
|
input.forEach(item => composed.write(item));
|
|
|
|
});
|
|
|
|
|
|
|
|
test("compose() writable length should be less than highWaterMark when handing writes", async t => {
|
|
|
|
t.plan(7);
|
|
|
|
return new Promise(async (resolve, reject) => {
|
|
|
|
interface Chunk {
|
|
|
|
key: string;
|
|
|
|
mapped: number[];
|
|
|
|
}
|
|
|
|
const first = map(
|
|
|
|
async (chunk: Chunk) => {
|
|
|
|
chunk.mapped.push(1);
|
|
|
|
return chunk;
|
|
|
|
},
|
|
|
|
{
|
|
|
|
objectMode: true,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
const second = map(
|
|
|
|
async (chunk: Chunk) => {
|
|
|
|
chunk.mapped.push(2);
|
|
|
|
return chunk;
|
|
|
|
},
|
|
|
|
{ objectMode: true },
|
|
|
|
);
|
2019-08-21 19:40:19 +00:00
|
|
|
|
2019-08-22 18:52:39 +00:00
|
|
|
const composed = compose(
|
|
|
|
[first, second],
|
2019-09-09 12:58:04 +00:00
|
|
|
{ objectMode: true, highWaterMark: 2 },
|
2019-08-22 18:52:39 +00:00
|
|
|
);
|
2019-09-09 12:58:04 +00:00
|
|
|
composed.on("error", err => {
|
|
|
|
reject();
|
|
|
|
});
|
|
|
|
|
|
|
|
composed.on("drain", () => {
|
2019-08-22 18:52:39 +00:00
|
|
|
t.pass();
|
2019-09-09 12:58:04 +00:00
|
|
|
expect(composed._writableState.length).to.be.equal(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
composed.on("data", (chunk: Chunk) => {
|
|
|
|
if (chunk.key === "e") {
|
|
|
|
resolve();
|
2019-08-22 18:52:39 +00:00
|
|
|
}
|
|
|
|
});
|
2019-08-22 16:07:30 +00:00
|
|
|
|
2019-09-09 12:58:04 +00:00
|
|
|
const input = [
|
|
|
|
{ key: "a", mapped: [] },
|
|
|
|
{ key: "b", mapped: [] },
|
|
|
|
{ key: "c", mapped: [] },
|
|
|
|
{ key: "d", mapped: [] },
|
|
|
|
{ key: "e", mapped: [] },
|
|
|
|
];
|
|
|
|
|
|
|
|
for (const item of input) {
|
|
|
|
const res = composed.write(item);
|
|
|
|
expect(composed._writableState.length).to.be.at.most(2);
|
|
|
|
t.pass();
|
|
|
|
if (!res) {
|
|
|
|
await sleep(10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test("compose() should emit drain event ~rate * highWaterMark ms for every write that causes backpressure", async t => {
|
|
|
|
t.plan(7);
|
2019-09-26 14:36:36 +00:00
|
|
|
const _rate = 100;
|
|
|
|
const highWaterMark = 2;
|
2019-09-09 12:58:04 +00:00
|
|
|
return new Promise(async (resolve, reject) => {
|
|
|
|
interface Chunk {
|
|
|
|
key: string;
|
|
|
|
mapped: number[];
|
|
|
|
}
|
|
|
|
const first = map(
|
|
|
|
async (chunk: Chunk) => {
|
|
|
|
await sleep(_rate);
|
|
|
|
chunk.mapped.push(1);
|
|
|
|
return chunk;
|
|
|
|
},
|
|
|
|
{
|
|
|
|
objectMode: true,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
const second = map(
|
|
|
|
async (chunk: Chunk) => {
|
|
|
|
chunk.mapped.push(2);
|
|
|
|
return chunk;
|
|
|
|
},
|
|
|
|
{ objectMode: true },
|
|
|
|
);
|
|
|
|
|
|
|
|
const composed = compose(
|
|
|
|
[first, second],
|
2019-09-26 14:36:36 +00:00
|
|
|
{ objectMode: true, highWaterMark },
|
2019-09-09 12:58:04 +00:00
|
|
|
);
|
2019-08-22 18:52:39 +00:00
|
|
|
composed.on("error", err => {
|
2019-09-09 12:58:04 +00:00
|
|
|
reject();
|
2019-08-22 18:52:39 +00:00
|
|
|
});
|
|
|
|
|
2019-09-09 12:58:04 +00:00
|
|
|
composed.on("drain", () => {
|
|
|
|
t.pass();
|
|
|
|
expect(composed._writableState.length).to.be.equal(0);
|
2019-09-26 14:36:36 +00:00
|
|
|
expect(performance.now() - start).to.be.closeTo(
|
|
|
|
_rate * highWaterMark,
|
2019-12-02 21:02:40 +00:00
|
|
|
40,
|
2019-09-26 14:36:36 +00:00
|
|
|
);
|
2019-09-09 12:58:04 +00:00
|
|
|
});
|
2019-08-22 18:52:39 +00:00
|
|
|
|
2019-09-09 12:58:04 +00:00
|
|
|
composed.on("data", (chunk: Chunk) => {
|
2019-09-09 19:54:29 +00:00
|
|
|
pendingReads--;
|
|
|
|
if (pendingReads === 0) {
|
2019-09-09 12:58:04 +00:00
|
|
|
resolve();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const input = [
|
|
|
|
{ key: "a", mapped: [] },
|
2019-09-26 14:36:36 +00:00
|
|
|
{ key: "b", mapped: [] },
|
|
|
|
{ key: "c", mapped: [] },
|
|
|
|
{ key: "d", mapped: [] },
|
|
|
|
{ key: "e", mapped: [] },
|
2019-09-09 12:58:04 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
let start = performance.now();
|
2019-09-09 19:54:29 +00:00
|
|
|
let pendingReads = input.length;
|
2019-09-26 14:36:36 +00:00
|
|
|
start = performance.now();
|
2019-09-09 12:58:04 +00:00
|
|
|
for (const item of input) {
|
|
|
|
const res = composed.write(item);
|
2019-09-26 14:36:36 +00:00
|
|
|
expect(composed._writableState.length).to.be.at.most(highWaterMark);
|
2019-09-09 12:58:04 +00:00
|
|
|
t.pass();
|
|
|
|
if (!res) {
|
2019-09-26 14:36:36 +00:00
|
|
|
await sleep(_rate * highWaterMark * 2);
|
2019-09-09 12:58:04 +00:00
|
|
|
start = performance.now();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2019-09-07 15:04:33 +00:00
|
|
|
|
|
|
|
test.cb(
|
2019-09-09 12:58:04 +00:00
|
|
|
"compose() should emit drain event after 500 ms when writing 5 items that take 100ms to process with a highWaterMark of 5 ",
|
2019-09-07 15:04:33 +00:00
|
|
|
t => {
|
2019-09-07 18:27:55 +00:00
|
|
|
t.plan(6);
|
2019-09-09 12:58:04 +00:00
|
|
|
const _rate = 100;
|
2019-09-07 18:27:55 +00:00
|
|
|
interface Chunk {
|
2019-09-09 12:58:04 +00:00
|
|
|
key: string;
|
|
|
|
mapped: number[];
|
2019-09-07 18:27:55 +00:00
|
|
|
}
|
2019-09-07 15:04:33 +00:00
|
|
|
const first = map(
|
2019-09-07 18:27:55 +00:00
|
|
|
async (chunk: Chunk) => {
|
2019-09-09 12:58:04 +00:00
|
|
|
await sleep(_rate);
|
|
|
|
chunk.mapped.push(1);
|
2019-09-07 15:04:33 +00:00
|
|
|
return chunk;
|
|
|
|
},
|
|
|
|
{
|
|
|
|
objectMode: true,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
const second = map(
|
2019-09-07 18:27:55 +00:00
|
|
|
async (chunk: Chunk) => {
|
2019-09-09 12:58:04 +00:00
|
|
|
chunk.mapped.push(2);
|
2019-09-07 15:04:33 +00:00
|
|
|
return chunk;
|
|
|
|
},
|
|
|
|
{ objectMode: true },
|
|
|
|
);
|
|
|
|
|
|
|
|
const composed = compose(
|
|
|
|
[first, second],
|
2019-09-07 21:14:08 +00:00
|
|
|
{ objectMode: true, highWaterMark: 5 },
|
2019-09-07 15:04:33 +00:00
|
|
|
);
|
2019-09-10 16:09:26 +00:00
|
|
|
|
2019-09-07 15:04:33 +00:00
|
|
|
composed.on("error", err => {
|
|
|
|
t.end(err);
|
|
|
|
});
|
|
|
|
|
2019-09-09 12:58:04 +00:00
|
|
|
composed.on("drain", () => {
|
2019-09-07 21:14:08 +00:00
|
|
|
expect(composed._writableState.length).to.be.equal(0);
|
2019-09-26 14:36:36 +00:00
|
|
|
expect(performance.now() - start).to.be.closeTo(
|
2019-09-09 12:58:04 +00:00
|
|
|
_rate * input.length,
|
2019-12-02 21:02:40 +00:00
|
|
|
50,
|
2019-09-09 12:58:04 +00:00
|
|
|
);
|
2019-09-07 15:04:33 +00:00
|
|
|
t.pass();
|
|
|
|
});
|
|
|
|
|
2019-09-07 18:27:55 +00:00
|
|
|
composed.on("data", (chunk: Chunk) => {
|
|
|
|
t.pass();
|
2019-09-09 12:58:04 +00:00
|
|
|
if (chunk.key === "e") {
|
2019-09-07 15:04:33 +00:00
|
|
|
t.end();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const input = [
|
2019-09-09 12:58:04 +00:00
|
|
|
{ key: "a", mapped: [] },
|
|
|
|
{ key: "b", mapped: [] },
|
|
|
|
{ key: "c", mapped: [] },
|
|
|
|
{ key: "d", mapped: [] },
|
|
|
|
{ key: "e", mapped: [] },
|
2019-09-07 15:04:33 +00:00
|
|
|
];
|
|
|
|
input.forEach(item => {
|
|
|
|
composed.write(item);
|
|
|
|
});
|
|
|
|
const start = performance.now();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
test.cb(
|
|
|
|
"compose() should emit drain event immediately when second stream is bottleneck",
|
|
|
|
t => {
|
2019-09-07 18:27:55 +00:00
|
|
|
t.plan(6);
|
2019-09-10 16:09:26 +00:00
|
|
|
const _rate = 200;
|
2019-09-07 18:27:55 +00:00
|
|
|
interface Chunk {
|
2019-09-09 15:53:21 +00:00
|
|
|
key: string;
|
|
|
|
mapped: number[];
|
2019-09-07 18:27:55 +00:00
|
|
|
}
|
2019-09-07 15:04:33 +00:00
|
|
|
const first = map(
|
2019-09-10 16:09:26 +00:00
|
|
|
(chunk: Chunk) => {
|
2019-09-09 15:53:21 +00:00
|
|
|
chunk.mapped.push(1);
|
2019-09-07 15:04:33 +00:00
|
|
|
return chunk;
|
|
|
|
},
|
|
|
|
{
|
|
|
|
objectMode: true,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
const second = map(
|
2019-09-07 18:27:55 +00:00
|
|
|
async (chunk: Chunk) => {
|
2019-09-07 21:14:08 +00:00
|
|
|
pendingReads--;
|
2019-09-10 16:09:26 +00:00
|
|
|
await sleep(_rate);
|
2019-09-09 15:53:21 +00:00
|
|
|
expect(second._writableState.length).to.be.equal(1);
|
2019-09-07 21:14:08 +00:00
|
|
|
expect(first._readableState.length).to.equal(pendingReads);
|
2019-09-09 15:53:21 +00:00
|
|
|
chunk.mapped.push(2);
|
2019-09-07 15:04:33 +00:00
|
|
|
return chunk;
|
|
|
|
},
|
2019-09-07 21:14:08 +00:00
|
|
|
{ objectMode: true, highWaterMark: 1 },
|
2019-09-07 15:04:33 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
const composed = compose(
|
|
|
|
[first, second],
|
2019-09-07 21:14:08 +00:00
|
|
|
{ objectMode: true, highWaterMark: 5 },
|
2019-09-07 15:04:33 +00:00
|
|
|
);
|
|
|
|
composed.on("error", err => {
|
|
|
|
t.end(err);
|
|
|
|
});
|
|
|
|
|
2019-09-09 12:58:04 +00:00
|
|
|
composed.on("drain", () => {
|
2019-09-07 21:14:08 +00:00
|
|
|
expect(composed._writableState.length).to.be.equal(0);
|
2019-09-10 16:09:26 +00:00
|
|
|
expect(performance.now() - start).to.be.lessThan(_rate);
|
2019-09-07 15:04:33 +00:00
|
|
|
t.pass();
|
|
|
|
});
|
|
|
|
|
2019-09-07 18:27:55 +00:00
|
|
|
composed.on("data", (chunk: Chunk) => {
|
2019-09-07 21:14:08 +00:00
|
|
|
expect(composed._writableState.length).to.be.equal(0);
|
2019-09-07 18:27:55 +00:00
|
|
|
t.pass();
|
2019-09-09 15:53:21 +00:00
|
|
|
if (chunk.key === "e") {
|
2019-09-07 15:04:33 +00:00
|
|
|
t.end();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const input = [
|
2019-09-09 15:53:21 +00:00
|
|
|
{ key: "a", mapped: [] },
|
|
|
|
{ key: "b", mapped: [] },
|
|
|
|
{ key: "c", mapped: [] },
|
|
|
|
{ key: "d", mapped: [] },
|
|
|
|
{ key: "e", mapped: [] },
|
2019-09-07 15:04:33 +00:00
|
|
|
];
|
2019-09-07 21:14:08 +00:00
|
|
|
let pendingReads = input.length;
|
2019-09-07 15:04:33 +00:00
|
|
|
|
|
|
|
input.forEach(item => {
|
|
|
|
composed.write(item);
|
|
|
|
});
|
2019-09-10 16:09:26 +00:00
|
|
|
|
2019-09-07 15:04:33 +00:00
|
|
|
const start = performance.now();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
test.cb(
|
2019-09-07 18:27:55 +00:00
|
|
|
"compose() should emit drain event and first should contain up to highWaterMark items in readable state when second is bottleneck",
|
2019-09-07 15:04:33 +00:00
|
|
|
t => {
|
2019-09-07 18:27:55 +00:00
|
|
|
t.plan(6);
|
|
|
|
interface Chunk {
|
|
|
|
index: number;
|
|
|
|
mapped: string[];
|
|
|
|
}
|
2019-09-07 15:04:33 +00:00
|
|
|
const first = map(
|
2019-09-07 18:27:55 +00:00
|
|
|
async (chunk: Chunk) => {
|
2019-09-07 15:04:33 +00:00
|
|
|
expect(first._readableState.length).to.be.at.most(2);
|
2019-09-07 18:27:55 +00:00
|
|
|
chunk.mapped.push("first");
|
2019-09-07 15:04:33 +00:00
|
|
|
return chunk;
|
|
|
|
},
|
|
|
|
{
|
|
|
|
objectMode: true,
|
|
|
|
highWaterMark: 2,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
const second = map(
|
2019-09-07 18:27:55 +00:00
|
|
|
async (chunk: Chunk) => {
|
2019-09-07 15:04:33 +00:00
|
|
|
expect(second._writableState.length).to.be.equal(1);
|
|
|
|
await sleep(100);
|
2019-09-07 18:27:55 +00:00
|
|
|
chunk.mapped.push("second");
|
2019-09-07 15:04:33 +00:00
|
|
|
return chunk;
|
|
|
|
},
|
|
|
|
{ objectMode: true, highWaterMark: 2 },
|
|
|
|
);
|
|
|
|
|
|
|
|
const composed = compose(
|
|
|
|
[first, second],
|
2019-09-07 21:14:08 +00:00
|
|
|
{ objectMode: true, highWaterMark: 5 },
|
2019-09-07 15:04:33 +00:00
|
|
|
);
|
|
|
|
composed.on("error", err => {
|
|
|
|
t.end(err);
|
|
|
|
});
|
|
|
|
|
2019-09-07 18:27:55 +00:00
|
|
|
composed.on("data", (chunk: Chunk) => {
|
|
|
|
expect(chunk.mapped.length).to.equal(2);
|
|
|
|
expect(chunk.mapped).to.deep.equal(["first", "second"]);
|
|
|
|
t.pass();
|
|
|
|
if (chunk.index === 5) {
|
2019-09-07 15:04:33 +00:00
|
|
|
t.end();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-09-07 18:27:55 +00:00
|
|
|
composed.on("drain", () => {
|
2019-09-07 21:14:08 +00:00
|
|
|
expect(composed._writableState.length).to.be.equal(0);
|
2019-09-07 18:27:55 +00:00
|
|
|
t.pass();
|
|
|
|
});
|
|
|
|
|
2019-09-07 15:04:33 +00:00
|
|
|
const input = [
|
2019-09-07 18:27:55 +00:00
|
|
|
{ index: 1, mapped: [] },
|
|
|
|
{ index: 2, mapped: [] },
|
|
|
|
{ index: 3, mapped: [] },
|
|
|
|
{ index: 4, mapped: [] },
|
|
|
|
{ index: 5, mapped: [] },
|
2019-09-07 15:04:33 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
input.forEach(item => {
|
|
|
|
composed.write(item);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
2019-09-09 12:58:04 +00:00
|
|
|
|
|
|
|
test.cb(
|
|
|
|
"compose() should not emit drain event writing 5 items to compose with a highWaterMark of 6",
|
|
|
|
t => {
|
|
|
|
t.plan(5);
|
|
|
|
const _rate = 100;
|
|
|
|
interface Chunk {
|
|
|
|
key: string;
|
|
|
|
mapped: number[];
|
|
|
|
}
|
|
|
|
const first = map(
|
|
|
|
async (chunk: Chunk) => {
|
|
|
|
await sleep(_rate);
|
|
|
|
chunk.mapped.push(1);
|
|
|
|
return chunk;
|
|
|
|
},
|
|
|
|
{
|
|
|
|
objectMode: true,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
const second = map(
|
|
|
|
async (chunk: Chunk) => {
|
|
|
|
chunk.mapped.push(2);
|
|
|
|
return chunk;
|
|
|
|
},
|
|
|
|
{ objectMode: true },
|
|
|
|
);
|
|
|
|
|
|
|
|
const composed = compose(
|
|
|
|
[first, second],
|
|
|
|
{ objectMode: true, highWaterMark: 6 },
|
|
|
|
);
|
|
|
|
|
|
|
|
composed.on("error", err => {
|
|
|
|
t.end(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
composed.on("drain", () => {
|
|
|
|
t.end(new Error("Drain should not be emitted"));
|
|
|
|
});
|
|
|
|
|
|
|
|
composed.on("data", (chunk: Chunk) => {
|
|
|
|
t.pass();
|
|
|
|
if (chunk.key === "e") {
|
|
|
|
t.end();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const input = [
|
|
|
|
{ key: "a", mapped: [] },
|
|
|
|
{ key: "b", mapped: [] },
|
|
|
|
{ key: "c", mapped: [] },
|
|
|
|
{ key: "d", mapped: [] },
|
|
|
|
{ key: "e", mapped: [] },
|
|
|
|
];
|
|
|
|
|
|
|
|
input.forEach(item => {
|
|
|
|
composed.write(item);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|