2020-01-02 15:13:47 -05:00
|
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-02-24 19:30:17 -05:00
|
|
|
|
use crate::colors;
|
2020-02-26 05:52:15 -05:00
|
|
|
|
use crate::flags::Flags;
|
2020-02-23 14:51:29 -05:00
|
|
|
|
use crate::op_error::OpError;
|
2019-11-11 10:33:29 -05:00
|
|
|
|
#[cfg(not(test))]
|
|
|
|
|
use atty;
|
2019-06-22 12:02:51 -04:00
|
|
|
|
use log;
|
2019-05-08 19:20:30 -04:00
|
|
|
|
use std::collections::HashSet;
|
2019-03-18 16:46:23 -04:00
|
|
|
|
use std::fmt;
|
2019-11-11 10:33:29 -05:00
|
|
|
|
#[cfg(not(test))]
|
|
|
|
|
use std::io;
|
2020-01-20 09:45:44 -05:00
|
|
|
|
use std::path::{Path, PathBuf};
|
2019-11-11 10:33:29 -05:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
use std::sync::atomic::AtomicBool;
|
2019-11-24 10:42:30 -05:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
use std::sync::atomic::Ordering;
|
2020-02-24 09:13:03 -05:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
use std::sync::Mutex;
|
2019-10-27 11:22:53 -04:00
|
|
|
|
use url::Url;
|
2019-03-18 16:46:23 -04:00
|
|
|
|
|
2019-06-22 12:02:51 -04:00
|
|
|
|
const PERMISSION_EMOJI: &str = "⚠️";
|
|
|
|
|
|
2019-03-18 16:46:23 -04:00
|
|
|
|
/// Tri-state value for storing permission state
|
2019-11-24 10:42:30 -05:00
|
|
|
|
#[derive(PartialEq, Debug, Clone, Copy)]
|
|
|
|
|
pub enum PermissionState {
|
2019-03-18 16:46:23 -04:00
|
|
|
|
Allow = 0,
|
|
|
|
|
Ask = 1,
|
|
|
|
|
Deny = 2,
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-24 10:42:30 -05:00
|
|
|
|
impl PermissionState {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
/// Checks the permission state and returns the result.
|
2020-02-23 14:51:29 -05:00
|
|
|
|
pub fn check(self, msg: &str, flag_name: &str) -> Result<(), OpError> {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
if self == PermissionState::Allow {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
log_perm_access(msg);
|
|
|
|
|
return Ok(());
|
|
|
|
|
}
|
2020-01-27 21:13:17 -05:00
|
|
|
|
let m = format!("{}, run again with the {} flag", msg, flag_name);
|
2020-02-23 14:51:29 -05:00
|
|
|
|
Err(OpError::permission_denied(m))
|
2019-11-11 10:33:29 -05:00
|
|
|
|
}
|
2019-11-24 10:42:30 -05:00
|
|
|
|
pub fn is_allow(self) -> bool {
|
|
|
|
|
self == PermissionState::Allow
|
|
|
|
|
}
|
|
|
|
|
/// If the state is "Allow" walk it back to the default "Ask"
|
|
|
|
|
/// Don't do anything if state is "Deny"
|
|
|
|
|
pub fn revoke(&mut self) {
|
|
|
|
|
if *self == PermissionState::Allow {
|
|
|
|
|
*self = PermissionState::Ask;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/// Requests the permission.
|
|
|
|
|
pub fn request(&mut self, msg: &str) -> PermissionState {
|
|
|
|
|
if *self != PermissionState::Ask {
|
|
|
|
|
return *self;
|
|
|
|
|
}
|
|
|
|
|
if permission_prompt(msg) {
|
|
|
|
|
*self = PermissionState::Allow;
|
|
|
|
|
} else {
|
|
|
|
|
*self = PermissionState::Deny;
|
|
|
|
|
}
|
|
|
|
|
*self
|
|
|
|
|
}
|
2019-11-11 10:33:29 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-24 10:42:30 -05:00
|
|
|
|
impl From<usize> for PermissionState {
|
2019-03-18 16:46:23 -04:00
|
|
|
|
fn from(val: usize) -> Self {
|
|
|
|
|
match val {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
0 => PermissionState::Allow,
|
|
|
|
|
1 => PermissionState::Ask,
|
|
|
|
|
2 => PermissionState::Deny,
|
2019-03-18 16:46:23 -04:00
|
|
|
|
_ => unreachable!(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-24 10:42:30 -05:00
|
|
|
|
impl From<bool> for PermissionState {
|
2019-03-18 16:46:23 -04:00
|
|
|
|
fn from(val: bool) -> Self {
|
2019-03-20 18:55:52 -04:00
|
|
|
|
if val {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
PermissionState::Allow
|
2019-03-20 18:55:52 -04:00
|
|
|
|
} else {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
PermissionState::Ask
|
2019-03-18 16:46:23 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-24 10:42:30 -05:00
|
|
|
|
impl fmt::Display for PermissionState {
|
2019-03-18 16:46:23 -04:00
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
|
match self {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
PermissionState::Allow => f.pad("granted"),
|
|
|
|
|
PermissionState::Ask => f.pad("prompt"),
|
|
|
|
|
PermissionState::Deny => f.pad("denied"),
|
2019-03-18 16:46:23 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-24 10:42:30 -05:00
|
|
|
|
impl Default for PermissionState {
|
2019-03-18 16:46:23 -04:00
|
|
|
|
fn default() -> Self {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
PermissionState::Ask
|
2019-03-18 16:46:23 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-27 09:11:39 -04:00
|
|
|
|
|
2019-11-04 10:38:52 -05:00
|
|
|
|
#[derive(Clone, Debug, Default)]
|
2018-10-27 09:11:39 -04:00
|
|
|
|
pub struct DenoPermissions {
|
2019-10-27 11:22:53 -04:00
|
|
|
|
// Keep in sync with cli/js/permissions.ts
|
2019-11-24 10:42:30 -05:00
|
|
|
|
pub allow_read: PermissionState,
|
2020-02-11 04:29:36 -05:00
|
|
|
|
pub read_whitelist: HashSet<PathBuf>,
|
2019-11-24 10:42:30 -05:00
|
|
|
|
pub allow_write: PermissionState,
|
2020-02-11 04:29:36 -05:00
|
|
|
|
pub write_whitelist: HashSet<PathBuf>,
|
2019-11-24 10:42:30 -05:00
|
|
|
|
pub allow_net: PermissionState,
|
|
|
|
|
pub net_whitelist: HashSet<String>,
|
|
|
|
|
pub allow_env: PermissionState,
|
|
|
|
|
pub allow_run: PermissionState,
|
2019-12-05 15:30:20 -05:00
|
|
|
|
pub allow_plugin: PermissionState,
|
2019-11-24 10:42:30 -05:00
|
|
|
|
pub allow_hrtime: PermissionState,
|
2018-10-27 09:11:39 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl DenoPermissions {
|
2020-02-26 05:52:15 -05:00
|
|
|
|
pub fn from_flags(flags: &Flags) -> Self {
|
2018-11-05 01:21:21 -05:00
|
|
|
|
Self {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
allow_read: PermissionState::from(flags.allow_read),
|
|
|
|
|
read_whitelist: flags.read_whitelist.iter().cloned().collect(),
|
|
|
|
|
allow_write: PermissionState::from(flags.allow_write),
|
|
|
|
|
write_whitelist: flags.write_whitelist.iter().cloned().collect(),
|
|
|
|
|
allow_net: PermissionState::from(flags.allow_net),
|
|
|
|
|
net_whitelist: flags.net_whitelist.iter().cloned().collect(),
|
|
|
|
|
allow_env: PermissionState::from(flags.allow_env),
|
|
|
|
|
allow_run: PermissionState::from(flags.allow_run),
|
2019-12-05 15:30:20 -05:00
|
|
|
|
allow_plugin: PermissionState::from(flags.allow_plugin),
|
2019-11-24 10:42:30 -05:00
|
|
|
|
allow_hrtime: PermissionState::from(flags.allow_hrtime),
|
2018-10-27 09:11:39 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-23 14:51:29 -05:00
|
|
|
|
pub fn check_run(&self) -> Result<(), OpError> {
|
2020-01-27 21:13:17 -05:00
|
|
|
|
self
|
|
|
|
|
.allow_run
|
|
|
|
|
.check("access to run a subprocess", "--allow-run")
|
2019-10-27 11:22:53 -04:00
|
|
|
|
}
|
2019-06-22 12:02:51 -04:00
|
|
|
|
|
2020-01-20 09:45:44 -05:00
|
|
|
|
fn get_state_read(&self, path: &Option<&Path>) -> PermissionState {
|
|
|
|
|
if path.map_or(false, |f| check_path_white_list(f, &self.read_whitelist)) {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
return PermissionState::Allow;
|
2018-11-15 23:07:40 -05:00
|
|
|
|
}
|
2019-11-24 10:42:30 -05:00
|
|
|
|
self.allow_read
|
2018-11-15 23:07:40 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-23 14:51:29 -05:00
|
|
|
|
pub fn check_read(&self, path: &Path) -> Result<(), OpError> {
|
2020-01-20 09:45:44 -05:00
|
|
|
|
self.get_state_read(&Some(path)).check(
|
|
|
|
|
&format!("read access to \"{}\"", path.display()),
|
2020-01-27 21:13:17 -05:00
|
|
|
|
"--allow-read",
|
2019-10-27 11:22:53 -04:00
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-20 09:45:44 -05:00
|
|
|
|
fn get_state_write(&self, path: &Option<&Path>) -> PermissionState {
|
|
|
|
|
if path.map_or(false, |f| check_path_white_list(f, &self.write_whitelist)) {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
return PermissionState::Allow;
|
2019-02-08 15:59:38 -05:00
|
|
|
|
}
|
2019-11-24 10:42:30 -05:00
|
|
|
|
self.allow_write
|
2019-02-08 15:59:38 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-23 14:51:29 -05:00
|
|
|
|
pub fn check_write(&self, path: &Path) -> Result<(), OpError> {
|
2020-01-20 09:45:44 -05:00
|
|
|
|
self.get_state_write(&Some(path)).check(
|
|
|
|
|
&format!("write access to \"{}\"", path.display()),
|
2020-01-27 21:13:17 -05:00
|
|
|
|
"--allow-write",
|
2019-10-27 11:22:53 -04:00
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-24 10:42:30 -05:00
|
|
|
|
fn get_state_net(&self, host: &str, port: Option<u16>) -> PermissionState {
|
2019-10-27 11:22:53 -04:00
|
|
|
|
if check_host_and_port_whitelist(host, port, &self.net_whitelist) {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
return PermissionState::Allow;
|
2019-05-08 19:20:30 -04:00
|
|
|
|
}
|
2019-11-24 10:42:30 -05:00
|
|
|
|
self.allow_net
|
2019-05-08 19:20:30 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-11 10:33:29 -05:00
|
|
|
|
fn get_state_net_url(
|
|
|
|
|
&self,
|
|
|
|
|
url: &Option<&str>,
|
2020-02-23 14:51:29 -05:00
|
|
|
|
) -> Result<PermissionState, OpError> {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
if url.is_none() {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
return Ok(self.allow_net);
|
2019-11-11 10:33:29 -05:00
|
|
|
|
}
|
|
|
|
|
let url: &str = url.unwrap();
|
|
|
|
|
// If url is invalid, then throw a TypeError.
|
2020-02-23 14:51:29 -05:00
|
|
|
|
let parsed = Url::parse(url).map_err(OpError::from)?;
|
2019-11-11 10:33:29 -05:00
|
|
|
|
Ok(
|
|
|
|
|
self.get_state_net(&format!("{}", parsed.host().unwrap()), parsed.port()),
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-23 14:51:29 -05:00
|
|
|
|
pub fn check_net(&self, hostname: &str, port: u16) -> Result<(), OpError> {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
self.get_state_net(hostname, Some(port)).check(
|
2019-10-27 11:22:53 -04:00
|
|
|
|
&format!("network access to \"{}:{}\"", hostname, port),
|
2020-01-27 21:13:17 -05:00
|
|
|
|
"--allow-net",
|
2019-10-27 11:22:53 -04:00
|
|
|
|
)
|
2018-10-27 09:11:39 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-23 14:51:29 -05:00
|
|
|
|
pub fn check_net_url(&self, url: &url::Url) -> Result<(), OpError> {
|
|
|
|
|
let host = url
|
|
|
|
|
.host_str()
|
|
|
|
|
.ok_or_else(|| OpError::uri_error("missing host".to_owned()))?;
|
2019-11-11 10:33:29 -05:00
|
|
|
|
self
|
2020-02-23 09:45:02 -05:00
|
|
|
|
.get_state_net(host, url.port())
|
2020-01-27 21:13:17 -05:00
|
|
|
|
.check(&format!("network access to \"{}\"", url), "--allow-net")
|
2019-05-08 19:20:30 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-23 14:51:29 -05:00
|
|
|
|
pub fn check_env(&self) -> Result<(), OpError> {
|
2020-01-27 21:13:17 -05:00
|
|
|
|
self
|
|
|
|
|
.allow_env
|
|
|
|
|
.check("access to environment variables", "--allow-env")
|
2019-03-13 12:43:47 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-23 14:51:29 -05:00
|
|
|
|
pub fn check_plugin(&self, path: &Path) -> Result<(), OpError> {
|
2019-12-05 15:30:20 -05:00
|
|
|
|
self.allow_plugin.check(
|
2020-01-20 09:45:44 -05:00
|
|
|
|
&format!("access to open a plugin: {}", path.display()),
|
2020-01-27 21:13:17 -05:00
|
|
|
|
"--allow-plugin",
|
2019-12-05 15:30:20 -05:00
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-24 10:42:30 -05:00
|
|
|
|
pub fn request_run(&mut self) -> PermissionState {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
self
|
|
|
|
|
.allow_run
|
|
|
|
|
.request("Deno requests to access to run a subprocess.")
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-20 09:45:44 -05:00
|
|
|
|
pub fn request_read(&mut self, path: &Option<&Path>) -> PermissionState {
|
|
|
|
|
if path.map_or(false, |f| check_path_white_list(f, &self.read_whitelist)) {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
return PermissionState::Allow;
|
2019-11-11 10:33:29 -05:00
|
|
|
|
};
|
2019-12-03 12:22:51 -05:00
|
|
|
|
self.allow_read.request(&match path {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
None => "Deno requests read access.".to_string(),
|
2020-01-20 09:45:44 -05:00
|
|
|
|
Some(path) => {
|
|
|
|
|
format!("Deno requests read access to \"{}\".", path.display())
|
|
|
|
|
}
|
2019-11-11 10:33:29 -05:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-20 09:45:44 -05:00
|
|
|
|
pub fn request_write(&mut self, path: &Option<&Path>) -> PermissionState {
|
|
|
|
|
if path.map_or(false, |f| check_path_white_list(f, &self.write_whitelist)) {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
return PermissionState::Allow;
|
2019-11-11 10:33:29 -05:00
|
|
|
|
};
|
|
|
|
|
self.allow_write.request(&match path {
|
|
|
|
|
None => "Deno requests write access.".to_string(),
|
2020-01-20 09:45:44 -05:00
|
|
|
|
Some(path) => {
|
|
|
|
|
format!("Deno requests write access to \"{}\".", path.display())
|
|
|
|
|
}
|
2019-11-11 10:33:29 -05:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn request_net(
|
2019-11-24 10:42:30 -05:00
|
|
|
|
&mut self,
|
2019-11-11 10:33:29 -05:00
|
|
|
|
url: &Option<&str>,
|
2020-02-23 14:51:29 -05:00
|
|
|
|
) -> Result<PermissionState, OpError> {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
if self.get_state_net_url(url)? == PermissionState::Ask {
|
2019-12-03 12:22:51 -05:00
|
|
|
|
return Ok(self.allow_net.request(&match url {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
None => "Deno requests network access.".to_string(),
|
|
|
|
|
Some(url) => format!("Deno requests network access to \"{}\".", url),
|
|
|
|
|
}));
|
|
|
|
|
};
|
|
|
|
|
self.get_state_net_url(url)
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-24 10:42:30 -05:00
|
|
|
|
pub fn request_env(&mut self) -> PermissionState {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
self
|
|
|
|
|
.allow_env
|
|
|
|
|
.request("Deno requests to access to environment variables.")
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-24 10:42:30 -05:00
|
|
|
|
pub fn request_hrtime(&mut self) -> PermissionState {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
self
|
|
|
|
|
.allow_hrtime
|
|
|
|
|
.request("Deno requests to access to high precision time.")
|
2019-06-22 12:02:51 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-05 15:30:20 -05:00
|
|
|
|
pub fn request_plugin(&mut self) -> PermissionState {
|
|
|
|
|
self.allow_plugin.request("Deno requests to open plugins.")
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-27 11:22:53 -04:00
|
|
|
|
pub fn get_permission_state(
|
|
|
|
|
&self,
|
|
|
|
|
name: &str,
|
|
|
|
|
url: &Option<&str>,
|
2020-01-20 09:45:44 -05:00
|
|
|
|
path: &Option<&Path>,
|
2020-02-23 14:51:29 -05:00
|
|
|
|
) -> Result<PermissionState, OpError> {
|
2019-10-27 11:22:53 -04:00
|
|
|
|
match name {
|
2019-11-24 10:42:30 -05:00
|
|
|
|
"run" => Ok(self.allow_run),
|
2019-10-27 11:22:53 -04:00
|
|
|
|
"read" => Ok(self.get_state_read(path)),
|
|
|
|
|
"write" => Ok(self.get_state_write(path)),
|
2019-11-11 10:33:29 -05:00
|
|
|
|
"net" => self.get_state_net_url(url),
|
2019-11-24 10:42:30 -05:00
|
|
|
|
"env" => Ok(self.allow_env),
|
2019-12-05 15:30:20 -05:00
|
|
|
|
"plugin" => Ok(self.allow_plugin),
|
2019-11-24 10:42:30 -05:00
|
|
|
|
"hrtime" => Ok(self.allow_hrtime),
|
2020-02-23 14:51:29 -05:00
|
|
|
|
n => Err(OpError::other(format!("No such permission name: {}", n))),
|
2019-10-27 11:22:53 -04:00
|
|
|
|
}
|
2019-04-08 16:22:40 -04:00
|
|
|
|
}
|
2019-03-18 16:46:23 -04:00
|
|
|
|
}
|
2019-03-04 11:04:19 -05:00
|
|
|
|
|
2019-11-11 10:33:29 -05:00
|
|
|
|
/// Shows the permission prompt and returns the answer according to the user input.
|
|
|
|
|
/// This loops until the user gives the proper input.
|
|
|
|
|
#[cfg(not(test))]
|
|
|
|
|
fn permission_prompt(message: &str) -> bool {
|
|
|
|
|
if !atty::is(atty::Stream::Stdin) || !atty::is(atty::Stream::Stderr) {
|
|
|
|
|
return false;
|
|
|
|
|
};
|
|
|
|
|
let msg = format!(
|
|
|
|
|
"️{} {}. Grant? [g/d (g = grant, d = deny)] ",
|
|
|
|
|
PERMISSION_EMOJI, message
|
|
|
|
|
);
|
|
|
|
|
// print to stderr so that if deno is > to a file this is still displayed.
|
2020-02-24 19:30:17 -05:00
|
|
|
|
eprint!("{}", colors::bold(msg));
|
2019-11-11 10:33:29 -05:00
|
|
|
|
loop {
|
|
|
|
|
let mut input = String::new();
|
|
|
|
|
let stdin = io::stdin();
|
|
|
|
|
let result = stdin.read_line(&mut input);
|
|
|
|
|
if result.is_err() {
|
|
|
|
|
return false;
|
|
|
|
|
};
|
|
|
|
|
let ch = input.chars().next().unwrap();
|
|
|
|
|
match ch.to_ascii_lowercase() {
|
|
|
|
|
'g' => return true,
|
|
|
|
|
'd' => return false,
|
|
|
|
|
_ => {
|
|
|
|
|
// If we don't get a recognized option try again.
|
|
|
|
|
let msg_again =
|
|
|
|
|
format!("Unrecognized option '{}' [g/d (g = grant, d = deny)] ", ch);
|
2020-02-24 19:30:17 -05:00
|
|
|
|
eprint!("{}", colors::bold(msg_again));
|
2019-11-11 10:33:29 -05:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-24 09:13:03 -05:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
lazy_static! {
|
|
|
|
|
/// Lock this when you use `set_prompt_result` in a test case.
|
|
|
|
|
static ref PERMISSION_PROMPT_GUARD: Mutex<()> = Mutex::new(());
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-11 10:33:29 -05:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
static STUB_PROMPT_VALUE: AtomicBool = AtomicBool::new(true);
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
fn set_prompt_result(value: bool) {
|
|
|
|
|
STUB_PROMPT_VALUE.store(value, Ordering::SeqCst);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// When testing, permission prompt returns the value of STUB_PROMPT_VALUE
|
|
|
|
|
// which we set from the test functions.
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
fn permission_prompt(_message: &str) -> bool {
|
|
|
|
|
STUB_PROMPT_VALUE.load(Ordering::SeqCst)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn log_perm_access(message: &str) {
|
|
|
|
|
if log_enabled!(log::Level::Info) {
|
|
|
|
|
eprintln!(
|
|
|
|
|
"{}",
|
2020-02-24 19:30:17 -05:00
|
|
|
|
colors::bold(format!("{}️ Granted {}", PERMISSION_EMOJI, message))
|
2019-11-11 10:33:29 -05:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-11 04:29:36 -05:00
|
|
|
|
fn check_path_white_list(path: &Path, white_list: &HashSet<PathBuf>) -> bool {
|
2020-01-20 09:45:44 -05:00
|
|
|
|
let mut path_buf = PathBuf::from(path);
|
2019-05-08 19:20:30 -04:00
|
|
|
|
loop {
|
2020-02-11 04:29:36 -05:00
|
|
|
|
if white_list.contains(&path_buf) {
|
2019-05-08 19:20:30 -04:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if !path_buf.pop() {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
false
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-27 11:22:53 -04:00
|
|
|
|
fn check_host_and_port_whitelist(
|
|
|
|
|
host: &str,
|
|
|
|
|
port: Option<u16>,
|
2019-11-24 10:42:30 -05:00
|
|
|
|
whitelist: &HashSet<String>,
|
2019-10-27 11:22:53 -04:00
|
|
|
|
) -> bool {
|
|
|
|
|
whitelist.contains(host)
|
|
|
|
|
|| (port.is_some()
|
|
|
|
|
&& whitelist.contains(&format!("{}:{}", host, port.unwrap())))
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-08 19:20:30 -04:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
|
|
// Creates vector of strings, Vec<String>
|
|
|
|
|
macro_rules! svec {
|
|
|
|
|
($($x:expr),*) => (vec![$($x.to_string()),*]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn check_paths() {
|
2020-02-11 04:29:36 -05:00
|
|
|
|
let whitelist = vec![
|
|
|
|
|
PathBuf::from("/a/specific/dir/name"),
|
|
|
|
|
PathBuf::from("/a/specific"),
|
|
|
|
|
PathBuf::from("/b/c"),
|
|
|
|
|
];
|
2019-05-08 19:20:30 -04:00
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let perms = DenoPermissions::from_flags(&Flags {
|
2019-05-08 19:20:30 -04:00
|
|
|
|
read_whitelist: whitelist.clone(),
|
2019-12-23 09:59:44 -05:00
|
|
|
|
write_whitelist: whitelist,
|
2019-05-08 19:20:30 -04:00
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Inside of /a/specific and /a/specific/dir/name
|
2020-01-20 09:45:44 -05:00
|
|
|
|
assert!(perms.check_read(Path::new("/a/specific/dir/name")).is_ok());
|
|
|
|
|
assert!(perms.check_write(Path::new("/a/specific/dir/name")).is_ok());
|
2019-05-08 19:20:30 -04:00
|
|
|
|
|
|
|
|
|
// Inside of /a/specific but outside of /a/specific/dir/name
|
2020-01-20 09:45:44 -05:00
|
|
|
|
assert!(perms.check_read(Path::new("/a/specific/dir")).is_ok());
|
|
|
|
|
assert!(perms.check_write(Path::new("/a/specific/dir")).is_ok());
|
2019-05-08 19:20:30 -04:00
|
|
|
|
|
|
|
|
|
// Inside of /a/specific and /a/specific/dir/name
|
2020-01-20 09:45:44 -05:00
|
|
|
|
assert!(perms
|
|
|
|
|
.check_read(Path::new("/a/specific/dir/name/inner"))
|
|
|
|
|
.is_ok());
|
|
|
|
|
assert!(perms
|
|
|
|
|
.check_write(Path::new("/a/specific/dir/name/inner"))
|
|
|
|
|
.is_ok());
|
2019-05-08 19:20:30 -04:00
|
|
|
|
|
|
|
|
|
// Inside of /a/specific but outside of /a/specific/dir/name
|
2020-01-20 09:45:44 -05:00
|
|
|
|
assert!(perms.check_read(Path::new("/a/specific/other/dir")).is_ok());
|
|
|
|
|
assert!(perms
|
|
|
|
|
.check_write(Path::new("/a/specific/other/dir"))
|
|
|
|
|
.is_ok());
|
2019-05-08 19:20:30 -04:00
|
|
|
|
|
|
|
|
|
// Exact match with /b/c
|
2020-01-20 09:45:44 -05:00
|
|
|
|
assert!(perms.check_read(Path::new("/b/c")).is_ok());
|
|
|
|
|
assert!(perms.check_write(Path::new("/b/c")).is_ok());
|
2019-05-08 19:20:30 -04:00
|
|
|
|
|
|
|
|
|
// Sub path within /b/c
|
2020-01-20 09:45:44 -05:00
|
|
|
|
assert!(perms.check_read(Path::new("/b/c/sub/path")).is_ok());
|
|
|
|
|
assert!(perms.check_write(Path::new("/b/c/sub/path")).is_ok());
|
2019-05-08 19:20:30 -04:00
|
|
|
|
|
|
|
|
|
// Inside of /b but outside of /b/c
|
2020-01-20 09:45:44 -05:00
|
|
|
|
assert!(perms.check_read(Path::new("/b/e")).is_err());
|
|
|
|
|
assert!(perms.check_write(Path::new("/b/e")).is_err());
|
2019-05-08 19:20:30 -04:00
|
|
|
|
|
|
|
|
|
// Inside of /a but outside of /a/specific
|
2020-01-20 09:45:44 -05:00
|
|
|
|
assert!(perms.check_read(Path::new("/a/b")).is_err());
|
|
|
|
|
assert!(perms.check_write(Path::new("/a/b")).is_err());
|
2019-05-08 19:20:30 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2019-06-24 19:30:11 -04:00
|
|
|
|
fn test_check_net() {
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let perms = DenoPermissions::from_flags(&Flags {
|
2019-05-08 19:20:30 -04:00
|
|
|
|
net_whitelist: svec![
|
|
|
|
|
"localhost",
|
|
|
|
|
"deno.land",
|
|
|
|
|
"github.com:3000",
|
|
|
|
|
"127.0.0.1",
|
|
|
|
|
"172.16.0.2:8000"
|
|
|
|
|
],
|
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
|
2019-06-24 19:30:11 -04:00
|
|
|
|
let domain_tests = vec![
|
2019-10-23 10:19:27 -04:00
|
|
|
|
("localhost", 1234, true),
|
|
|
|
|
("deno.land", 0, true),
|
|
|
|
|
("deno.land", 3000, true),
|
|
|
|
|
("deno.lands", 0, false),
|
|
|
|
|
("deno.lands", 3000, false),
|
|
|
|
|
("github.com", 3000, true),
|
|
|
|
|
("github.com", 0, false),
|
|
|
|
|
("github.com", 2000, false),
|
|
|
|
|
("github.net", 3000, false),
|
|
|
|
|
("127.0.0.1", 0, true),
|
|
|
|
|
("127.0.0.1", 3000, true),
|
|
|
|
|
("127.0.0.2", 0, false),
|
|
|
|
|
("127.0.0.2", 3000, false),
|
|
|
|
|
("172.16.0.2", 8000, true),
|
|
|
|
|
("172.16.0.2", 0, false),
|
|
|
|
|
("172.16.0.2", 6000, false),
|
|
|
|
|
("172.16.0.1", 8000, false),
|
2019-06-24 19:30:11 -04:00
|
|
|
|
// Just some random hosts that should err
|
2019-10-23 10:19:27 -04:00
|
|
|
|
("somedomain", 0, false),
|
|
|
|
|
("192.168.0.1", 0, false),
|
2019-06-24 19:30:11 -04:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
let url_tests = vec![
|
|
|
|
|
// Any protocol + port for localhost should be ok, since we don't specify
|
|
|
|
|
("http://localhost", true),
|
|
|
|
|
("https://localhost", true),
|
|
|
|
|
("https://localhost:4443", true),
|
|
|
|
|
("tcp://localhost:5000", true),
|
|
|
|
|
("udp://localhost:6000", true),
|
|
|
|
|
// Correct domain + any port and protocol should be ok incorrect shouldn't
|
|
|
|
|
("https://deno.land/std/example/welcome.ts", true),
|
|
|
|
|
("https://deno.land:3000/std/example/welcome.ts", true),
|
|
|
|
|
("https://deno.lands/std/example/welcome.ts", false),
|
|
|
|
|
("https://deno.lands:3000/std/example/welcome.ts", false),
|
|
|
|
|
// Correct domain + port should be ok all other combinations should err
|
|
|
|
|
("https://github.com:3000/denoland/deno", true),
|
|
|
|
|
("https://github.com/denoland/deno", false),
|
|
|
|
|
("https://github.com:2000/denoland/deno", false),
|
|
|
|
|
("https://github.net:3000/denoland/deno", false),
|
|
|
|
|
// Correct ipv4 address + any port should be ok others should err
|
|
|
|
|
("tcp://127.0.0.1", true),
|
|
|
|
|
("https://127.0.0.1", true),
|
|
|
|
|
("tcp://127.0.0.1:3000", true),
|
|
|
|
|
("https://127.0.0.1:3000", true),
|
|
|
|
|
("tcp://127.0.0.2", false),
|
|
|
|
|
("https://127.0.0.2", false),
|
|
|
|
|
("tcp://127.0.0.2:3000", false),
|
|
|
|
|
("https://127.0.0.2:3000", false),
|
|
|
|
|
// Correct address + port should be ok all other combinations should err
|
|
|
|
|
("tcp://172.16.0.2:8000", true),
|
|
|
|
|
("https://172.16.0.2:8000", true),
|
|
|
|
|
("tcp://172.16.0.2", false),
|
|
|
|
|
("https://172.16.0.2", false),
|
|
|
|
|
("tcp://172.16.0.2:6000", false),
|
|
|
|
|
("https://172.16.0.2:6000", false),
|
|
|
|
|
("tcp://172.16.0.1:8000", false),
|
|
|
|
|
("https://172.16.0.1:8000", false),
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
for (url_str, is_ok) in url_tests.iter() {
|
|
|
|
|
let u = url::Url::parse(url_str).unwrap();
|
2019-08-13 14:51:15 -04:00
|
|
|
|
assert_eq!(*is_ok, perms.check_net_url(&u).is_ok());
|
2019-06-24 19:30:11 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-23 10:19:27 -04:00
|
|
|
|
for (host, port, is_ok) in domain_tests.iter() {
|
|
|
|
|
assert_eq!(*is_ok, perms.check_net(host, *port).is_ok());
|
2019-06-24 19:30:11 -04:00
|
|
|
|
}
|
2019-05-08 19:20:30 -04:00
|
|
|
|
}
|
2019-11-11 10:33:29 -05:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_permissions_request_run() {
|
2020-02-24 09:13:03 -05:00
|
|
|
|
let guard = PERMISSION_PROMPT_GUARD.lock().unwrap();
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms0 = DenoPermissions::from_flags(&Flags {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(true);
|
2019-11-24 10:42:30 -05:00
|
|
|
|
assert_eq!(perms0.request_run(), PermissionState::Allow);
|
2019-11-11 10:33:29 -05:00
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms1 = DenoPermissions::from_flags(&Flags {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(false);
|
2019-11-24 10:42:30 -05:00
|
|
|
|
assert_eq!(perms1.request_run(), PermissionState::Deny);
|
2020-02-24 09:13:03 -05:00
|
|
|
|
drop(guard);
|
2019-11-11 10:33:29 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_permissions_request_read() {
|
2020-02-24 09:13:03 -05:00
|
|
|
|
let guard = PERMISSION_PROMPT_GUARD.lock().unwrap();
|
2020-02-11 04:29:36 -05:00
|
|
|
|
let whitelist = vec![PathBuf::from("/foo/bar")];
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms0 = DenoPermissions::from_flags(&Flags {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
read_whitelist: whitelist.clone(),
|
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(false);
|
|
|
|
|
// If the whitelist contains the path, then the result is `allow`
|
|
|
|
|
// regardless of prompt result
|
|
|
|
|
assert_eq!(
|
2020-01-20 09:45:44 -05:00
|
|
|
|
perms0.request_read(&Some(Path::new("/foo/bar"))),
|
2019-11-24 10:42:30 -05:00
|
|
|
|
PermissionState::Allow
|
2019-11-11 10:33:29 -05:00
|
|
|
|
);
|
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms1 = DenoPermissions::from_flags(&Flags {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
read_whitelist: whitelist.clone(),
|
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(true);
|
|
|
|
|
assert_eq!(
|
2020-01-20 09:45:44 -05:00
|
|
|
|
perms1.request_read(&Some(Path::new("/foo/baz"))),
|
2019-11-24 10:42:30 -05:00
|
|
|
|
PermissionState::Allow
|
2019-11-11 10:33:29 -05:00
|
|
|
|
);
|
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms2 = DenoPermissions::from_flags(&Flags {
|
2019-12-23 09:59:44 -05:00
|
|
|
|
read_whitelist: whitelist,
|
2019-11-11 10:33:29 -05:00
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(false);
|
|
|
|
|
assert_eq!(
|
2020-01-20 09:45:44 -05:00
|
|
|
|
perms2.request_read(&Some(Path::new("/foo/baz"))),
|
2019-11-24 10:42:30 -05:00
|
|
|
|
PermissionState::Deny
|
2019-11-11 10:33:29 -05:00
|
|
|
|
);
|
2020-02-24 09:13:03 -05:00
|
|
|
|
drop(guard);
|
2019-11-11 10:33:29 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_permissions_request_write() {
|
2020-02-24 09:13:03 -05:00
|
|
|
|
let guard = PERMISSION_PROMPT_GUARD.lock().unwrap();
|
2020-02-11 04:29:36 -05:00
|
|
|
|
let whitelist = vec![PathBuf::from("/foo/bar")];
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms0 = DenoPermissions::from_flags(&Flags {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
write_whitelist: whitelist.clone(),
|
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(false);
|
|
|
|
|
// If the whitelist contains the path, then the result is `allow`
|
|
|
|
|
// regardless of prompt result
|
|
|
|
|
assert_eq!(
|
2020-01-20 09:45:44 -05:00
|
|
|
|
perms0.request_write(&Some(Path::new("/foo/bar"))),
|
2019-11-24 10:42:30 -05:00
|
|
|
|
PermissionState::Allow
|
2019-11-11 10:33:29 -05:00
|
|
|
|
);
|
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms1 = DenoPermissions::from_flags(&Flags {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
write_whitelist: whitelist.clone(),
|
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(true);
|
|
|
|
|
assert_eq!(
|
2020-01-20 09:45:44 -05:00
|
|
|
|
perms1.request_write(&Some(Path::new("/foo/baz"))),
|
2019-11-24 10:42:30 -05:00
|
|
|
|
PermissionState::Allow
|
2019-11-11 10:33:29 -05:00
|
|
|
|
);
|
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms2 = DenoPermissions::from_flags(&Flags {
|
2019-12-23 09:59:44 -05:00
|
|
|
|
write_whitelist: whitelist,
|
2019-11-11 10:33:29 -05:00
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(false);
|
|
|
|
|
assert_eq!(
|
2020-01-20 09:45:44 -05:00
|
|
|
|
perms2.request_write(&Some(Path::new("/foo/baz"))),
|
2019-11-24 10:42:30 -05:00
|
|
|
|
PermissionState::Deny
|
2019-11-11 10:33:29 -05:00
|
|
|
|
);
|
2020-02-24 09:13:03 -05:00
|
|
|
|
drop(guard);
|
2019-11-11 10:33:29 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_permission_request_net() {
|
2020-02-24 09:13:03 -05:00
|
|
|
|
let guard = PERMISSION_PROMPT_GUARD.lock().unwrap();
|
2019-11-11 10:33:29 -05:00
|
|
|
|
let whitelist = svec!["localhost:8080"];
|
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms0 = DenoPermissions::from_flags(&Flags {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
net_whitelist: whitelist.clone(),
|
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(false);
|
|
|
|
|
// If the url matches the whitelist item, then the result is `allow`
|
|
|
|
|
// regardless of prompt result
|
|
|
|
|
assert_eq!(
|
|
|
|
|
perms0
|
|
|
|
|
.request_net(&Some("http://localhost:8080/"))
|
|
|
|
|
.expect("Testing expect"),
|
2019-11-24 10:42:30 -05:00
|
|
|
|
PermissionState::Allow
|
2019-11-11 10:33:29 -05:00
|
|
|
|
);
|
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms1 = DenoPermissions::from_flags(&Flags {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
net_whitelist: whitelist.clone(),
|
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(true);
|
|
|
|
|
assert_eq!(
|
|
|
|
|
perms1
|
|
|
|
|
.request_net(&Some("http://deno.land/"))
|
|
|
|
|
.expect("Testing expect"),
|
2019-11-24 10:42:30 -05:00
|
|
|
|
PermissionState::Allow
|
2019-11-11 10:33:29 -05:00
|
|
|
|
);
|
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms2 = DenoPermissions::from_flags(&Flags {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
net_whitelist: whitelist.clone(),
|
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(false);
|
|
|
|
|
assert_eq!(
|
|
|
|
|
perms2
|
|
|
|
|
.request_net(&Some("http://deno.land/"))
|
|
|
|
|
.expect("Testing expect"),
|
2019-11-24 10:42:30 -05:00
|
|
|
|
PermissionState::Deny
|
2019-11-11 10:33:29 -05:00
|
|
|
|
);
|
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms3 = DenoPermissions::from_flags(&Flags {
|
2019-12-23 09:59:44 -05:00
|
|
|
|
net_whitelist: whitelist,
|
2019-11-11 10:33:29 -05:00
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(true);
|
|
|
|
|
assert!(perms3.request_net(&Some(":")).is_err());
|
2020-02-24 09:13:03 -05:00
|
|
|
|
drop(guard);
|
2019-11-11 10:33:29 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_permissions_request_env() {
|
2020-02-24 09:13:03 -05:00
|
|
|
|
let guard = PERMISSION_PROMPT_GUARD.lock().unwrap();
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms0 = DenoPermissions::from_flags(&Flags {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(true);
|
2019-11-24 10:42:30 -05:00
|
|
|
|
assert_eq!(perms0.request_env(), PermissionState::Allow);
|
2019-11-11 10:33:29 -05:00
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms1 = DenoPermissions::from_flags(&Flags {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(false);
|
2019-11-24 10:42:30 -05:00
|
|
|
|
assert_eq!(perms1.request_env(), PermissionState::Deny);
|
2020-02-24 09:13:03 -05:00
|
|
|
|
drop(guard);
|
2019-11-11 10:33:29 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-05 15:30:20 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_permissions_request_plugin() {
|
2020-02-24 09:13:03 -05:00
|
|
|
|
let guard = PERMISSION_PROMPT_GUARD.lock().unwrap();
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms0 = DenoPermissions::from_flags(&Flags {
|
2019-12-05 15:30:20 -05:00
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(true);
|
|
|
|
|
assert_eq!(perms0.request_plugin(), PermissionState::Allow);
|
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms1 = DenoPermissions::from_flags(&Flags {
|
2019-12-05 15:30:20 -05:00
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(false);
|
|
|
|
|
assert_eq!(perms1.request_plugin(), PermissionState::Deny);
|
2020-02-24 09:13:03 -05:00
|
|
|
|
drop(guard);
|
2019-12-05 15:30:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-11 10:33:29 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_permissions_request_hrtime() {
|
2020-02-24 09:13:03 -05:00
|
|
|
|
let guard = PERMISSION_PROMPT_GUARD.lock().unwrap();
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms0 = DenoPermissions::from_flags(&Flags {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(true);
|
2019-11-24 10:42:30 -05:00
|
|
|
|
assert_eq!(perms0.request_hrtime(), PermissionState::Allow);
|
2019-11-11 10:33:29 -05:00
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
|
let mut perms1 = DenoPermissions::from_flags(&Flags {
|
2019-11-11 10:33:29 -05:00
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
set_prompt_result(false);
|
2019-11-24 10:42:30 -05:00
|
|
|
|
assert_eq!(perms1.request_hrtime(), PermissionState::Deny);
|
2020-02-24 09:13:03 -05:00
|
|
|
|
drop(guard);
|
2019-11-11 10:33:29 -05:00
|
|
|
|
}
|
2019-05-08 19:20:30 -04:00
|
|
|
|
}
|