2019-09-24 18:52:01 -04:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-10-04 14:49:32 -04:00
|
|
|
import { serve, ServerRequest } from "../../std/http/server.ts";
|
|
|
|
import { assertEquals } from "../../std/testing/asserts.ts";
|
2019-09-24 18:52:01 -04:00
|
|
|
|
|
|
|
const addr = Deno.args[1] || "127.0.0.1:4555";
|
|
|
|
|
|
|
|
async function proxyServer(): Promise<void> {
|
|
|
|
const server = serve(addr);
|
|
|
|
|
|
|
|
console.log(`Proxy server listening on http://${addr}/`);
|
|
|
|
for await (const req of server) {
|
|
|
|
proxyRequest(req);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function proxyRequest(req: ServerRequest): Promise<void> {
|
|
|
|
console.log(`Proxy request to: ${req.url}`);
|
|
|
|
const resp = await fetch(req.url, {
|
|
|
|
method: req.method,
|
|
|
|
headers: req.headers
|
|
|
|
});
|
|
|
|
req.respond(resp);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function testFetch(): Promise<void> {
|
|
|
|
const c = Deno.run({
|
2019-10-22 19:35:43 -04:00
|
|
|
args: [Deno.execPath(), "--reload", "--allow-net", "045_proxy_client.ts"],
|
2019-09-24 18:52:01 -04:00
|
|
|
stdout: "piped",
|
|
|
|
env: {
|
|
|
|
HTTP_PROXY: `http://${addr}`
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const status = await c.status();
|
|
|
|
assertEquals(status.code, 0);
|
|
|
|
c.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
async function testModuleDownload(): Promise<void> {
|
|
|
|
const http = Deno.run({
|
|
|
|
args: [
|
|
|
|
Deno.execPath(),
|
|
|
|
"--reload",
|
|
|
|
"fetch",
|
2019-10-22 09:52:41 -04:00
|
|
|
"http://localhost:4545/std/examples/colors.ts"
|
2019-09-24 18:52:01 -04:00
|
|
|
],
|
|
|
|
stdout: "piped",
|
|
|
|
env: {
|
|
|
|
HTTP_PROXY: `http://${addr}`
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const httpStatus = await http.status();
|
|
|
|
assertEquals(httpStatus.code, 0);
|
|
|
|
http.close();
|
|
|
|
}
|
|
|
|
|
2019-10-27 09:04:42 -04:00
|
|
|
proxyServer();
|
|
|
|
await testFetch();
|
|
|
|
await testModuleDownload();
|
|
|
|
Deno.exit(0);
|