mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
43 lines
897 B
TypeScript
43 lines
897 B
TypeScript
import { assertEquals } from "../../../../test_util/std/testing/asserts.ts";
|
|
|
|
const permissions: Deno.PermissionName[] = [
|
|
"read",
|
|
"write",
|
|
"net",
|
|
"env",
|
|
"run",
|
|
"ffi",
|
|
"hrtime",
|
|
];
|
|
|
|
for (const name of permissions) {
|
|
Deno.test({
|
|
name: `${name} false`,
|
|
permissions: {
|
|
[name]: false,
|
|
},
|
|
async fn() {
|
|
for await (const n of permissions) {
|
|
const status = await Deno.permissions.query({ name: n });
|
|
assertEquals(status.state, "prompt");
|
|
}
|
|
},
|
|
});
|
|
|
|
Deno.test({
|
|
name: `${name} true`,
|
|
permissions: {
|
|
[name]: true,
|
|
},
|
|
async fn() {
|
|
for await (const n of permissions) {
|
|
const status = await Deno.permissions.query({ name: n });
|
|
if (n === name) {
|
|
assertEquals(status.state, "granted");
|
|
} else {
|
|
assertEquals(status.state, "prompt");
|
|
}
|
|
}
|
|
},
|
|
});
|
|
}
|