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-21 09:53:47 -04:00
|
|
|
import { randomPort } from "../../http/test_util.ts";
|
2020-02-24 08:31:40 -05:00
|
|
|
|
2020-03-21 09:53:47 -04:00
|
|
|
const port = randomPort();
|
2020-03-18 19:25:55 -04:00
|
|
|
Deno.test({
|
|
|
|
name: "[examples/curl] send a request to a specified url",
|
|
|
|
// FIXME(bartlomieju): this test is leaking both resources and ops,
|
|
|
|
// and causes interference with other tests
|
2020-03-19 05:58:12 -04:00
|
|
|
ignore: true,
|
2020-03-18 19:25:55 -04:00
|
|
|
fn: async () => {
|
2020-03-21 09:53:47 -04:00
|
|
|
const server = serve({ port });
|
2020-03-18 19:25:55 -04:00
|
|
|
(async (): Promise<void> => {
|
|
|
|
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({
|
|
|
|
args: [
|
|
|
|
Deno.execPath(),
|
|
|
|
"--allow-net",
|
|
|
|
"curl.ts",
|
2020-03-21 09:53:47 -04:00
|
|
|
"http://localhost:" + port
|
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 {
|
|
|
|
process.close();
|
|
|
|
server.close();
|
|
|
|
}
|
2020-02-24 08:31:40 -05:00
|
|
|
}
|
|
|
|
});
|