mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
9ff5dafa7d
* BREAKING(encoding/unstable): move `base64url-stream` module to `unstable-base64url-stream` * fix
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { assertEquals } from "@std/assert";
|
|
import { encodeBase64Url } from "./base64url.ts";
|
|
import {
|
|
Base64UrlDecoderStream,
|
|
Base64UrlEncoderStream,
|
|
} from "./unstable_base64url_stream.ts";
|
|
import { RandomSliceStream } from "./_random_slice_stream.ts";
|
|
import { toText } from "@std/streams/to-text";
|
|
import { concat } from "@std/bytes/concat";
|
|
|
|
Deno.test("Base64UrlEncoderStream() encodes stream", async () => {
|
|
const stream = (await Deno.open("./deno.lock"))
|
|
.readable
|
|
.pipeThrough(new RandomSliceStream())
|
|
.pipeThrough(new Base64UrlEncoderStream());
|
|
|
|
assertEquals(
|
|
await toText(stream),
|
|
encodeBase64Url(await Deno.readFile("./deno.lock")),
|
|
);
|
|
});
|
|
|
|
Deno.test("Base64UrlDecoderStream() decodes stream", async () => {
|
|
const stream = (await Deno.open("./deno.lock"))
|
|
.readable
|
|
.pipeThrough(new Base64UrlEncoderStream())
|
|
.pipeThrough(new RandomSliceStream())
|
|
.pipeThrough(new Base64UrlDecoderStream());
|
|
|
|
assertEquals(
|
|
concat(await Array.fromAsync(stream)),
|
|
await Deno.readFile("./deno.lock"),
|
|
);
|
|
});
|