mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
feb6af7732
Fixes: #10334
69 lines
1.6 KiB
TypeScript
69 lines
1.6 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(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", method: "POST" }).body;
|
|
const r1 = new Request("http://foo/", {
|
|
body: stream,
|
|
method: "POST",
|
|
});
|
|
|
|
const r2 = r1.clone();
|
|
|
|
const b1 = await r1.text();
|
|
const b2 = await r2.text();
|
|
|
|
assertEquals(b1, b2);
|
|
});
|
|
|
|
unitTest(function customInspectFunction(): void {
|
|
const request = new Request("https://example.com");
|
|
assertEquals(
|
|
Deno.inspect(request),
|
|
`Request {
|
|
bodyUsed: false,
|
|
headers: Headers {},
|
|
method: "GET",
|
|
redirect: "follow",
|
|
url: "https://example.com/"
|
|
}`,
|
|
);
|
|
});
|