forked from denoland/std
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_test_utils.ts
31 lines (29 loc) · 1 KB
/
_test_utils.ts
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
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertEquals, assertRejects } from "@std/assert";
import type { ConcatenatedJsonParseStream } from "./concatenated_json_parse_stream.ts";
import type { JsonParseStream } from "./parse_stream.ts";
export async function assertValidParse(
transform: typeof ConcatenatedJsonParseStream | typeof JsonParseStream,
chunks: string[],
expect: unknown[],
) {
const r = ReadableStream.from(chunks)
.pipeThrough(new transform());
const res = await Array.fromAsync(r);
assertEquals(res, expect);
}
export async function assertInvalidParse(
transform: typeof ConcatenatedJsonParseStream | typeof JsonParseStream,
chunks: string[],
// deno-lint-ignore no-explicit-any
ErrorClass: new (...args: any[]) => Error,
msgIncludes: string | undefined,
) {
const r = ReadableStream.from(chunks)
.pipeThrough(new transform());
await assertRejects(
async () => await Array.fromAsync(r),
ErrorClass,
msgIncludes,
);
}