2020-02-24 22:31:40 +09:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-09-27 00:54:26 +09:00
|
|
|
import { serve } from "../http/server.ts";
|
|
|
|
import { assertStrictEquals } from "../testing/asserts.ts";
|
|
|
|
import { dirname, fromFileUrl } from "../path/mod.ts";
|
2020-09-10 02:57:49 +08:00
|
|
|
|
2020-09-27 00:54:26 +09:00
|
|
|
const moduleDir = dirname(fromFileUrl(import.meta.url));
|
2020-02-24 22:31:40 +09:00
|
|
|
|
2020-03-19 00:25:55 +01:00
|
|
|
Deno.test({
|
|
|
|
name: "[examples/curl] send a request to a specified url",
|
|
|
|
fn: async () => {
|
2020-03-24 17:24:58 +01:00
|
|
|
const server = serve({ port: 8081 });
|
2020-03-23 03:41:42 +09:00
|
|
|
const serverPromise = (async (): Promise<void> => {
|
2020-03-19 00:25:55 +01:00
|
|
|
for await (const req of server) {
|
|
|
|
req.respond({ body: "Hello world" });
|
|
|
|
}
|
|
|
|
})();
|
2020-02-24 22:31:40 +09:00
|
|
|
|
2020-03-19 00:25:55 +01:00
|
|
|
const decoder = new TextDecoder();
|
|
|
|
const process = Deno.run({
|
2020-05-04 13:03:30 +02:00
|
|
|
cmd: [
|
|
|
|
Deno.execPath(),
|
|
|
|
"run",
|
2020-11-20 18:01:58 +01:00
|
|
|
"--quiet",
|
2020-05-04 13:03:30 +02:00
|
|
|
"--allow-net",
|
|
|
|
"curl.ts",
|
|
|
|
"http://localhost:8081",
|
|
|
|
],
|
2020-09-10 02:57:49 +08:00
|
|
|
cwd: moduleDir,
|
2020-03-29 04:03:49 +11:00
|
|
|
stdout: "piped",
|
2020-03-19 00:25:55 +01:00
|
|
|
});
|
2020-02-24 22:31:40 +09:00
|
|
|
|
2020-03-19 00:25:55 +01:00
|
|
|
try {
|
|
|
|
const output = await process.output();
|
|
|
|
const actual = decoder.decode(output).trim();
|
|
|
|
const expected = "Hello world";
|
2020-02-24 22:31:40 +09:00
|
|
|
|
2020-06-06 11:43:00 +08:00
|
|
|
assertStrictEquals(actual, expected);
|
2020-03-19 00:25:55 +01:00
|
|
|
} finally {
|
|
|
|
server.close();
|
2020-03-23 03:41:42 +09:00
|
|
|
process.close();
|
|
|
|
await serverPromise;
|
2020-03-19 00:25:55 +01:00
|
|
|
}
|
2020-03-29 04:03:49 +11:00
|
|
|
},
|
2020-02-24 22:31:40 +09:00
|
|
|
});
|