std/streams/unstable_fixed_chunk_stream_test.ts
Asher Gomez 6011e6bcb0
BREAKING(streams/unstable): move fixed-chunk-stream module to unstable-fixed-chunk-stream (#5951)
BREAKING(streams/unstable): move `fixed-chunk-stream` to `unstable-fixed-chunk-stream`
2024-09-12 13:50:22 +09:00

19 lines
638 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assert, assertLessOrEqual } from "@std/assert";
import { FixedChunkStream } from "./unstable_fixed_chunk_stream.ts";
Deno.test("FixedChunkStream", async () => {
const size = 512;
const readable = ReadableStream.from(function* () {
for (let i = 0; i < 100; ++i) {
yield new Uint8Array(Math.random() * 1000);
}
}()).pipeThrough(new FixedChunkStream(size));
const result = await Array.fromAsync(readable);
assert(result.slice(0, -1).every((chunk) => chunk.length === size));
assertLessOrEqual(result.at(-1)!.length, size);
});