2021-01-11 12:13:41 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-01-28 15:37:21 -05:00
|
|
|
import { assertEquals, unitTest } from "./test_util.ts";
|
2019-05-01 23:56:42 -04:00
|
|
|
|
2021-01-28 15:37:21 -05:00
|
|
|
unitTest(async function fromInit(): Promise<void> {
|
2020-10-09 01:12:44 -04:00
|
|
|
const req = new Request("http://foo/", {
|
2019-05-01 23:56:42 -04:00
|
|
|
body: "ahoyhoy",
|
|
|
|
method: "POST",
|
|
|
|
headers: {
|
2020-03-28 13:03:49 -04:00
|
|
|
"test-header": "value",
|
|
|
|
},
|
2019-05-01 23:56:42 -04:00
|
|
|
});
|
|
|
|
|
2021-01-28 15:37:21 -05:00
|
|
|
assertEquals("ahoyhoy", await req.text());
|
2020-10-09 01:12:44 -04:00
|
|
|
assertEquals(req.url, "http://foo/");
|
2019-05-01 23:56:42 -04:00
|
|
|
assertEquals(req.headers.get("test-header"), "value");
|
|
|
|
});
|
2019-10-28 12:41:36 -04:00
|
|
|
|
2021-01-28 15:37:21 -05:00
|
|
|
unitTest(async function fromRequest(): Promise<void> {
|
|
|
|
const r = new Request("http://foo/", { body: "ahoyhoy" });
|
2019-10-28 12:41:36 -04:00
|
|
|
r.headers.set("test-header", "value");
|
|
|
|
|
|
|
|
const req = new Request(r);
|
|
|
|
|
2021-01-28 15:37:21 -05:00
|
|
|
assertEquals(await r.text(), await req.text());
|
2019-10-28 12:41:36 -04:00
|
|
|
assertEquals(req.url, r.url);
|
|
|
|
assertEquals(req.headers.get("test-header"), r.headers.get("test-header"));
|
|
|
|
});
|
|
|
|
|
2020-10-09 01:12:44 -04:00
|
|
|
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/");
|
|
|
|
});
|
|
|
|
|
2020-10-26 10:02:08 -04:00
|
|
|
unitTest(function methodNonString(): void {
|
|
|
|
assertEquals(new Request("http://foo/", { method: undefined }).method, "GET");
|
|
|
|
});
|
|
|
|
|
2020-10-09 01:12:44 -04:00
|
|
|
unitTest(function requestRelativeUrl(): void {
|
2021-01-07 13:06:08 -05:00
|
|
|
assertEquals(
|
|
|
|
new Request("relative-url").url,
|
|
|
|
"http://js-unit-tests/foo/relative-url",
|
|
|
|
);
|
2020-10-09 01:12:44 -04:00
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(async function cloneRequestBodyStream(): Promise<void> {
|
2019-10-28 12:41:36 -04:00
|
|
|
// hack to get a stream
|
2020-10-09 01:12:44 -04:00
|
|
|
const stream = new Request("http://foo/", { body: "a test body" }).body;
|
|
|
|
const r1 = new Request("http://foo/", {
|
2020-03-28 13:03:49 -04:00
|
|
|
body: stream,
|
2019-10-28 12:41:36 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
const r2 = r1.clone();
|
|
|
|
|
|
|
|
const b1 = await r1.text();
|
|
|
|
const b2 = await r2.text();
|
|
|
|
|
|
|
|
assertEquals(b1, b2);
|
|
|
|
});
|