0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/unit/request_test.ts

64 lines
1.7 KiB
TypeScript

// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assertEquals, unitTest } from "./test_util.ts";
unitTest(async function fromInit(): Promise<void> {
const req = new Request("http://foo/", {
body: "ahoyhoy",
method: "POST",
headers: {
"test-header": "value",
},
});
assertEquals("ahoyhoy", await req.text());
assertEquals(req.url, "http://foo/");
assertEquals(req.headers.get("test-header"), "value");
});
unitTest(async function fromRequest(): Promise<void> {
const r = new Request("http://foo/", { body: "ahoyhoy" });
r.headers.set("test-header", "value");
const req = new Request(r);
assertEquals(await r.text(), await req.text());
assertEquals(req.url, r.url);
assertEquals(req.headers.get("test-header"), r.headers.get("test-header"));
});
unitTest(function requestNonString(): void {
const nonString = {
toString() {
return "http://foo/";
},
};
// deno-lint-ignore ban-ts-comment
// @ts-expect-error
assertEquals(new Request(nonString).url, "http://foo/");
});
unitTest(function methodNonString(): void {
assertEquals(new Request("http://foo/", { method: undefined }).method, "GET");
});
unitTest(function requestRelativeUrl(): void {
assertEquals(
new Request("relative-url").url,
"http://js-unit-tests/foo/relative-url",
);
});
unitTest(async function cloneRequestBodyStream(): Promise<void> {
// hack to get a stream
const stream = new Request("http://foo/", { body: "a test body" }).body;
const r1 = new Request("http://foo/", {
body: stream,
});
const r2 = r1.clone();
const b1 = await r1.text();
const b2 = await r2.text();
assertEquals(b1, b2);
});