2020-02-24 08:31:40 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-18 19:25:55 -04:00
|
|
|
import { serve } from "../../http/server.ts";
|
2020-02-24 08:31:40 -05:00
|
|
|
import { assertStrictEq } from "../../testing/asserts.ts";
|
|
|
|
|
2020-03-18 19:25:55 -04:00
|
|
|
Deno.test({
|
|
|
|
name: "[examples/curl] send a request to a specified url",
|
|
|
|
fn: async () => {
|
2020-03-24 12:24:58 -04:00
|
|
|
const server = serve({ port: 8081 });
|
2020-03-22 14:41:42 -04:00
|
|
|
const serverPromise = (async (): Promise<void> => {
|
2020-03-18 19:25:55 -04:00
|
|
|
for await (const req of server) {
|
|
|
|
req.respond({ body: "Hello world" });
|
|
|
|
}
|
|
|
|
})();
|
2020-02-24 08:31:40 -05:00
|
|
|
|
2020-03-18 19:25:55 -04:00
|
|
|
const decoder = new TextDecoder();
|
|
|
|
const process = Deno.run({
|
2020-03-24 12:24:58 -04:00
|
|
|
cmd: [Deno.execPath(), "--allow-net", "curl.ts", "http://localhost:8081"],
|
2020-03-18 19:25:55 -04:00
|
|
|
cwd: "examples",
|
|
|
|
stdout: "piped"
|
|
|
|
});
|
2020-02-24 08:31:40 -05:00
|
|
|
|
2020-03-18 19:25:55 -04:00
|
|
|
try {
|
|
|
|
const output = await process.output();
|
|
|
|
const actual = decoder.decode(output).trim();
|
|
|
|
const expected = "Hello world";
|
2020-02-24 08:31:40 -05:00
|
|
|
|
2020-03-18 19:25:55 -04:00
|
|
|
assertStrictEq(actual, expected);
|
|
|
|
} finally {
|
|
|
|
server.close();
|
2020-03-22 14:41:42 -04:00
|
|
|
process.close();
|
|
|
|
await serverPromise;
|
2020-03-18 19:25:55 -04:00
|
|
|
}
|
2020-02-24 08:31:40 -05:00
|
|
|
}
|
|
|
|
});
|