fix: permission prompt stuffing (#11931)

Fixes #9750
This commit is contained in:
Ryan Dahl 2021-09-09 08:38:47 -04:00 committed by GitHub
parent d947629292
commit fb35cd0ef4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 169 additions and 55 deletions

View file

@ -1,9 +1,18 @@
const status1 =
(await Deno.permissions.request({ name: "run", command: "ls" })).state;
if (status1 != "granted") {
throw Error(`unexpected status1 ${status1}`);
}
const status2 =
(await Deno.permissions.query({ name: "run", command: "cat" })).state;
if (status2 != "prompt") {
throw Error(`unexpected status2 ${status2}`);
}
const status3 =
(await Deno.permissions.request({ name: "run", command: "cat" })).state;
if (status3 != "denied") {
throw Error(`unexpected status3 ${status3}`);
}
console.log(status1);
console.log(status2);
console.log(status3);