1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/tools/permission_prompt_test.ts
2019-01-12 11:29:45 -05:00

24 lines
446 B
TypeScript

import { args, listen, env, exit, makeTempDirSync, run } from "deno";
const name = args[1];
const test = {
needsWrite: () => {
makeTempDirSync();
},
needsEnv: () => {
env().home;
},
needsNet: () => {
listen("tcp", "127.0.0.1:4540");
},
needsRun: () => {
run({ args: ["python", "-c", "import sys; sys.stdout.write('hello')"] });
}
}[name];
if (!test) {
console.log("Unknown test:", name);
exit(1);
}
test();