1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-13 16:26:08 -05:00
denoland-deno/cli/tests/permission_test.ts
Akshat Agarwal b8a5c29bf8
BREAKING CHANGE Rename Deno.run's args to cmd (#4444)
This is to avoid confusion with Deno.args which does not include the 
executable to be run.
2020-03-21 17:44:18 -04:00

35 lines
750 B
TypeScript

// 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 } = {
readRequired(): Promise<void> {
readFileSync("README.md");
return Promise.resolve();
},
writeRequired(): void {
makeTempDirSync();
},
envRequired(): void {
env().home;
},
netRequired(): void {
listen({ transport: "tcp", port: 4541 });
},
runRequired(): void {
run({
cmd: [
"python",
"-c",
"import sys; sys.stdout.write('hello'); sys.stdout.flush()"
]
});
}
};
if (!test[name]) {
console.log("Unknown test:", name);
exit(1);
}
test[name]();