2018-12-11 17:56:32 -05:00
|
|
|
import { readFile } from "deno";
|
|
|
|
|
2019-01-06 14:19:15 -05:00
|
|
|
import { test, assert, assertEqual } from "../testing/mod.ts";
|
2018-12-11 17:56:32 -05:00
|
|
|
|
|
|
|
// Promise to completeResolve when all tests completes
|
|
|
|
let completeResolve;
|
|
|
|
export const completePromise = new Promise(res => (completeResolve = res));
|
|
|
|
let completedTestCount = 0;
|
|
|
|
|
|
|
|
function maybeCompleteTests() {
|
|
|
|
completedTestCount++;
|
|
|
|
// Change this when adding more tests
|
|
|
|
if (completedTestCount === 3) {
|
|
|
|
completeResolve();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function runTests(serverReadyPromise: Promise<any>) {
|
|
|
|
test(async function serveFile() {
|
|
|
|
await serverReadyPromise;
|
2019-01-03 23:11:40 -05:00
|
|
|
const res = await fetch("http://localhost:4500/azure-pipelines.yml");
|
2018-12-23 22:50:49 -05:00
|
|
|
assert(res.headers.has("access-control-allow-origin"));
|
|
|
|
assert(res.headers.has("access-control-allow-headers"));
|
2018-12-31 04:06:06 -05:00
|
|
|
assertEqual(res.headers.get("content-type"), "text/yaml");
|
2018-12-11 17:56:32 -05:00
|
|
|
const downloadedFile = await res.text();
|
2019-01-06 14:19:15 -05:00
|
|
|
const localFile = new TextDecoder().decode(
|
|
|
|
await readFile("./azure-pipelines.yml")
|
|
|
|
);
|
2018-12-11 17:56:32 -05:00
|
|
|
assertEqual(downloadedFile, localFile);
|
|
|
|
maybeCompleteTests();
|
|
|
|
});
|
|
|
|
|
|
|
|
test(async function serveDirectory() {
|
|
|
|
await serverReadyPromise;
|
|
|
|
const res = await fetch("http://localhost:4500/");
|
2018-12-23 22:50:49 -05:00
|
|
|
assert(res.headers.has("access-control-allow-origin"));
|
|
|
|
assert(res.headers.has("access-control-allow-headers"));
|
2018-12-11 17:56:32 -05:00
|
|
|
const page = await res.text();
|
2019-01-03 23:11:40 -05:00
|
|
|
assert(page.includes("azure-pipelines.yml"));
|
2018-12-11 17:56:32 -05:00
|
|
|
maybeCompleteTests();
|
|
|
|
});
|
|
|
|
|
|
|
|
test(async function serveFallback() {
|
|
|
|
await serverReadyPromise;
|
|
|
|
const res = await fetch("http://localhost:4500/badfile.txt");
|
2018-12-23 22:50:49 -05:00
|
|
|
assert(res.headers.has("access-control-allow-origin"));
|
|
|
|
assert(res.headers.has("access-control-allow-headers"));
|
2018-12-11 17:56:32 -05:00
|
|
|
assertEqual(res.status, 404);
|
|
|
|
maybeCompleteTests();
|
|
|
|
});
|
|
|
|
}
|