strom/tests/rate.spec.ts

91 lines
2.5 KiB
TypeScript
Raw Normal View History

2019-08-15 21:06:54 +00:00
import { Readable } from "stream";
import { performance } from "perf_hooks";
import test from "ava";
import { expect } from "chai";
import mhysa from "../src";
const { rate } = mhysa({ objectMode: true });
2019-08-15 21:06:54 +00:00
2019-09-26 13:53:15 +00:00
test.cb("rate() sends data at a rate of 150", t => {
t.plan(5);
const targetRate = 150;
const source = new Readable({ objectMode: true });
const expectedElements = ["a", "b", "c", "d", "e"];
2019-08-15 21:06:54 +00:00
const start = performance.now();
let i = 0;
2019-09-26 13:53:15 +00:00
source
.pipe(rate(targetRate))
2019-08-15 21:06:54 +00:00
.on("data", (element: string[]) => {
const currentRate = (i / (performance.now() - start)) * 1000;
expect(element).to.deep.equal(expectedElements[i]);
2019-09-26 13:53:15 +00:00
expect(currentRate).lessThan(targetRate);
2019-08-15 21:06:54 +00:00
t.pass();
i++;
})
2019-09-26 13:53:15 +00:00
.on("error", t.end)
.on("end", t.end);
source.push("a");
source.push("b");
source.push("c");
source.push("d");
source.push("e");
source.push(null);
});
test.cb("rate() sends data at a rate of 50", t => {
t.plan(5);
const targetRate = 50;
const source = new Readable({ objectMode: true });
const expectedElements = ["a", "b", "c", "d", "e"];
const start = performance.now();
let i = 0;
2019-08-15 21:06:54 +00:00
2019-09-26 13:53:15 +00:00
source
.pipe(rate(targetRate))
2019-08-15 21:06:54 +00:00
.on("data", (element: string[]) => {
2019-09-26 13:53:15 +00:00
const currentRate = (i / (performance.now() - start)) * 1000;
expect(element).to.deep.equal(expectedElements[i]);
expect(currentRate).lessThan(targetRate);
2019-08-15 21:06:54 +00:00
t.pass();
2019-09-26 13:53:15 +00:00
i++;
2019-08-15 21:06:54 +00:00
})
2019-09-26 13:53:15 +00:00
.on("error", t.end)
.on("end", t.end);
source.push("a");
source.push("b");
source.push("c");
source.push("d");
source.push("e");
source.push(null);
});
test.cb("rate() sends data at a rate of 1", t => {
t.plan(5);
const targetRate = 1;
const source = new Readable({ objectMode: true });
const expectedElements = ["a", "b", "c", "d", "e"];
const start = performance.now();
let i = 0;
2019-08-15 21:06:54 +00:00
2019-09-26 13:53:15 +00:00
source
.pipe(rate(targetRate))
2019-08-15 21:06:54 +00:00
.on("data", (element: string[]) => {
2019-09-26 13:53:15 +00:00
const currentRate = (i / (performance.now() - start)) * 1000;
expect(element).to.deep.equal(expectedElements[i]);
expect(currentRate).lessThan(targetRate);
2019-08-15 21:06:54 +00:00
t.pass();
2019-09-26 13:53:15 +00:00
i++;
2019-08-15 21:06:54 +00:00
})
.on("error", t.end)
.on("end", t.end);
2019-09-26 13:53:15 +00:00
source.push("a");
source.push("b");
source.push("c");
source.push("d");
source.push("e");
source.push(null);
2019-08-15 21:06:54 +00:00
});