2020-02-25 15:36:35 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
|
|
const { args, listen, env, exit, makeTempDirSync, readFileSync, run } = Deno;
|
|
|
|
|
|
|
|
const name = args[0];
|
|
|
|
const test: { [key: string]: Function } = {
|
2020-03-20 09:38:34 -04:00
|
|
|
readRequired(): Promise<void> {
|
2020-02-25 15:36:35 -05:00
|
|
|
readFileSync("README.md");
|
2020-03-20 09:38:34 -04:00
|
|
|
return Promise.resolve();
|
2020-02-25 15:36:35 -05:00
|
|
|
},
|
|
|
|
writeRequired(): void {
|
|
|
|
makeTempDirSync();
|
|
|
|
},
|
|
|
|
envRequired(): void {
|
2020-04-29 14:48:19 -04:00
|
|
|
env.get("home");
|
2020-02-25 15:36:35 -05:00
|
|
|
},
|
|
|
|
netRequired(): void {
|
|
|
|
listen({ transport: "tcp", port: 4541 });
|
|
|
|
},
|
|
|
|
runRequired(): void {
|
|
|
|
run({
|
2020-03-21 17:44:18 -04:00
|
|
|
cmd: [
|
2020-02-25 15:36:35 -05:00
|
|
|
"python",
|
|
|
|
"-c",
|
2020-03-28 13:03:49 -04:00
|
|
|
"import sys; sys.stdout.write('hello'); sys.stdout.flush()",
|
|
|
|
],
|
2020-02-25 15:36:35 -05:00
|
|
|
});
|
2020-03-28 13:03:49 -04:00
|
|
|
},
|
2020-02-25 15:36:35 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
if (!test[name]) {
|
|
|
|
console.log("Unknown test:", name);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
test[name]();
|