mirror of
https://github.com/denoland/deno.git
synced 2025-10-02 23:24:37 +00:00
Allow inspection and revocation of permissions (#1875)
This commit is contained in:
parent
048a8a7775
commit
77d7ad61f3
9 changed files with 249 additions and 0 deletions
22
js/permissions_test.ts
Normal file
22
js/permissions_test.ts
Normal file
|
@ -0,0 +1,22 @@
|
|||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||
import { testPerm, assert, assertEqual } from "./test_util.ts";
|
||||
import { Permission } from "deno";
|
||||
|
||||
const knownPermissions: Permission[] = ["run", "read", "write", "net", "env"];
|
||||
|
||||
for (let grant of knownPermissions) {
|
||||
testPerm({ [grant]: true }, function envGranted() {
|
||||
const perms = Deno.permissions();
|
||||
assert(perms !== null);
|
||||
for (const perm in perms) {
|
||||
assertEqual(perms[perm], perm === grant);
|
||||
}
|
||||
|
||||
Deno.revokePermission(grant);
|
||||
|
||||
const revoked = Deno.permissions();
|
||||
for (const perm in revoked) {
|
||||
assertEqual(revoked[perm], false);
|
||||
}
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue