diff options
author | Sanskar Gauchan <62867497+Sanskar531@users.noreply.github.com> | 2023-03-19 21:49:11 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-19 19:49:11 +0900 |
commit | 3b1cb8af69b0acf55c485ae3721bdb4d9322798e (patch) | |
tree | 5bd00e2b699dca0266e6d4b67a95671822319f3d /cli/tests | |
parent | 472c06b92ebec396559a494502c9438678a49cac (diff) |
test(ext/node): add querystring_test.ts and readline_test.ts (#18256)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/unit_node/querystring_test.ts | 30 | ||||
-rw-r--r-- | cli/tests/unit_node/readline_test.ts | 14 |
2 files changed, 44 insertions, 0 deletions
diff --git a/cli/tests/unit_node/querystring_test.ts b/cli/tests/unit_node/querystring_test.ts new file mode 100644 index 000000000..0b3b22d62 --- /dev/null +++ b/cli/tests/unit_node/querystring_test.ts @@ -0,0 +1,30 @@ +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +import { assertEquals } from "../../../test_util/std/testing/asserts.ts"; +import { parse, stringify } from "node:querystring"; + +Deno.test({ + name: "stringify", + fn() { + assertEquals( + stringify({ + a: "hello", + b: 5, + c: true, + d: ["foo", "bar"], + }), + "a=hello&b=5&c=true&d=foo&d=bar", + ); + }, +}); + +Deno.test({ + name: "parse", + fn() { + assertEquals(parse("a=hello&b=5&c=true&d=foo&d=bar"), { + a: "hello", + b: "5", + c: "true", + d: ["foo", "bar"], + }); + }, +}); diff --git a/cli/tests/unit_node/readline_test.ts b/cli/tests/unit_node/readline_test.ts new file mode 100644 index 000000000..bef9008dd --- /dev/null +++ b/cli/tests/unit_node/readline_test.ts @@ -0,0 +1,14 @@ +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +import { createInterface, Interface } from "node:readline"; +import { assertInstanceOf } from "../../../test_util/std/testing/asserts.ts"; +import { Readable, Writable } from "node:stream"; + +Deno.test("[node/readline] createInstance", () => { + const rl = createInterface({ + input: new Readable({ read() {} }), + output: new Writable(), + }); + + // deno-lint-ignore no-explicit-any + assertInstanceOf(rl, Interface as any); +}); |