summaryrefslogtreecommitdiff
path: root/cli/js/request_test.ts
blob: dda2804f41b2d088e0007728bfb127cfa92087ed (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test, assert, assertEquals } from "./test_util.ts";

test(function fromInit(): void {
  const req = new Request("https://example.com", {
    body: "ahoyhoy",
    method: "POST",
    headers: {
      "test-header": "value"
    }
  });

  // @ts-ignore
  assertEquals("ahoyhoy", req._bodySource);
  assertEquals(req.url, "https://example.com");
  assertEquals(req.headers.get("test-header"), "value");
});

test(function fromRequest(): void {
  const r = new Request("https://example.com");
  // @ts-ignore
  r._bodySource = "ahoyhoy";
  r.headers.set("test-header", "value");

  const req = new Request(r);

  // @ts-ignore
  assertEquals(req._bodySource, r._bodySource);
  assertEquals(req.url, r.url);
  assertEquals(req.headers.get("test-header"), r.headers.get("test-header"));
});

test(async function cloneRequestBodyStream(): Promise<void> {
  // hack to get a stream
  const stream = new Request("", { body: "a test body" }).body;
  const r1 = new Request("https://example.com", {
    body: stream
  });

  const r2 = r1.clone();

  const b1 = await r1.text();
  const b2 = await r2.text();

  assertEquals(b1, b2);

  // @ts-ignore
  assert(r1._bodySource !== r2._bodySource);
});