mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
eaec5a8780
Does not yet support streaming, only strings and TypedArrays for now.
140 lines
4.5 KiB
TypeScript
140 lines
4.5 KiB
TypeScript
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
|
import { test, testPerm, assert, assertEqual } from "./test_util.ts";
|
|
import * as deno from "deno";
|
|
|
|
testPerm({ net: true }, async function fetchJsonSuccess() {
|
|
const response = await fetch("http://localhost:4545/package.json");
|
|
const json = await response.json();
|
|
assertEqual(json.name, "deno");
|
|
});
|
|
|
|
test(async function fetchPerm() {
|
|
let err;
|
|
try {
|
|
await fetch("http://localhost:4545/package.json");
|
|
} catch (err_) {
|
|
err = err_;
|
|
}
|
|
assertEqual(err.kind, deno.ErrorKind.PermissionDenied);
|
|
assertEqual(err.name, "PermissionDenied");
|
|
});
|
|
|
|
testPerm({ net: true }, async function fetchHeaders() {
|
|
const response = await fetch("http://localhost:4545/package.json");
|
|
const headers = response.headers;
|
|
assertEqual(headers.get("Content-Type"), "application/json");
|
|
assert(headers.get("Server").startsWith("SimpleHTTP"));
|
|
});
|
|
|
|
testPerm({ net: true }, async function fetchBlob() {
|
|
const response = await fetch("http://localhost:4545/package.json");
|
|
const headers = response.headers;
|
|
const blob = await response.blob();
|
|
assertEqual(blob.type, headers.get("Content-Type"));
|
|
assertEqual(blob.size, Number(headers.get("Content-Length")));
|
|
});
|
|
|
|
testPerm({ net: true }, async function responseClone() {
|
|
const response = await fetch("http://localhost:4545/package.json");
|
|
const response1 = response.clone();
|
|
assert(response !== response1);
|
|
assertEqual(response.status, response1.status);
|
|
assertEqual(response.statusText, response1.statusText);
|
|
const ab = await response.arrayBuffer();
|
|
const ab1 = await response1.arrayBuffer();
|
|
for (let i = 0; i < ab.byteLength; i++) {
|
|
assertEqual(ab[i], ab1[i]);
|
|
}
|
|
});
|
|
|
|
function bufferServer(addr: string): deno.Buffer {
|
|
const listener = deno.listen("tcp", addr);
|
|
const buf = new deno.Buffer();
|
|
listener.accept().then(async conn => {
|
|
const p1 = buf.readFrom(conn);
|
|
const p2 = conn.write(
|
|
new TextEncoder().encode(
|
|
"HTTP/1.0 404 Not Found\r\nContent-Length: 2\r\n\r\nNF"
|
|
)
|
|
);
|
|
// Wait for both an EOF on the read side of the socket and for the write to
|
|
// complete before closing it. Due to keep-alive, the EOF won't be sent
|
|
// until the Connection close (HTTP/1.0) response, so readFrom() can't
|
|
// proceed write. Conversely, if readFrom() is async, waiting for the
|
|
// write() to complete is not a guarantee that we've read the incoming
|
|
// request.
|
|
await Promise.all([p1, p2]);
|
|
conn.close();
|
|
listener.close();
|
|
});
|
|
return buf;
|
|
}
|
|
|
|
testPerm({ net: true }, async function fetchRequest() {
|
|
const addr = "127.0.0.1:4501";
|
|
const buf = bufferServer(addr);
|
|
const response = await fetch(`http://${addr}/blah`, {
|
|
method: "POST",
|
|
headers: [["Hello", "World"], ["Foo", "Bar"]]
|
|
});
|
|
assertEqual(response.status, 404);
|
|
assertEqual(response.headers.get("Content-Length"), "2");
|
|
|
|
const actual = new TextDecoder().decode(buf.bytes());
|
|
const expected = [
|
|
"POST /blah HTTP/1.1\r\n",
|
|
"hello: World\r\n",
|
|
"foo: Bar\r\n",
|
|
`host: ${addr}\r\n\r\n`
|
|
].join("");
|
|
assertEqual(actual, expected);
|
|
});
|
|
|
|
testPerm({ net: true }, async function fetchPostBodyString() {
|
|
const addr = "127.0.0.1:4502";
|
|
const buf = bufferServer(addr);
|
|
const body = "hello world";
|
|
const response = await fetch(`http://${addr}/blah`, {
|
|
method: "POST",
|
|
headers: [["Hello", "World"], ["Foo", "Bar"]],
|
|
body
|
|
});
|
|
assertEqual(response.status, 404);
|
|
assertEqual(response.headers.get("Content-Length"), "2");
|
|
|
|
const actual = new TextDecoder().decode(buf.bytes());
|
|
const expected = [
|
|
"POST /blah HTTP/1.1\r\n",
|
|
"hello: World\r\n",
|
|
"foo: Bar\r\n",
|
|
`host: ${addr}\r\n`,
|
|
`content-length: ${body.length}\r\n\r\n`,
|
|
body
|
|
].join("");
|
|
assertEqual(actual, expected);
|
|
});
|
|
|
|
testPerm({ net: true }, async function fetchPostBodyTypedArray() {
|
|
const addr = "127.0.0.1:4503";
|
|
const buf = bufferServer(addr);
|
|
const bodyStr = "hello world";
|
|
const body = new TextEncoder().encode(bodyStr);
|
|
const response = await fetch(`http://${addr}/blah`, {
|
|
method: "POST",
|
|
headers: [["Hello", "World"], ["Foo", "Bar"]],
|
|
body
|
|
});
|
|
assertEqual(response.status, 404);
|
|
assertEqual(response.headers.get("Content-Length"), "2");
|
|
|
|
const actual = new TextDecoder().decode(buf.bytes());
|
|
const expected = [
|
|
"POST /blah HTTP/1.1\r\n",
|
|
"hello: World\r\n",
|
|
"foo: Bar\r\n",
|
|
`host: ${addr}\r\n`,
|
|
`content-length: ${body.byteLength}\r\n\r\n`,
|
|
bodyStr
|
|
].join("");
|
|
assertEqual(actual, expected);
|
|
});
|