2021-01-11 12:13:41 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-09-05 20:34:02 -04:00
|
|
|
|
2019-06-26 06:02:13 -04:00
|
|
|
use clap::App;
|
|
|
|
use clap::AppSettings;
|
|
|
|
use clap::Arg;
|
|
|
|
use clap::ArgMatches;
|
2020-08-14 13:45:22 -04:00
|
|
|
use clap::ArgSettings;
|
2019-06-26 06:02:13 -04:00
|
|
|
use clap::SubCommand;
|
2021-01-04 18:15:52 -05:00
|
|
|
use deno_core::serde::Deserialize;
|
|
|
|
use deno_core::serde::Serialize;
|
2021-01-07 13:06:08 -05:00
|
|
|
use deno_core::url::Url;
|
2020-12-29 13:34:35 -05:00
|
|
|
use deno_runtime::permissions::PermissionsOptions;
|
2021-03-26 12:34:25 -04:00
|
|
|
use log::debug;
|
2019-06-22 12:02:51 -04:00
|
|
|
use log::Level;
|
2020-04-03 13:40:11 -04:00
|
|
|
use std::net::SocketAddr;
|
2020-05-29 11:27:43 -04:00
|
|
|
use std::path::PathBuf;
|
2020-11-12 17:17:31 -05:00
|
|
|
use std::str::FromStr;
|
2019-11-26 11:06:32 -05:00
|
|
|
|
2021-03-26 12:34:25 -04:00
|
|
|
lazy_static::lazy_static! {
|
|
|
|
static ref LONG_VERSION: String = format!(
|
|
|
|
"{} ({}, {})\nv8 {}\ntypescript {}",
|
|
|
|
crate::version::deno(),
|
|
|
|
if crate::version::is_canary() {
|
|
|
|
"canary"
|
|
|
|
} else {
|
|
|
|
env!("PROFILE")
|
|
|
|
},
|
|
|
|
env!("TARGET"),
|
|
|
|
deno_core::v8_version(),
|
|
|
|
crate::version::TYPESCRIPT
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-01-04 18:15:52 -05:00
|
|
|
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
|
2019-11-26 11:06:32 -05:00
|
|
|
pub enum DenoSubcommand {
|
2020-02-04 14:24:33 -05:00
|
|
|
Bundle {
|
|
|
|
source_file: String,
|
2020-02-11 04:29:36 -05:00
|
|
|
out_file: Option<PathBuf>,
|
2020-02-04 14:24:33 -05:00
|
|
|
},
|
2020-12-07 05:46:39 -05:00
|
|
|
Cache {
|
|
|
|
files: Vec<String>,
|
|
|
|
},
|
2020-11-30 14:35:12 -05:00
|
|
|
Compile {
|
|
|
|
source_file: String,
|
2020-12-01 09:11:02 -05:00
|
|
|
output: Option<PathBuf>,
|
2021-01-04 18:15:52 -05:00
|
|
|
args: Vec<String>,
|
2021-01-18 21:40:22 -05:00
|
|
|
target: Option<String>,
|
2020-11-30 14:35:12 -05:00
|
|
|
},
|
2020-02-04 14:24:33 -05:00
|
|
|
Completions {
|
|
|
|
buf: Box<[u8]>,
|
|
|
|
},
|
2021-02-24 09:27:51 -05:00
|
|
|
Coverage {
|
|
|
|
files: Vec<PathBuf>,
|
|
|
|
ignore: Vec<PathBuf>,
|
|
|
|
include: Vec<String>,
|
|
|
|
exclude: Vec<String>,
|
|
|
|
lcov: bool,
|
|
|
|
},
|
2020-03-28 14:16:57 -04:00
|
|
|
Doc {
|
2020-07-12 08:16:33 -04:00
|
|
|
private: bool,
|
2020-03-28 14:16:57 -04:00
|
|
|
json: bool,
|
2020-04-09 08:34:24 -04:00
|
|
|
source_file: Option<String>,
|
2020-03-28 14:16:57 -04:00
|
|
|
filter: Option<String>,
|
|
|
|
},
|
2020-02-04 14:24:33 -05:00
|
|
|
Eval {
|
2020-05-21 10:35:36 -04:00
|
|
|
print: bool,
|
2020-02-04 14:24:33 -05:00
|
|
|
code: String,
|
2021-02-21 11:58:32 -05:00
|
|
|
ext: String,
|
2020-02-04 14:24:33 -05:00
|
|
|
},
|
2020-02-13 16:02:18 -05:00
|
|
|
Fmt {
|
2020-01-29 21:16:48 -05:00
|
|
|
check: bool,
|
2020-10-21 07:12:01 -04:00
|
|
|
files: Vec<PathBuf>,
|
|
|
|
ignore: Vec<PathBuf>,
|
2021-01-19 12:39:35 -05:00
|
|
|
ext: String,
|
2020-01-29 21:16:48 -05:00
|
|
|
},
|
2020-02-04 14:24:33 -05:00
|
|
|
Info {
|
2020-07-08 10:50:12 -04:00
|
|
|
json: bool,
|
2020-02-04 14:24:33 -05:00
|
|
|
file: Option<String>,
|
|
|
|
},
|
2020-01-30 18:42:39 -05:00
|
|
|
Install {
|
|
|
|
module_url: String,
|
|
|
|
args: Vec<String>,
|
2020-05-01 15:33:11 -04:00
|
|
|
name: Option<String>,
|
|
|
|
root: Option<PathBuf>,
|
2020-02-08 03:49:55 -05:00
|
|
|
force: bool,
|
2020-01-30 18:42:39 -05:00
|
|
|
},
|
2021-02-26 09:51:25 -05:00
|
|
|
Lsp,
|
2020-06-08 08:06:20 -04:00
|
|
|
Lint {
|
2020-10-21 07:12:01 -04:00
|
|
|
files: Vec<PathBuf>,
|
|
|
|
ignore: Vec<PathBuf>,
|
2020-06-12 10:42:12 -04:00
|
|
|
rules: bool,
|
2020-08-13 11:30:46 -04:00
|
|
|
json: bool,
|
2020-06-08 08:06:20 -04:00
|
|
|
},
|
2019-11-26 11:06:32 -05:00
|
|
|
Repl,
|
2020-02-04 14:24:33 -05:00
|
|
|
Run {
|
|
|
|
script: String,
|
|
|
|
},
|
2020-02-11 06:01:56 -05:00
|
|
|
Test {
|
2020-11-22 08:06:51 -05:00
|
|
|
no_run: bool,
|
2020-02-11 06:01:56 -05:00
|
|
|
fail_fast: bool,
|
2020-04-27 07:05:26 -04:00
|
|
|
quiet: bool,
|
2020-02-11 06:01:56 -05:00
|
|
|
allow_none: bool,
|
|
|
|
include: Option<Vec<String>>,
|
2020-04-02 09:26:40 -04:00
|
|
|
filter: Option<String>,
|
2021-04-28 14:17:04 -04:00
|
|
|
concurrent_jobs: usize,
|
2020-02-11 06:01:56 -05:00
|
|
|
},
|
2019-11-26 11:06:32 -05:00
|
|
|
Types,
|
2020-03-23 11:37:24 -04:00
|
|
|
Upgrade {
|
|
|
|
dry_run: bool,
|
|
|
|
force: bool,
|
2020-11-29 14:00:35 -05:00
|
|
|
canary: bool,
|
2020-05-09 06:31:15 -04:00
|
|
|
version: Option<String>,
|
2020-07-06 18:21:26 -04:00
|
|
|
output: Option<PathBuf>,
|
2020-07-05 23:58:23 -04:00
|
|
|
ca_file: Option<String>,
|
2020-03-23 11:37:24 -04:00
|
|
|
},
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for DenoSubcommand {
|
|
|
|
fn default() -> DenoSubcommand {
|
2020-02-04 14:24:33 -05:00
|
|
|
DenoSubcommand::Repl
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2018-08-17 16:34:30 -04:00
|
|
|
}
|
|
|
|
|
2021-01-07 21:08:51 -05:00
|
|
|
#[derive(Clone, Debug, PartialEq, Default)]
|
2020-02-26 05:52:15 -05:00
|
|
|
pub struct Flags {
|
2019-12-03 17:23:10 -05:00
|
|
|
/// Vector of CLI arguments - these are user script arguments, all Deno
|
|
|
|
/// specific flags are removed.
|
2019-11-26 11:06:32 -05:00
|
|
|
pub argv: Vec<String>,
|
|
|
|
pub subcommand: DenoSubcommand,
|
|
|
|
|
2021-04-13 07:25:21 -04:00
|
|
|
pub allow_env: Option<Vec<String>>,
|
2019-05-23 12:28:29 -04:00
|
|
|
pub allow_hrtime: bool,
|
2020-12-29 13:34:35 -05:00
|
|
|
pub allow_net: Option<Vec<String>>,
|
2020-04-30 11:23:40 -04:00
|
|
|
pub allow_plugin: bool,
|
2020-12-29 13:34:35 -05:00
|
|
|
pub allow_read: Option<Vec<PathBuf>>,
|
2021-04-09 18:12:00 -04:00
|
|
|
pub allow_run: Option<Vec<String>>,
|
2020-12-29 13:34:35 -05:00
|
|
|
pub allow_write: Option<Vec<PathBuf>>,
|
2021-01-07 13:06:08 -05:00
|
|
|
pub location: Option<Url>,
|
2020-06-13 13:09:39 -04:00
|
|
|
pub cache_blocklist: Vec<String>,
|
2020-04-30 11:23:40 -04:00
|
|
|
pub ca_file: Option<String>,
|
2019-12-03 17:48:53 -05:00
|
|
|
pub cached_only: bool,
|
2020-04-30 11:23:40 -04:00
|
|
|
pub config_path: Option<String>,
|
2020-12-21 08:04:25 -05:00
|
|
|
pub coverage_dir: Option<String>,
|
2020-10-21 07:12:01 -04:00
|
|
|
pub ignore: Vec<PathBuf>,
|
2020-04-30 11:23:40 -04:00
|
|
|
pub import_map_path: Option<String>,
|
2020-04-03 13:40:11 -04:00
|
|
|
pub inspect: Option<SocketAddr>,
|
|
|
|
pub inspect_brk: Option<SocketAddr>,
|
2020-10-19 15:19:20 -04:00
|
|
|
pub lock: Option<PathBuf>,
|
2019-11-03 10:39:27 -05:00
|
|
|
pub lock_write: bool,
|
2020-04-30 11:23:40 -04:00
|
|
|
pub log_level: Option<Level>,
|
2020-07-08 05:26:39 -04:00
|
|
|
pub no_check: bool,
|
2021-04-11 22:15:43 -04:00
|
|
|
pub prompt: bool,
|
2020-04-30 11:23:40 -04:00
|
|
|
pub no_remote: bool,
|
|
|
|
pub reload: bool,
|
2020-10-01 19:14:55 -04:00
|
|
|
pub repl: bool,
|
2020-04-30 11:23:40 -04:00
|
|
|
pub seed: Option<u64>,
|
|
|
|
pub unstable: bool,
|
2020-12-06 12:19:21 -05:00
|
|
|
pub v8_flags: Vec<String>,
|
2020-04-30 11:23:40 -04:00
|
|
|
pub version: bool,
|
2020-09-11 12:19:49 -04:00
|
|
|
pub watch: bool,
|
2018-11-15 12:56:17 -05:00
|
|
|
}
|
|
|
|
|
2020-06-13 13:09:39 -04:00
|
|
|
fn join_paths(allowlist: &[PathBuf], d: &str) -> String {
|
|
|
|
allowlist
|
2020-02-11 04:29:36 -05:00
|
|
|
.iter()
|
|
|
|
.map(|path| path.to_str().unwrap().to_string())
|
|
|
|
.collect::<Vec<String>>()
|
|
|
|
.join(d)
|
|
|
|
}
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
impl Flags {
|
2020-01-30 18:42:39 -05:00
|
|
|
/// Return list of permission arguments that are equivalent
|
|
|
|
/// to the ones used to create `self`.
|
|
|
|
pub fn to_permission_args(&self) -> Vec<String> {
|
|
|
|
let mut args = vec![];
|
|
|
|
|
2020-12-29 13:34:35 -05:00
|
|
|
match &self.allow_read {
|
|
|
|
Some(read_allowlist) if read_allowlist.is_empty() => {
|
|
|
|
args.push("--allow-read".to_string());
|
|
|
|
}
|
|
|
|
Some(read_allowlist) => {
|
|
|
|
let s = format!("--allow-read={}", join_paths(read_allowlist, ","));
|
|
|
|
args.push(s);
|
|
|
|
}
|
|
|
|
_ => {}
|
2020-01-30 18:42:39 -05:00
|
|
|
}
|
|
|
|
|
2020-12-29 13:34:35 -05:00
|
|
|
match &self.allow_write {
|
|
|
|
Some(write_allowlist) if write_allowlist.is_empty() => {
|
|
|
|
args.push("--allow-write".to_string());
|
|
|
|
}
|
|
|
|
Some(write_allowlist) => {
|
|
|
|
let s = format!("--allow-write={}", join_paths(write_allowlist, ","));
|
|
|
|
args.push(s);
|
|
|
|
}
|
|
|
|
_ => {}
|
2020-01-30 18:42:39 -05:00
|
|
|
}
|
|
|
|
|
2020-12-29 13:34:35 -05:00
|
|
|
match &self.allow_net {
|
|
|
|
Some(net_allowlist) if net_allowlist.is_empty() => {
|
|
|
|
args.push("--allow-net".to_string());
|
|
|
|
}
|
|
|
|
Some(net_allowlist) => {
|
|
|
|
let s = format!("--allow-net={}", net_allowlist.join(","));
|
|
|
|
args.push(s);
|
|
|
|
}
|
|
|
|
_ => {}
|
2020-01-30 18:42:39 -05:00
|
|
|
}
|
|
|
|
|
2021-04-13 07:25:21 -04:00
|
|
|
match &self.allow_env {
|
|
|
|
Some(env_allowlist) if env_allowlist.is_empty() => {
|
|
|
|
args.push("--allow-env".to_string());
|
|
|
|
}
|
|
|
|
Some(env_allowlist) => {
|
|
|
|
let s = format!("--allow-env={}", env_allowlist.join(","));
|
|
|
|
args.push(s);
|
|
|
|
}
|
|
|
|
_ => {}
|
2020-01-30 18:42:39 -05:00
|
|
|
}
|
|
|
|
|
2021-04-09 18:12:00 -04:00
|
|
|
match &self.allow_run {
|
|
|
|
Some(run_allowlist) if run_allowlist.is_empty() => {
|
|
|
|
args.push("--allow-run".to_string());
|
|
|
|
}
|
|
|
|
Some(run_allowlist) => {
|
|
|
|
let s = format!("--allow-run={}", run_allowlist.join(","));
|
|
|
|
args.push(s);
|
|
|
|
}
|
|
|
|
_ => {}
|
2020-01-30 18:42:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if self.allow_plugin {
|
|
|
|
args.push("--allow-plugin".to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.allow_hrtime {
|
|
|
|
args.push("--allow-hrtime".to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
args
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-29 13:34:35 -05:00
|
|
|
impl From<Flags> for PermissionsOptions {
|
|
|
|
fn from(flags: Flags) -> Self {
|
|
|
|
Self {
|
|
|
|
allow_env: flags.allow_env,
|
|
|
|
allow_hrtime: flags.allow_hrtime,
|
|
|
|
allow_net: flags.allow_net,
|
|
|
|
allow_plugin: flags.allow_plugin,
|
|
|
|
allow_read: flags.allow_read,
|
|
|
|
allow_run: flags.allow_run,
|
|
|
|
allow_write: flags.allow_write,
|
2021-04-11 22:15:43 -04:00
|
|
|
prompt: flags.prompt,
|
2020-12-29 13:34:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-15 21:50:27 -05:00
|
|
|
static ENV_VARIABLES_HELP: &str = r#"ENVIRONMENT VARIABLES:
|
|
|
|
DENO_AUTH_TOKENS A semi-colon separated list of bearer tokens and
|
|
|
|
hostnames to use when fetching remote modules from
|
|
|
|
private repositories
|
|
|
|
(e.g. "abcde12345@deno.land;54321edcba@github.com")
|
|
|
|
DENO_CERT Load certificate authority from PEM encoded file
|
2020-06-15 12:29:39 -04:00
|
|
|
DENO_DIR Set the cache directory
|
2020-04-16 18:15:42 -04:00
|
|
|
DENO_INSTALL_ROOT Set deno install's output directory
|
|
|
|
(defaults to $HOME/.deno/bin)
|
2021-03-01 05:31:13 -05:00
|
|
|
DENO_WEBGPU_TRACE Directory to use for wgpu traces
|
2020-04-16 18:15:42 -04:00
|
|
|
HTTP_PROXY Proxy address for HTTP requests
|
|
|
|
(module downloads, fetch)
|
2020-06-08 12:06:06 -04:00
|
|
|
HTTPS_PROXY Proxy address for HTTPS requests
|
2020-08-15 09:48:29 -04:00
|
|
|
(module downloads, fetch)
|
2021-02-15 21:50:27 -05:00
|
|
|
NO_COLOR Set to disable color
|
2020-08-15 09:48:29 -04:00
|
|
|
NO_PROXY Comma-separated list of hosts which do not use a proxy
|
2021-02-15 21:50:27 -05:00
|
|
|
(module downloads, fetch)"#;
|
2019-06-05 13:44:46 -04:00
|
|
|
|
2019-11-26 11:06:32 -05:00
|
|
|
static DENO_HELP: &str = "A secure JavaScript and TypeScript runtime
|
2019-05-06 10:48:19 -04:00
|
|
|
|
2020-05-17 13:24:39 -04:00
|
|
|
Docs: https://deno.land/manual
|
2020-03-10 19:23:08 -04:00
|
|
|
Modules: https://deno.land/std/ https://deno.land/x/
|
2019-05-23 14:57:44 -04:00
|
|
|
Bugs: https://github.com/denoland/deno/issues
|
|
|
|
|
2020-05-04 07:03:30 -04:00
|
|
|
To start the REPL:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2019-05-23 14:57:44 -04:00
|
|
|
deno
|
|
|
|
|
2019-11-26 11:06:32 -05:00
|
|
|
To execute a script:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2020-03-10 19:23:08 -04:00
|
|
|
deno run https://deno.land/std/examples/welcome.ts
|
2019-05-23 14:57:44 -04:00
|
|
|
|
2020-03-10 19:23:08 -04:00
|
|
|
To evaluate code in the shell:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2020-03-10 19:23:08 -04:00
|
|
|
deno eval \"console.log(30933 + 404)\"
|
2020-05-04 07:03:30 -04:00
|
|
|
";
|
2019-05-23 14:57:44 -04:00
|
|
|
|
2019-11-26 11:06:32 -05:00
|
|
|
/// Main entry point for parsing deno's command line flags.
|
2021-01-07 13:06:08 -05:00
|
|
|
pub fn flags_from_vec(args: Vec<String>) -> clap::Result<Flags> {
|
2020-11-25 05:30:14 -05:00
|
|
|
let version = crate::version::deno();
|
|
|
|
let app = clap_root(&*version);
|
2021-01-07 13:06:08 -05:00
|
|
|
let matches = app.get_matches_from_safe(args).map_err(|e| clap::Error {
|
|
|
|
message: e.message.trim_start_matches("error: ").to_string(),
|
|
|
|
..e
|
|
|
|
})?;
|
2019-11-26 11:06:32 -05:00
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
let mut flags = Flags::default();
|
2019-11-26 11:06:32 -05:00
|
|
|
|
2020-09-20 07:45:00 -04:00
|
|
|
if matches.is_present("unstable") {
|
|
|
|
flags.unstable = true;
|
|
|
|
}
|
2019-11-26 11:06:32 -05:00
|
|
|
if matches.is_present("log-level") {
|
|
|
|
flags.log_level = match matches.value_of("log-level").unwrap() {
|
|
|
|
"debug" => Some(Level::Debug),
|
|
|
|
"info" => Some(Level::Info),
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
}
|
2020-03-10 08:26:17 -04:00
|
|
|
if matches.is_present("quiet") {
|
|
|
|
flags.log_level = Some(Level::Error);
|
|
|
|
}
|
2019-11-26 11:06:32 -05:00
|
|
|
|
|
|
|
if let Some(m) = matches.subcommand_matches("run") {
|
|
|
|
run_parse(&mut flags, m);
|
|
|
|
} else if let Some(m) = matches.subcommand_matches("fmt") {
|
|
|
|
fmt_parse(&mut flags, m);
|
|
|
|
} else if let Some(m) = matches.subcommand_matches("types") {
|
|
|
|
types_parse(&mut flags, m);
|
2020-04-07 11:24:47 -04:00
|
|
|
} else if let Some(m) = matches.subcommand_matches("cache") {
|
|
|
|
cache_parse(&mut flags, m);
|
2021-02-24 09:27:51 -05:00
|
|
|
} else if let Some(m) = matches.subcommand_matches("coverage") {
|
|
|
|
coverage_parse(&mut flags, m);
|
2019-11-26 11:06:32 -05:00
|
|
|
} else if let Some(m) = matches.subcommand_matches("info") {
|
|
|
|
info_parse(&mut flags, m);
|
|
|
|
} else if let Some(m) = matches.subcommand_matches("eval") {
|
|
|
|
eval_parse(&mut flags, m);
|
|
|
|
} else if let Some(m) = matches.subcommand_matches("repl") {
|
|
|
|
repl_parse(&mut flags, m);
|
|
|
|
} else if let Some(m) = matches.subcommand_matches("bundle") {
|
|
|
|
bundle_parse(&mut flags, m);
|
|
|
|
} else if let Some(m) = matches.subcommand_matches("install") {
|
|
|
|
install_parse(&mut flags, m);
|
|
|
|
} else if let Some(m) = matches.subcommand_matches("completions") {
|
|
|
|
completions_parse(&mut flags, m);
|
|
|
|
} else if let Some(m) = matches.subcommand_matches("test") {
|
|
|
|
test_parse(&mut flags, m);
|
2020-03-23 11:37:24 -04:00
|
|
|
} else if let Some(m) = matches.subcommand_matches("upgrade") {
|
|
|
|
upgrade_parse(&mut flags, m);
|
2020-03-28 14:16:57 -04:00
|
|
|
} else if let Some(m) = matches.subcommand_matches("doc") {
|
|
|
|
doc_parse(&mut flags, m);
|
2020-06-08 08:06:20 -04:00
|
|
|
} else if let Some(m) = matches.subcommand_matches("lint") {
|
|
|
|
lint_parse(&mut flags, m);
|
2020-11-30 14:35:12 -05:00
|
|
|
} else if let Some(m) = matches.subcommand_matches("compile") {
|
|
|
|
compile_parse(&mut flags, m);
|
2020-12-07 05:46:39 -05:00
|
|
|
} else if let Some(m) = matches.subcommand_matches("lsp") {
|
2021-02-26 09:51:25 -05:00
|
|
|
lsp_parse(&mut flags, m);
|
2019-11-26 11:06:32 -05:00
|
|
|
} else {
|
2020-05-04 07:03:30 -04:00
|
|
|
repl_parse(&mut flags, &matches);
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(flags)
|
|
|
|
}
|
|
|
|
|
2020-11-25 05:30:14 -05:00
|
|
|
fn clap_root<'a, 'b>(version: &'b str) -> App<'a, 'b> {
|
2019-11-26 11:06:32 -05:00
|
|
|
clap::App::new("deno")
|
|
|
|
.bin_name("deno")
|
|
|
|
.global_settings(&[
|
|
|
|
AppSettings::UnifiedHelpMessage,
|
|
|
|
AppSettings::ColorNever,
|
|
|
|
AppSettings::VersionlessSubcommands,
|
|
|
|
])
|
|
|
|
// Disable clap's auto-detection of terminal width
|
|
|
|
.set_term_width(0)
|
|
|
|
// Disable each subcommand having its own version.
|
2020-11-25 05:30:14 -05:00
|
|
|
.version(version)
|
2019-12-15 08:38:34 -05:00
|
|
|
.long_version(LONG_VERSION.as_str())
|
2020-09-20 07:45:00 -04:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("unstable")
|
|
|
|
.long("unstable")
|
|
|
|
.help("Enable unstable features and APIs")
|
|
|
|
.global(true),
|
|
|
|
)
|
2019-04-06 18:13:06 -04:00
|
|
|
.arg(
|
2019-06-22 12:02:51 -04:00
|
|
|
Arg::with_name("log-level")
|
|
|
|
.short("L")
|
|
|
|
.long("log-level")
|
|
|
|
.help("Set log level")
|
|
|
|
.takes_value(true)
|
|
|
|
.possible_values(&["debug", "info"])
|
2019-05-03 17:15:16 -04:00
|
|
|
.global(true),
|
2019-07-31 11:02:20 -04:00
|
|
|
)
|
2020-03-10 08:26:17 -04:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("quiet")
|
|
|
|
.short("q")
|
|
|
|
.long("quiet")
|
|
|
|
.help("Suppress diagnostic output")
|
|
|
|
.long_help(
|
|
|
|
"Suppress diagnostic output
|
|
|
|
By default, subcommands print human-readable diagnostic messages to stderr.
|
|
|
|
If the flag is set, restrict these messages to errors.",
|
|
|
|
)
|
|
|
|
.global(true),
|
|
|
|
)
|
2019-11-26 11:06:32 -05:00
|
|
|
.subcommand(bundle_subcommand())
|
2020-06-08 08:06:20 -04:00
|
|
|
.subcommand(cache_subcommand())
|
2020-11-30 14:35:12 -05:00
|
|
|
.subcommand(compile_subcommand())
|
2019-11-26 11:06:32 -05:00
|
|
|
.subcommand(completions_subcommand())
|
2021-02-24 09:27:51 -05:00
|
|
|
.subcommand(coverage_subcommand())
|
2020-06-08 08:06:20 -04:00
|
|
|
.subcommand(doc_subcommand())
|
2019-11-26 11:06:32 -05:00
|
|
|
.subcommand(eval_subcommand())
|
|
|
|
.subcommand(fmt_subcommand())
|
|
|
|
.subcommand(info_subcommand())
|
|
|
|
.subcommand(install_subcommand())
|
2021-02-26 09:51:25 -05:00
|
|
|
.subcommand(lsp_subcommand())
|
2020-06-08 08:06:20 -04:00
|
|
|
.subcommand(lint_subcommand())
|
2019-11-26 11:06:32 -05:00
|
|
|
.subcommand(repl_subcommand())
|
|
|
|
.subcommand(run_subcommand())
|
|
|
|
.subcommand(test_subcommand())
|
|
|
|
.subcommand(types_subcommand())
|
2020-03-23 11:37:24 -04:00
|
|
|
.subcommand(upgrade_subcommand())
|
2019-11-26 11:06:32 -05:00
|
|
|
.long_about(DENO_HELP)
|
|
|
|
.after_help(ENV_VARIABLES_HELP)
|
|
|
|
}
|
2019-11-13 10:35:56 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn bundle_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
compile_args(SubCommand::with_name("bundle"))
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("source_file")
|
|
|
|
.takes_value(true)
|
|
|
|
.required(true),
|
|
|
|
)
|
|
|
|
.arg(Arg::with_name("out_file").takes_value(true).required(false))
|
|
|
|
.arg(watch_arg())
|
|
|
|
.about("Bundle module and dependencies into single file")
|
|
|
|
.long_about(
|
|
|
|
"Output a single JavaScript file with all dependencies.
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno bundle https://deno.land/std/examples/colors.ts colors.bundle.js
|
|
|
|
|
|
|
|
If no output file is given, the output is written to standard output:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno bundle https://deno.land/std/examples/colors.ts",
|
|
|
|
)
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-06-11 14:38:19 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn cache_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
compile_args(SubCommand::with_name("cache"))
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("file")
|
|
|
|
.takes_value(true)
|
|
|
|
.required(true)
|
|
|
|
.min_values(1),
|
|
|
|
)
|
|
|
|
.about("Cache the dependencies")
|
|
|
|
.long_about(
|
|
|
|
"Cache and compile remote dependencies recursively.
|
2021-01-19 12:39:35 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Download and compile a module with all of its static dependencies and save them
|
|
|
|
in the local cache, without running any code:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno cache https://deno.land/std/http/file_server.ts
|
|
|
|
|
|
|
|
Future runs of this module will trigger no downloads or compilation unless
|
|
|
|
--reload is specified.",
|
|
|
|
)
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-05-01 19:15:37 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn compile_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
runtime_args(SubCommand::with_name("compile"), true, false)
|
|
|
|
.setting(AppSettings::TrailingVarArg)
|
|
|
|
.arg(
|
|
|
|
script_arg().required(true),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("output")
|
|
|
|
.long("output")
|
|
|
|
.short("o")
|
|
|
|
.help("Output file (defaults to $PWD/<inferred-name>)")
|
|
|
|
.takes_value(true)
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("target")
|
|
|
|
.long("target")
|
|
|
|
.help("Target OS architecture")
|
|
|
|
.takes_value(true)
|
|
|
|
.possible_values(&["x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc", "x86_64-apple-darwin", "aarch64-apple-darwin"])
|
|
|
|
)
|
2021-04-27 06:44:36 -04:00
|
|
|
.about("UNSTABLE: Compile the script into a self contained executable")
|
2021-04-16 09:28:41 -04:00
|
|
|
.long_about(
|
2021-04-27 06:44:36 -04:00
|
|
|
"UNSTABLE: Compiles the given script into a self contained executable.
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-27 06:44:36 -04:00
|
|
|
deno compile -A https://deno.land/std/http/file_server.ts
|
|
|
|
deno compile --output /usr/local/bin/color_util https://deno.land/std/examples/colors.ts
|
2019-11-26 11:06:32 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Any flags passed which affect runtime behavior, such as '--unstable',
|
|
|
|
'--allow-*', '--v8-flags', etc. are encoded into the output executable and used
|
|
|
|
at runtime as if they were passed to a similar 'deno run' command.
|
2019-05-01 19:15:37 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
The executable name is inferred by default:
|
|
|
|
- Attempt to take the file stem of the URL path. The above example would
|
|
|
|
become 'file_server'.
|
|
|
|
- If the file stem is something generic like 'main', 'mod', 'index' or 'cli',
|
|
|
|
and the path has no parent, take the file name of the parent path. Otherwise
|
|
|
|
settle with the generic name.
|
|
|
|
- If the resulting name has an '@...' suffix, strip it.
|
2020-01-30 18:42:39 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
This commands supports cross-compiling to different target architectures using `--target` flag.
|
|
|
|
On the first invocation with deno will download proper binary and cache it in $DENO_DIR. The
|
|
|
|
aarch64-apple-darwin target is not supported in canary.
|
|
|
|
",
|
|
|
|
)
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-05-01 19:15:37 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn completions_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
SubCommand::with_name("completions")
|
|
|
|
.setting(AppSettings::DisableHelpSubcommand)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("shell")
|
|
|
|
.possible_values(&clap::Shell::variants())
|
|
|
|
.required(true),
|
|
|
|
)
|
|
|
|
.about("Generate shell completions")
|
|
|
|
.long_about(
|
|
|
|
"Output shell completion script to standard output.
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno completions bash > /usr/local/etc/bash_completion.d/deno.bash
|
|
|
|
source /usr/local/etc/bash_completion.d/deno.bash",
|
|
|
|
)
|
2020-11-30 14:35:12 -05:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn coverage_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
SubCommand::with_name("coverage")
|
|
|
|
.about("Print coverage reports")
|
|
|
|
.long_about(
|
|
|
|
"Print coverage reports from coverage profiles.
|
2020-02-17 11:59:51 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Collect a coverage profile with deno test:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno test --coverage=cov_profile
|
2020-02-04 14:24:33 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Print a report to stdout:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno coverage cov_profile
|
2020-02-04 14:24:33 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Include urls that start with the file schema:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno coverage --include=\"^file:\" cov_profile
|
2020-11-22 15:45:44 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Exclude urls ending with test.ts and test.js:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno coverage --exclude=\"test\\.(ts|js)\" cov_profile
|
2019-05-23 14:57:44 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Include urls that start with the file schema and exclude files ending with test.ts and test.js, for
|
|
|
|
an url to match it must match the include pattern and not match the exclude pattern:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno coverage --include=\"^file:\" --exclude=\"test\\.(ts|js)\" cov_profile
|
2020-02-04 14:24:33 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Write a report using the lcov format:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno coverage --lcov cov_profile > cov.lcov
|
|
|
|
|
|
|
|
Generate html reports from lcov:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
genhtml -o html_cov cov.lcov
|
|
|
|
",
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("ignore")
|
|
|
|
.long("ignore")
|
|
|
|
.takes_value(true)
|
|
|
|
.use_delimiter(true)
|
|
|
|
.require_equals(true)
|
|
|
|
.help("Ignore coverage files"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("include")
|
|
|
|
.long("include")
|
|
|
|
.takes_value(true)
|
|
|
|
.value_name("regex")
|
|
|
|
.multiple(true)
|
|
|
|
.require_equals(true)
|
|
|
|
.default_value(r"^file:")
|
|
|
|
.help("Include source files in the report"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("exclude")
|
|
|
|
.long("exclude")
|
|
|
|
.takes_value(true)
|
|
|
|
.value_name("regex")
|
|
|
|
.multiple(true)
|
|
|
|
.require_equals(true)
|
|
|
|
.default_value(r"test\.(js|mjs|ts|jsx|tsx)$")
|
|
|
|
.help("Exclude source files from the report"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("lcov")
|
|
|
|
.long("lcov")
|
|
|
|
.help("Output coverage report in lcov format")
|
|
|
|
.takes_value(false),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("files")
|
|
|
|
.takes_value(true)
|
|
|
|
.multiple(true)
|
|
|
|
.required(true),
|
|
|
|
)
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-08-11 20:43:01 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn doc_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
SubCommand::with_name("doc")
|
|
|
|
.about("Show documentation for a module")
|
|
|
|
.long_about(
|
|
|
|
"Show documentation for a module.
|
2019-05-01 19:15:37 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Output documentation to standard output:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno doc ./path/to/module.ts
|
2019-05-01 19:15:37 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Output private documentation to standard output:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno doc --private ./path/to/module.ts
|
2019-05-01 19:15:37 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Output documentation in JSON format:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno doc --json ./path/to/module.ts
|
2021-02-24 09:27:51 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Target a specific symbol:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno doc ./path/to/module.ts MyClass.someField
|
2019-05-06 10:48:19 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Show documentation for runtime built-ins:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno doc
|
|
|
|
deno doc --builtin Deno.Listener",
|
|
|
|
)
|
2020-10-20 08:30:59 -04:00
|
|
|
.arg(import_map_arg())
|
2020-09-18 13:09:11 -04:00
|
|
|
.arg(reload_arg())
|
2021-04-16 09:28:41 -04:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("json")
|
|
|
|
.long("json")
|
|
|
|
.help("Output documentation in JSON format")
|
|
|
|
.takes_value(false),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("private")
|
|
|
|
.long("private")
|
|
|
|
.help("Output private documentation")
|
|
|
|
.takes_value(false),
|
|
|
|
)
|
|
|
|
// TODO(nayeemrmn): Make `--builtin` a proper option. Blocked by
|
|
|
|
// https://github.com/clap-rs/clap/issues/1794. Currently `--builtin` is
|
|
|
|
// just a possible value of `source_file` so leading hyphens must be
|
|
|
|
// enabled.
|
|
|
|
.setting(clap::AppSettings::AllowLeadingHyphen)
|
|
|
|
.arg(Arg::with_name("source_file").takes_value(true))
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("filter")
|
|
|
|
.help("Dot separated path to symbol")
|
|
|
|
.takes_value(true)
|
|
|
|
.required(false)
|
|
|
|
.conflicts_with("json")
|
|
|
|
.conflicts_with("pretty"),
|
|
|
|
)
|
2020-09-18 13:09:11 -04:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn eval_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
runtime_args(SubCommand::with_name("eval"), false, true)
|
|
|
|
.about("Eval script")
|
|
|
|
.long_about(
|
|
|
|
"Evaluate JavaScript from the command line.
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno eval \"console.log('hello world')\"
|
2019-11-26 11:06:32 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
To evaluate as TypeScript:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno eval --ext=ts \"const v: string = 'hello'; console.log(v)\"
|
2019-11-26 11:06:32 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
This command has implicit access to all permissions (--allow-all).",
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
// TODO(@satyarohith): remove this argument in 2.0.
|
|
|
|
Arg::with_name("ts")
|
|
|
|
.long("ts")
|
|
|
|
.short("T")
|
|
|
|
.help("Treat eval input as TypeScript")
|
|
|
|
.takes_value(false)
|
|
|
|
.multiple(false)
|
|
|
|
.hidden(true),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("ext")
|
|
|
|
.long("ext")
|
|
|
|
.help("Set standard input (stdin) content type")
|
|
|
|
.takes_value(true)
|
|
|
|
.default_value("js")
|
|
|
|
.possible_values(&["ts", "tsx", "js", "jsx"]),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("print")
|
|
|
|
.long("print")
|
|
|
|
.short("p")
|
|
|
|
.help("print result to stdout")
|
|
|
|
.takes_value(false)
|
|
|
|
.multiple(false),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("code_arg")
|
|
|
|
.multiple(true)
|
|
|
|
.help("Code arg")
|
|
|
|
.value_name("CODE_ARG")
|
|
|
|
.required(true),
|
|
|
|
)
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn fmt_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
SubCommand::with_name("fmt")
|
|
|
|
.about("Format source files")
|
|
|
|
.long_about(
|
|
|
|
"Auto-format JavaScript, TypeScript, Markdown, and JSON files.
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno fmt
|
|
|
|
deno fmt myfile1.ts myfile2.ts
|
|
|
|
deno fmt --check
|
2020-02-09 05:19:05 -05:00
|
|
|
|
2020-03-10 19:23:08 -04:00
|
|
|
Format stdin and write to stdout:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2020-05-04 15:17:15 -04:00
|
|
|
cat file.ts | deno fmt -
|
|
|
|
|
|
|
|
Ignore formatting code by preceding it with an ignore comment:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2020-05-04 15:17:15 -04:00
|
|
|
// deno-fmt-ignore
|
|
|
|
|
|
|
|
Ignore formatting a file by adding an ignore comment at the top of the file:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2020-05-04 15:17:15 -04:00
|
|
|
// deno-fmt-ignore-file",
|
2020-01-29 21:16:48 -05:00
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("check")
|
|
|
|
.long("check")
|
2020-09-20 07:45:00 -04:00
|
|
|
.help("Check if the source files are formatted")
|
2020-01-29 21:16:48 -05:00
|
|
|
.takes_value(false),
|
|
|
|
)
|
2021-01-19 12:39:35 -05:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("ext")
|
|
|
|
.long("ext")
|
|
|
|
.help("Set standard input (stdin) content type")
|
|
|
|
.takes_value(true)
|
|
|
|
.default_value("ts")
|
2021-02-18 11:31:32 -05:00
|
|
|
.possible_values(&["ts", "tsx", "js", "jsx", "md", "json", "jsonc"]),
|
2021-01-19 12:39:35 -05:00
|
|
|
)
|
2020-07-30 12:09:08 -04:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("ignore")
|
|
|
|
.long("ignore")
|
|
|
|
.takes_value(true)
|
|
|
|
.use_delimiter(true)
|
|
|
|
.require_equals(true)
|
2021-04-27 06:44:36 -04:00
|
|
|
.help("Ignore formatting particular source files"),
|
2020-07-30 12:09:08 -04:00
|
|
|
)
|
2020-01-29 21:16:48 -05:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("files")
|
|
|
|
.takes_value(true)
|
|
|
|
.multiple(true)
|
|
|
|
.required(false),
|
|
|
|
)
|
2020-11-22 15:45:44 -05:00
|
|
|
.arg(watch_arg())
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-08-15 10:11:52 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn info_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
SubCommand::with_name("info")
|
|
|
|
.about("Show info about cache or info related to source file")
|
|
|
|
.long_about(
|
|
|
|
"Information about a module or the cache directories.
|
|
|
|
|
|
|
|
Get information about a module:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno info https://deno.land/std/http/file_server.ts
|
|
|
|
|
|
|
|
The following information is shown:
|
|
|
|
|
|
|
|
local: Local path of the file.
|
|
|
|
type: JavaScript, TypeScript, or JSON.
|
|
|
|
compiled: Local path of compiled source code. (TypeScript only.)
|
|
|
|
map: Local path of source map. (TypeScript only.)
|
|
|
|
deps: Dependency tree of the source file.
|
|
|
|
|
|
|
|
Without any additional arguments, 'deno info' shows:
|
|
|
|
|
|
|
|
DENO_DIR: Directory containing Deno-managed files.
|
|
|
|
Remote modules cache: Subdirectory containing downloaded remote modules.
|
|
|
|
TypeScript compiler cache: Subdirectory containing TS compiler output.",
|
|
|
|
)
|
|
|
|
.arg(Arg::with_name("file").takes_value(true).required(false))
|
|
|
|
.arg(reload_arg().requires("file"))
|
|
|
|
.arg(ca_file_arg())
|
|
|
|
// TODO(lucacasonato): remove for 2.0
|
|
|
|
.arg(no_check_arg().hidden(true))
|
|
|
|
.arg(import_map_arg())
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("json")
|
|
|
|
.long("json")
|
2021-04-27 06:44:36 -04:00
|
|
|
.help("UNSTABLE: Outputs the information in JSON format")
|
2021-04-16 09:28:41 -04:00
|
|
|
.takes_value(false),
|
|
|
|
)
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-08-15 10:11:52 -04:00
|
|
|
|
2019-11-26 11:06:32 -05:00
|
|
|
fn install_subcommand<'a, 'b>() -> App<'a, 'b> {
|
2021-01-04 18:15:52 -05:00
|
|
|
runtime_args(SubCommand::with_name("install"), true, true)
|
2021-04-16 09:28:41 -04:00
|
|
|
.setting(AppSettings::TrailingVarArg)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("cmd")
|
|
|
|
.required(true)
|
|
|
|
.multiple(true)
|
|
|
|
.allow_hyphen_values(true))
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("name")
|
|
|
|
.long("name")
|
|
|
|
.short("n")
|
|
|
|
.help("Executable file name")
|
|
|
|
.takes_value(true)
|
|
|
|
.required(false))
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("root")
|
|
|
|
.long("root")
|
|
|
|
.help("Installation root")
|
|
|
|
.takes_value(true)
|
|
|
|
.multiple(false))
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("force")
|
|
|
|
.long("force")
|
|
|
|
.short("f")
|
|
|
|
.help("Forcefully overwrite existing installation")
|
|
|
|
.takes_value(false))
|
|
|
|
.about("Install script as an executable")
|
|
|
|
.long_about(
|
|
|
|
"Installs a script as an executable in the installation root's bin directory.
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2020-05-01 15:33:11 -04:00
|
|
|
deno install --allow-net --allow-read https://deno.land/std/http/file_server.ts
|
|
|
|
deno install https://deno.land/std/examples/colors.ts
|
|
|
|
|
|
|
|
To change the executable name, use -n/--name:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2020-05-01 15:33:11 -04:00
|
|
|
deno install --allow-net --allow-read -n serve https://deno.land/std/http/file_server.ts
|
|
|
|
|
|
|
|
The executable name is inferred by default:
|
|
|
|
- Attempt to take the file stem of the URL path. The above example would
|
|
|
|
become 'file_server'.
|
|
|
|
- If the file stem is something generic like 'main', 'mod', 'index' or 'cli',
|
|
|
|
and the path has no parent, take the file name of the parent path. Otherwise
|
|
|
|
settle with the generic name.
|
2020-08-27 16:55:58 -04:00
|
|
|
- If the resulting name has an '@...' suffix, strip it.
|
2019-05-03 17:15:16 -04:00
|
|
|
|
2020-04-16 18:15:42 -04:00
|
|
|
To change the installation root, use --root:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2020-05-01 15:33:11 -04:00
|
|
|
deno install --allow-net --allow-read --root /usr/local https://deno.land/std/http/file_server.ts
|
2020-04-16 18:15:42 -04:00
|
|
|
|
|
|
|
The installation root is determined, in order of precedence:
|
|
|
|
- --root option
|
|
|
|
- DENO_INSTALL_ROOT environment variable
|
|
|
|
- $HOME/.deno
|
|
|
|
|
|
|
|
These must be added to the path manually if required.")
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-05-03 17:15:16 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn lsp_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
SubCommand::with_name("lsp")
|
|
|
|
.about("Start the language server")
|
|
|
|
.long_about(
|
|
|
|
"The 'deno lsp' subcommand provides a way for code editors and IDEs to
|
|
|
|
interact with Deno using the Language Server Protocol. Usually humans do not
|
|
|
|
use this subcommand directly. For example, 'deno lsp' can provide IDEs with
|
|
|
|
go-to-definition support and automatic code formatting.
|
|
|
|
|
|
|
|
How to connect various editors and IDEs to 'deno lsp':
|
|
|
|
https://deno.land/manual/getting_started/setup_your_environment#editors-and-ides")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn lint_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
SubCommand::with_name("lint")
|
2021-04-27 06:44:36 -04:00
|
|
|
.about("UNSTABLE: Lint source files")
|
2021-04-16 09:28:41 -04:00
|
|
|
.long_about(
|
2021-04-27 06:44:36 -04:00
|
|
|
"UNSTABLE: Lint JavaScript/TypeScript source code.
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-27 06:44:36 -04:00
|
|
|
deno lint
|
|
|
|
deno lint myfile1.ts myfile2.js
|
2021-04-16 09:28:41 -04:00
|
|
|
|
|
|
|
Print result as JSON:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-27 06:44:36 -04:00
|
|
|
deno lint --json
|
2021-04-16 09:28:41 -04:00
|
|
|
|
|
|
|
Read from stdin:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-27 06:44:36 -04:00
|
|
|
cat file.ts | deno lint -
|
|
|
|
cat file.ts | deno lint --json -
|
2021-04-16 09:28:41 -04:00
|
|
|
|
|
|
|
List available rules:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-27 06:44:36 -04:00
|
|
|
deno lint --rules
|
2021-04-16 09:28:41 -04:00
|
|
|
|
|
|
|
Ignore diagnostics on the next line by preceding it with an ignore comment and
|
|
|
|
rule name:
|
|
|
|
|
2021-04-18 09:12:55 -04:00
|
|
|
// deno-lint-ignore no-explicit-any
|
2021-04-16 09:28:41 -04:00
|
|
|
// deno-lint-ignore require-await no-empty
|
|
|
|
|
|
|
|
Names of rules to ignore must be specified after ignore comment.
|
|
|
|
|
|
|
|
Ignore linting a file by adding an ignore comment at the top of the file:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
// deno-lint-ignore-file
|
|
|
|
",
|
2020-11-30 14:35:12 -05:00
|
|
|
)
|
2020-12-01 09:11:02 -05:00
|
|
|
.arg(
|
2021-04-16 09:28:41 -04:00
|
|
|
Arg::with_name("rules")
|
|
|
|
.long("rules")
|
|
|
|
.help("List available rules"),
|
2020-12-01 09:11:02 -05:00
|
|
|
)
|
2021-01-18 21:40:22 -05:00
|
|
|
.arg(
|
2021-04-16 09:28:41 -04:00
|
|
|
Arg::with_name("ignore")
|
|
|
|
.long("ignore")
|
2021-01-18 21:40:22 -05:00
|
|
|
.takes_value(true)
|
2021-04-16 09:28:41 -04:00
|
|
|
.use_delimiter(true)
|
|
|
|
.require_equals(true)
|
|
|
|
.help("Ignore linting particular source files"),
|
2021-01-18 21:40:22 -05:00
|
|
|
)
|
|
|
|
.arg(
|
2021-04-16 09:28:41 -04:00
|
|
|
Arg::with_name("json")
|
|
|
|
.long("json")
|
|
|
|
.help("Output lint result in JSON format")
|
|
|
|
.takes_value(false),
|
2021-01-18 21:40:22 -05:00
|
|
|
)
|
2019-11-26 11:06:32 -05:00
|
|
|
.arg(
|
2021-04-16 09:28:41 -04:00
|
|
|
Arg::with_name("files")
|
2019-11-26 11:06:32 -05:00
|
|
|
.takes_value(true)
|
2021-04-16 09:28:41 -04:00
|
|
|
.multiple(true)
|
|
|
|
.required(false),
|
2019-11-26 11:06:32 -05:00
|
|
|
)
|
2021-04-16 09:28:41 -04:00
|
|
|
}
|
2019-05-16 10:39:19 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn repl_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
runtime_args(SubCommand::with_name("repl"), false, true)
|
|
|
|
.about("Read Eval Print Loop")
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn run_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
runtime_args(SubCommand::with_name("run"), true, true)
|
2019-11-26 11:06:32 -05:00
|
|
|
.arg(
|
2021-04-16 09:28:41 -04:00
|
|
|
watch_arg()
|
|
|
|
.conflicts_with("inspect")
|
2021-04-18 09:12:55 -04:00
|
|
|
.conflicts_with("inspect-brk"),
|
2019-11-26 11:06:32 -05:00
|
|
|
)
|
2021-04-16 09:28:41 -04:00
|
|
|
.setting(AppSettings::TrailingVarArg)
|
2021-04-18 09:12:55 -04:00
|
|
|
.arg(script_arg().required(true))
|
|
|
|
.about("Run a JavaScript or TypeScript program")
|
2019-11-26 11:06:32 -05:00
|
|
|
.long_about(
|
2021-04-18 09:12:55 -04:00
|
|
|
"Run a JavaScript or TypeScript program
|
2020-02-28 09:17:56 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
By default all programs are run in sandbox without access to disk, network or
|
|
|
|
ability to spawn subprocesses.
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno run https://deno.land/std/examples/welcome.ts
|
2020-03-10 19:23:08 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Grant all permissions:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno run -A https://deno.land/std/http/file_server.ts
|
|
|
|
|
|
|
|
Grant permission to read from disk and listen to network:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno run --allow-read --allow-net https://deno.land/std/http/file_server.ts
|
|
|
|
|
|
|
|
Grant permission to read allow-listed files from disk:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno run --allow-read=/etc https://deno.land/std/http/file_server.ts
|
|
|
|
|
|
|
|
Deno allows specifying the filename '-' to read the file from stdin.
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
curl https://deno.land/std/examples/welcome.ts | target/debug/deno run -",
|
2020-02-28 09:17:56 -05:00
|
|
|
)
|
2021-04-16 09:28:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
runtime_args(SubCommand::with_name("test"), true, true)
|
|
|
|
.setting(AppSettings::TrailingVarArg)
|
2020-02-28 09:17:56 -05:00
|
|
|
.arg(
|
2021-04-16 09:28:41 -04:00
|
|
|
Arg::with_name("no-run")
|
|
|
|
.long("no-run")
|
|
|
|
.help("Cache test modules, but don't run tests")
|
2021-04-27 06:44:36 -04:00
|
|
|
.takes_value(false),
|
2021-02-21 11:58:32 -05:00
|
|
|
)
|
|
|
|
.arg(
|
2021-04-16 09:28:41 -04:00
|
|
|
Arg::with_name("fail-fast")
|
|
|
|
.long("fail-fast")
|
|
|
|
.alias("failfast")
|
|
|
|
.help("Stop on first error")
|
|
|
|
.takes_value(false),
|
2019-04-17 09:25:51 -04:00
|
|
|
)
|
2020-05-21 10:35:36 -04:00
|
|
|
.arg(
|
2021-04-16 09:28:41 -04:00
|
|
|
Arg::with_name("allow-none")
|
|
|
|
.long("allow-none")
|
|
|
|
.help("Don't return error code if no test files are found")
|
|
|
|
.takes_value(false),
|
2020-05-21 10:35:36 -04:00
|
|
|
)
|
2020-11-29 21:10:21 -05:00
|
|
|
.arg(
|
2021-04-16 09:28:41 -04:00
|
|
|
Arg::with_name("filter")
|
|
|
|
.set(ArgSettings::AllowLeadingHyphen)
|
|
|
|
.long("filter")
|
|
|
|
.takes_value(true)
|
|
|
|
.help("Run tests with this string or pattern in the test name"),
|
2019-11-26 11:06:32 -05:00
|
|
|
)
|
2020-07-08 10:50:12 -04:00
|
|
|
.arg(
|
2021-04-16 09:28:41 -04:00
|
|
|
Arg::with_name("coverage")
|
|
|
|
.long("coverage")
|
|
|
|
.require_equals(true)
|
|
|
|
.takes_value(true)
|
|
|
|
.conflicts_with("inspect")
|
|
|
|
.conflicts_with("inspect-brk")
|
2021-04-27 06:44:36 -04:00
|
|
|
.help("UNSTABLE: Collect coverage profile data"),
|
2020-07-08 10:50:12 -04:00
|
|
|
)
|
2021-04-28 14:17:04 -04:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("jobs")
|
|
|
|
.short("j")
|
|
|
|
.long("jobs")
|
|
|
|
.min_values(0)
|
|
|
|
.max_values(1)
|
|
|
|
.takes_value(true)
|
|
|
|
.validator(|val: String| match val.parse::<usize>() {
|
|
|
|
Ok(_) => Ok(()),
|
|
|
|
Err(_) => Err("jobs should be a number".to_string()),
|
|
|
|
}),
|
|
|
|
)
|
2020-01-31 16:07:37 -05:00
|
|
|
.arg(
|
2021-04-16 09:28:41 -04:00
|
|
|
Arg::with_name("files")
|
|
|
|
.help("List of file names to run")
|
2020-01-31 16:07:37 -05:00
|
|
|
.takes_value(true)
|
2021-04-16 09:28:41 -04:00
|
|
|
.multiple(true),
|
2020-01-31 16:07:37 -05:00
|
|
|
)
|
2021-04-16 09:28:41 -04:00
|
|
|
.arg(script_arg().last(true))
|
|
|
|
.about("Run tests")
|
2019-11-26 11:06:32 -05:00
|
|
|
.long_about(
|
2021-04-16 09:28:41 -04:00
|
|
|
"Run tests using Deno's built-in test runner.
|
2019-04-06 18:13:06 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Evaluate the given modules, run all tests declared with 'Deno.test()' and
|
|
|
|
report results to standard output:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno test src/fetch_test.ts src/signal_test.ts
|
2019-04-06 18:13:06 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
Directory arguments are expanded to all contained files matching the glob
|
|
|
|
{*_,*.,}test.{js,mjs,ts,jsx,tsx}:
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno test src/",
|
2019-11-26 11:06:32 -05:00
|
|
|
)
|
2019-06-05 13:44:46 -04:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn types_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
SubCommand::with_name("types")
|
|
|
|
.about("Print runtime TypeScript declarations")
|
2021-02-24 09:27:51 -05:00
|
|
|
.long_about(
|
2021-04-16 09:28:41 -04:00
|
|
|
"Print runtime TypeScript declarations.
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno types > lib.deno.d.ts
|
2021-02-24 09:27:51 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
The declaration file could be saved and used for typing information.",
|
|
|
|
)
|
|
|
|
}
|
2021-02-24 09:27:51 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn upgrade_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
SubCommand::with_name("upgrade")
|
|
|
|
.about("Upgrade deno executable to given version")
|
|
|
|
.long_about(
|
|
|
|
"Upgrade deno executable to the given version.
|
|
|
|
Defaults to latest.
|
2021-02-24 09:27:51 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
The version is downloaded from
|
|
|
|
https://github.com/denoland/deno/releases
|
|
|
|
and is used to replace the current executable.
|
2021-02-24 09:27:51 -05:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
If you want to not replace the current Deno executable but instead download an
|
|
|
|
update to a different location, use the --output flag
|
2021-04-18 09:12:55 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
deno upgrade --output $HOME/my_deno",
|
2020-03-23 11:37:24 -04:00
|
|
|
)
|
2020-05-09 06:31:15 -04:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("version")
|
|
|
|
.long("version")
|
|
|
|
.help("The version to upgrade to")
|
|
|
|
.takes_value(true),
|
|
|
|
)
|
2020-07-06 18:21:26 -04:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("output")
|
|
|
|
.long("output")
|
|
|
|
.help("The path to output the updated version to")
|
|
|
|
.takes_value(true),
|
|
|
|
)
|
2020-03-23 11:37:24 -04:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("dry-run")
|
|
|
|
.long("dry-run")
|
|
|
|
.help("Perform all checks without replacing old exe"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("force")
|
|
|
|
.long("force")
|
|
|
|
.short("f")
|
|
|
|
.help("Replace current exe even if not out-of-date"),
|
|
|
|
)
|
2020-11-29 14:00:35 -05:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("canary")
|
|
|
|
.long("canary")
|
|
|
|
.help("Upgrade to canary builds"),
|
|
|
|
)
|
2020-07-05 23:58:23 -04:00
|
|
|
.arg(ca_file_arg())
|
2020-03-23 11:37:24 -04:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn compile_args<'a, 'b>(app: App<'a, 'b>) -> App<'a, 'b> {
|
|
|
|
app
|
2020-10-20 08:30:59 -04:00
|
|
|
.arg(import_map_arg())
|
2021-04-16 09:28:41 -04:00
|
|
|
.arg(no_remote_arg())
|
|
|
|
.arg(config_arg())
|
|
|
|
.arg(no_check_arg())
|
2020-03-28 14:16:57 -04:00
|
|
|
.arg(reload_arg())
|
2021-04-16 09:28:41 -04:00
|
|
|
.arg(lock_arg())
|
|
|
|
.arg(lock_write_arg())
|
|
|
|
.arg(ca_file_arg())
|
2020-06-08 08:06:20 -04:00
|
|
|
}
|
|
|
|
|
2020-01-30 18:42:39 -05:00
|
|
|
fn permission_args<'a, 'b>(app: App<'a, 'b>) -> App<'a, 'b> {
|
2019-11-26 11:06:32 -05:00
|
|
|
app
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("allow-read")
|
|
|
|
.long("allow-read")
|
|
|
|
.min_values(0)
|
|
|
|
.takes_value(true)
|
|
|
|
.use_delimiter(true)
|
|
|
|
.require_equals(true)
|
|
|
|
.help("Allow file system read access"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("allow-write")
|
|
|
|
.long("allow-write")
|
|
|
|
.min_values(0)
|
|
|
|
.takes_value(true)
|
|
|
|
.use_delimiter(true)
|
|
|
|
.require_equals(true)
|
|
|
|
.help("Allow file system write access"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("allow-net")
|
|
|
|
.long("allow-net")
|
|
|
|
.min_values(0)
|
|
|
|
.takes_value(true)
|
|
|
|
.use_delimiter(true)
|
|
|
|
.require_equals(true)
|
2020-06-26 08:09:02 -04:00
|
|
|
.help("Allow network access")
|
|
|
|
.validator(crate::flags_allow_net::validator),
|
2019-11-26 11:06:32 -05:00
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("allow-env")
|
|
|
|
.long("allow-env")
|
2021-04-13 07:25:21 -04:00
|
|
|
.min_values(0)
|
|
|
|
.takes_value(true)
|
|
|
|
.use_delimiter(true)
|
|
|
|
.require_equals(true)
|
|
|
|
.help("Allow environment access")
|
|
|
|
.validator(|keys| {
|
|
|
|
for key in keys.split(',') {
|
|
|
|
if key.is_empty() || key.contains(&['=', '\0'] as &[char]) {
|
|
|
|
return Err(format!("invalid key \"{}\"", key));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}),
|
2019-11-26 11:06:32 -05:00
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("allow-run")
|
|
|
|
.long("allow-run")
|
2021-04-09 18:12:00 -04:00
|
|
|
.min_values(0)
|
|
|
|
.takes_value(true)
|
|
|
|
.use_delimiter(true)
|
|
|
|
.require_equals(true)
|
2019-11-26 11:06:32 -05:00
|
|
|
.help("Allow running subprocesses"),
|
|
|
|
)
|
2019-12-05 15:30:20 -05:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("allow-plugin")
|
|
|
|
.long("allow-plugin")
|
|
|
|
.help("Allow loading plugins"),
|
|
|
|
)
|
2019-11-26 11:06:32 -05:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("allow-hrtime")
|
|
|
|
.long("allow-hrtime")
|
|
|
|
.help("Allow high resolution time measurement"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("allow-all")
|
|
|
|
.short("A")
|
|
|
|
.long("allow-all")
|
|
|
|
.help("Allow all permissions"),
|
|
|
|
)
|
2021-04-11 22:15:43 -04:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("prompt")
|
|
|
|
.long("prompt")
|
|
|
|
.help("Fallback to prompt if required permission wasn't passed"),
|
|
|
|
)
|
2020-01-30 18:42:39 -05:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn runtime_args<'a, 'b>(
|
|
|
|
app: App<'a, 'b>,
|
|
|
|
include_perms: bool,
|
|
|
|
include_inspector: bool,
|
|
|
|
) -> App<'a, 'b> {
|
|
|
|
let app = compile_args(app);
|
|
|
|
let app = if include_perms {
|
|
|
|
permission_args(app)
|
|
|
|
} else {
|
|
|
|
app
|
|
|
|
};
|
|
|
|
let app = if include_inspector {
|
|
|
|
inspect_args(app)
|
|
|
|
} else {
|
|
|
|
app
|
|
|
|
};
|
|
|
|
app
|
|
|
|
.arg(cached_only_arg())
|
|
|
|
.arg(location_arg())
|
|
|
|
.arg(v8_flags_arg())
|
|
|
|
.arg(seed_arg())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn inspect_args<'a, 'b>(app: App<'a, 'b>) -> App<'a, 'b> {
|
|
|
|
app
|
2020-12-11 07:18:30 -05:00
|
|
|
.arg(
|
2021-04-16 09:28:41 -04:00
|
|
|
Arg::with_name("inspect")
|
|
|
|
.long("inspect")
|
|
|
|
.value_name("HOST:PORT")
|
|
|
|
.help("Activate inspector on host:port (default: 127.0.0.1:9229)")
|
|
|
|
.min_values(0)
|
|
|
|
.max_values(1)
|
|
|
|
.require_equals(true)
|
|
|
|
.takes_value(true)
|
|
|
|
.validator(inspect_arg_validate),
|
2020-12-11 07:18:30 -05:00
|
|
|
)
|
2020-10-25 20:25:43 -04:00
|
|
|
.arg(
|
2021-04-16 09:28:41 -04:00
|
|
|
Arg::with_name("inspect-brk")
|
|
|
|
.long("inspect-brk")
|
|
|
|
.value_name("HOST:PORT")
|
|
|
|
.help(
|
|
|
|
"Activate inspector on host:port and break at start of user script",
|
|
|
|
)
|
|
|
|
.min_values(0)
|
|
|
|
.max_values(1)
|
|
|
|
.require_equals(true)
|
|
|
|
.takes_value(true)
|
|
|
|
.validator(inspect_arg_validate),
|
2019-11-26 11:06:32 -05:00
|
|
|
)
|
2019-04-29 19:43:06 -04:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn import_map_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("import-map")
|
|
|
|
.long("import-map")
|
|
|
|
.alias("importmap")
|
|
|
|
.value_name("FILE")
|
|
|
|
.help("Load import map file")
|
|
|
|
.long_help(
|
|
|
|
"Load import map file from local file or remote URL.
|
|
|
|
Docs: https://deno.land/manual/linking_to_external_code/import_maps
|
|
|
|
Specification: https://wicg.github.io/import-maps/
|
|
|
|
Examples: https://github.com/WICG/import-maps#the-import-map",
|
2020-04-02 09:26:40 -04:00
|
|
|
)
|
2021-04-16 09:28:41 -04:00
|
|
|
.takes_value(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reload_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("reload")
|
|
|
|
.short("r")
|
|
|
|
.min_values(0)
|
|
|
|
.takes_value(true)
|
|
|
|
.use_delimiter(true)
|
|
|
|
.require_equals(true)
|
|
|
|
.long("reload")
|
|
|
|
.help("Reload source code cache (recompile TypeScript)")
|
|
|
|
.value_name("CACHE_BLOCKLIST")
|
|
|
|
.long_help(
|
|
|
|
"Reload source code cache (recompile TypeScript)
|
|
|
|
--reload
|
|
|
|
Reload everything
|
|
|
|
--reload=https://deno.land/std
|
|
|
|
Reload only standard modules
|
|
|
|
--reload=https://deno.land/std/fs/utils.ts,https://deno.land/std/fmt/colors.ts
|
|
|
|
Reloads specific modules",
|
2020-09-13 09:01:30 -04:00
|
|
|
)
|
2021-04-16 09:28:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn ca_file_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("cert")
|
|
|
|
.long("cert")
|
|
|
|
.value_name("FILE")
|
|
|
|
.help("Load certificate authority from PEM encoded file")
|
|
|
|
.takes_value(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn cached_only_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("cached-only")
|
|
|
|
.long("cached-only")
|
|
|
|
.help("Require that remote dependencies are already cached")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn location_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("location")
|
|
|
|
.long("location")
|
|
|
|
.takes_value(true)
|
|
|
|
.value_name("HREF")
|
|
|
|
.validator(|href| {
|
|
|
|
let url = Url::parse(&href);
|
|
|
|
if url.is_err() {
|
|
|
|
return Err("Failed to parse URL".to_string());
|
|
|
|
}
|
|
|
|
let mut url = url.unwrap();
|
|
|
|
if !["http", "https"].contains(&url.scheme()) {
|
|
|
|
return Err("Expected protocol \"http\" or \"https\"".to_string());
|
|
|
|
}
|
|
|
|
url.set_username("").unwrap();
|
|
|
|
url.set_password(None).unwrap();
|
|
|
|
Ok(())
|
|
|
|
})
|
|
|
|
.help("Value of 'globalThis.location' used by some web APIs")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn v8_flags_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("v8-flags")
|
|
|
|
.long("v8-flags")
|
|
|
|
.takes_value(true)
|
|
|
|
.use_delimiter(true)
|
|
|
|
.require_equals(true)
|
|
|
|
.help("Set V8 command line options (for help: --v8-flags=--help)")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn seed_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("seed")
|
|
|
|
.long("seed")
|
|
|
|
.value_name("NUMBER")
|
|
|
|
.help("Seed Math.random()")
|
|
|
|
.takes_value(true)
|
|
|
|
.validator(|val: String| match val.parse::<u64>() {
|
|
|
|
Ok(_) => Ok(()),
|
|
|
|
Err(_) => Err("Seed should be a number".to_string()),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn watch_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("watch")
|
|
|
|
.long("watch")
|
2021-04-27 06:44:36 -04:00
|
|
|
.help("UNSTABLE: Watch for file changes and restart process automatically")
|
2021-04-16 09:28:41 -04:00
|
|
|
.long_help(
|
2021-04-27 06:44:36 -04:00
|
|
|
"UNSTABLE: Watch for file changes and restart process automatically.
|
2021-04-16 09:28:41 -04:00
|
|
|
Only local files from entry point module graph are watched.",
|
2019-11-26 11:06:32 -05:00
|
|
|
)
|
2021-04-16 09:28:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn no_check_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("no-check")
|
|
|
|
.long("no-check")
|
|
|
|
.help("Skip type checking modules")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn script_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("script_arg")
|
|
|
|
.multiple(true)
|
|
|
|
// NOTE: these defaults are provided
|
|
|
|
// so `deno run --v8-flags=--help` works
|
|
|
|
// without specifying file to run.
|
|
|
|
.default_value_ifs(&[
|
|
|
|
("v8-flags", Some("--help"), "_"),
|
|
|
|
("v8-flags", Some("-help"), "_"),
|
|
|
|
])
|
|
|
|
.help("Script arg")
|
|
|
|
.value_name("SCRIPT_ARG")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn lock_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("lock")
|
|
|
|
.long("lock")
|
|
|
|
.value_name("FILE")
|
|
|
|
.help("Check the specified lock file")
|
|
|
|
.takes_value(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn lock_write_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("lock-write")
|
|
|
|
.long("lock-write")
|
|
|
|
.requires("lock")
|
|
|
|
.help("Write lock file (use with --lock)")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn config_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("config")
|
|
|
|
.short("c")
|
|
|
|
.long("config")
|
|
|
|
.value_name("FILE")
|
|
|
|
.help("Load tsconfig.json configuration file")
|
|
|
|
.takes_value(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn no_remote_arg<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name("no-remote")
|
|
|
|
.long("no-remote")
|
|
|
|
.help("Do not resolve remote modules")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bundle_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
compile_args_parse(flags, matches);
|
|
|
|
|
|
|
|
let source_file = matches.value_of("source_file").unwrap().to_string();
|
|
|
|
|
|
|
|
let out_file = if let Some(out_file) = matches.value_of("out_file") {
|
|
|
|
flags.allow_write = Some(vec![]);
|
|
|
|
Some(PathBuf::from(out_file))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
flags.watch = matches.is_present("watch");
|
|
|
|
|
|
|
|
flags.subcommand = DenoSubcommand::Bundle {
|
|
|
|
source_file,
|
|
|
|
out_file,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn cache_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
compile_args_parse(flags, matches);
|
|
|
|
let files = matches
|
|
|
|
.values_of("file")
|
|
|
|
.unwrap()
|
|
|
|
.map(String::from)
|
|
|
|
.collect();
|
|
|
|
flags.subcommand = DenoSubcommand::Cache { files };
|
|
|
|
}
|
|
|
|
|
|
|
|
fn compile_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
runtime_args_parse(flags, matches, true, false);
|
|
|
|
|
|
|
|
let mut script: Vec<String> = matches
|
|
|
|
.values_of("script_arg")
|
|
|
|
.unwrap()
|
|
|
|
.map(String::from)
|
|
|
|
.collect();
|
|
|
|
assert!(!script.is_empty());
|
|
|
|
let args = script.split_off(1);
|
|
|
|
let source_file = script[0].to_string();
|
|
|
|
let output = matches.value_of("output").map(PathBuf::from);
|
|
|
|
let target = matches.value_of("target").map(String::from);
|
|
|
|
|
|
|
|
flags.subcommand = DenoSubcommand::Compile {
|
|
|
|
source_file,
|
|
|
|
output,
|
|
|
|
args,
|
|
|
|
target,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn completions_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
let shell: &str = matches.value_of("shell").unwrap();
|
|
|
|
let mut buf: Vec<u8> = vec![];
|
|
|
|
clap_root(&*crate::version::deno()).gen_completions_to(
|
|
|
|
"deno",
|
|
|
|
clap::Shell::from_str(shell).unwrap(),
|
|
|
|
&mut buf,
|
|
|
|
);
|
|
|
|
|
|
|
|
flags.subcommand = DenoSubcommand::Completions {
|
|
|
|
buf: buf.into_boxed_slice(),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn coverage_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
let files = match matches.values_of("files") {
|
|
|
|
Some(f) => f.map(PathBuf::from).collect(),
|
|
|
|
None => vec![],
|
|
|
|
};
|
|
|
|
let ignore = match matches.values_of("ignore") {
|
|
|
|
Some(f) => f.map(PathBuf::from).collect(),
|
|
|
|
None => vec![],
|
|
|
|
};
|
|
|
|
let include = match matches.values_of("include") {
|
|
|
|
Some(f) => f.map(String::from).collect(),
|
|
|
|
None => vec![],
|
|
|
|
};
|
|
|
|
let exclude = match matches.values_of("exclude") {
|
|
|
|
Some(f) => f.map(String::from).collect(),
|
|
|
|
None => vec![],
|
|
|
|
};
|
|
|
|
let lcov = matches.is_present("lcov");
|
|
|
|
flags.subcommand = DenoSubcommand::Coverage {
|
|
|
|
files,
|
|
|
|
ignore,
|
|
|
|
include,
|
|
|
|
exclude,
|
|
|
|
lcov,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn doc_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
import_map_arg_parse(flags, matches);
|
|
|
|
reload_arg_parse(flags, matches);
|
|
|
|
|
|
|
|
let source_file = matches.value_of("source_file").map(String::from);
|
|
|
|
let private = matches.is_present("private");
|
|
|
|
let json = matches.is_present("json");
|
|
|
|
let filter = matches.value_of("filter").map(String::from);
|
|
|
|
flags.subcommand = DenoSubcommand::Doc {
|
|
|
|
source_file,
|
|
|
|
json,
|
|
|
|
filter,
|
|
|
|
private,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn eval_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
runtime_args_parse(flags, matches, false, true);
|
|
|
|
flags.allow_net = Some(vec![]);
|
|
|
|
flags.allow_env = Some(vec![]);
|
|
|
|
flags.allow_run = Some(vec![]);
|
|
|
|
flags.allow_read = Some(vec![]);
|
|
|
|
flags.allow_write = Some(vec![]);
|
|
|
|
flags.allow_plugin = true;
|
|
|
|
flags.allow_hrtime = true;
|
|
|
|
// TODO(@satyarohith): remove this flag in 2.0.
|
|
|
|
let as_typescript = matches.is_present("ts");
|
|
|
|
let ext = if as_typescript {
|
|
|
|
"ts".to_string()
|
|
|
|
} else {
|
|
|
|
matches.value_of("ext").unwrap().to_string()
|
|
|
|
};
|
|
|
|
|
|
|
|
let print = matches.is_present("print");
|
|
|
|
let mut code: Vec<String> = matches
|
|
|
|
.values_of("code_arg")
|
|
|
|
.unwrap()
|
|
|
|
.map(String::from)
|
|
|
|
.collect();
|
|
|
|
assert!(!code.is_empty());
|
|
|
|
let code_args = code.split_off(1);
|
|
|
|
let code = code[0].to_string();
|
|
|
|
for v in code_args {
|
|
|
|
flags.argv.push(v);
|
|
|
|
}
|
|
|
|
flags.subcommand = DenoSubcommand::Eval { print, code, ext };
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fmt_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
flags.watch = matches.is_present("watch");
|
|
|
|
let files = match matches.values_of("files") {
|
|
|
|
Some(f) => f.map(PathBuf::from).collect(),
|
|
|
|
None => vec![],
|
|
|
|
};
|
|
|
|
let ignore = match matches.values_of("ignore") {
|
|
|
|
Some(f) => f.map(PathBuf::from).collect(),
|
|
|
|
None => vec![],
|
|
|
|
};
|
|
|
|
let ext = matches.value_of("ext").unwrap().to_string();
|
2019-04-29 19:43:06 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
flags.subcommand = DenoSubcommand::Fmt {
|
|
|
|
check: matches.is_present("check"),
|
|
|
|
ext,
|
|
|
|
files,
|
|
|
|
ignore,
|
|
|
|
}
|
|
|
|
}
|
2019-07-27 05:20:40 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn info_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
reload_arg_parse(flags, matches);
|
|
|
|
import_map_arg_parse(flags, matches);
|
|
|
|
ca_file_arg_parse(flags, matches);
|
|
|
|
let json = matches.is_present("json");
|
|
|
|
flags.subcommand = DenoSubcommand::Info {
|
|
|
|
file: matches.value_of("file").map(|f| f.to_string()),
|
|
|
|
json,
|
|
|
|
};
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-05-16 10:11:35 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn install_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
runtime_args_parse(flags, matches, true, true);
|
|
|
|
|
|
|
|
let root = if matches.is_present("root") {
|
|
|
|
let install_root = matches.value_of("root").unwrap();
|
|
|
|
Some(PathBuf::from(install_root))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
let force = matches.is_present("force");
|
|
|
|
let name = matches.value_of("name").map(|s| s.to_string());
|
|
|
|
let cmd_values = matches.values_of("cmd").unwrap();
|
|
|
|
let mut cmd = vec![];
|
|
|
|
for value in cmd_values {
|
|
|
|
cmd.push(value.to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
let module_url = cmd[0].to_string();
|
|
|
|
let args = cmd[1..].to_vec();
|
|
|
|
|
|
|
|
flags.subcommand = DenoSubcommand::Install {
|
|
|
|
name,
|
|
|
|
module_url,
|
|
|
|
args,
|
|
|
|
root,
|
|
|
|
force,
|
|
|
|
};
|
2020-01-08 14:59:53 -05:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn lsp_parse(flags: &mut Flags, _matches: &clap::ArgMatches) {
|
|
|
|
flags.subcommand = DenoSubcommand::Lsp;
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-08-15 10:11:52 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn lint_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
let files = match matches.values_of("files") {
|
|
|
|
Some(f) => f.map(PathBuf::from).collect(),
|
|
|
|
None => vec![],
|
|
|
|
};
|
|
|
|
let ignore = match matches.values_of("ignore") {
|
|
|
|
Some(f) => f.map(PathBuf::from).collect(),
|
|
|
|
None => vec![],
|
|
|
|
};
|
|
|
|
let rules = matches.is_present("rules");
|
|
|
|
let json = matches.is_present("json");
|
|
|
|
flags.subcommand = DenoSubcommand::Lint {
|
|
|
|
files,
|
|
|
|
rules,
|
|
|
|
ignore,
|
|
|
|
json,
|
|
|
|
};
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-08-15 10:11:52 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn repl_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
runtime_args_parse(flags, matches, false, true);
|
|
|
|
flags.repl = true;
|
|
|
|
flags.subcommand = DenoSubcommand::Repl;
|
|
|
|
flags.allow_net = Some(vec![]);
|
|
|
|
flags.allow_env = Some(vec![]);
|
|
|
|
flags.allow_run = Some(vec![]);
|
|
|
|
flags.allow_read = Some(vec![]);
|
|
|
|
flags.allow_write = Some(vec![]);
|
|
|
|
flags.allow_plugin = true;
|
|
|
|
flags.allow_hrtime = true;
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-08-15 10:11:52 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn run_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
runtime_args_parse(flags, matches, true, true);
|
|
|
|
|
|
|
|
let mut script: Vec<String> = matches
|
|
|
|
.values_of("script_arg")
|
|
|
|
.unwrap()
|
|
|
|
.map(String::from)
|
|
|
|
.collect();
|
|
|
|
assert!(!script.is_empty());
|
|
|
|
let script_args = script.split_off(1);
|
|
|
|
let script = script[0].to_string();
|
|
|
|
for v in script_args {
|
|
|
|
flags.argv.push(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
flags.watch = matches.is_present("watch");
|
|
|
|
flags.subcommand = DenoSubcommand::Run { script };
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-08-15 10:11:52 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn test_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
runtime_args_parse(flags, matches, true, true);
|
|
|
|
|
|
|
|
let no_run = matches.is_present("no-run");
|
|
|
|
let fail_fast = matches.is_present("fail-fast");
|
|
|
|
let allow_none = matches.is_present("allow-none");
|
|
|
|
let quiet = matches.is_present("quiet");
|
|
|
|
let filter = matches.value_of("filter").map(String::from);
|
|
|
|
|
|
|
|
if matches.is_present("script_arg") {
|
|
|
|
let script_arg: Vec<String> = matches
|
|
|
|
.values_of("script_arg")
|
|
|
|
.unwrap()
|
|
|
|
.map(String::from)
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
for v in script_arg {
|
|
|
|
flags.argv.push(v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-28 14:17:04 -04:00
|
|
|
let concurrent_jobs = if matches.is_present("jobs") {
|
|
|
|
if let Some(value) = matches.value_of("jobs") {
|
|
|
|
value.parse().unwrap()
|
|
|
|
} else {
|
2021-04-30 08:57:42 -04:00
|
|
|
// TODO(caspervonb) drop the dependency on num_cpus when https://doc.rust-lang.org/std/thread/fn.available_concurrency.html becomes stable.
|
|
|
|
num_cpus::get()
|
2021-04-28 14:17:04 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
1
|
|
|
|
};
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
let include = if matches.is_present("files") {
|
|
|
|
let files: Vec<String> = matches
|
|
|
|
.values_of("files")
|
|
|
|
.unwrap()
|
|
|
|
.map(String::from)
|
|
|
|
.collect();
|
|
|
|
Some(files)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
flags.coverage_dir = matches.value_of("coverage").map(String::from);
|
|
|
|
flags.subcommand = DenoSubcommand::Test {
|
|
|
|
no_run,
|
|
|
|
fail_fast,
|
|
|
|
quiet,
|
|
|
|
include,
|
|
|
|
filter,
|
|
|
|
allow_none,
|
2021-04-28 14:17:04 -04:00
|
|
|
concurrent_jobs,
|
2021-04-16 09:28:41 -04:00
|
|
|
};
|
2020-02-17 11:59:51 -05:00
|
|
|
}
|
2020-04-03 13:40:11 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn types_parse(flags: &mut Flags, _matches: &clap::ArgMatches) {
|
|
|
|
flags.subcommand = DenoSubcommand::Types;
|
2020-02-17 11:59:51 -05:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn upgrade_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
ca_file_arg_parse(flags, matches);
|
|
|
|
|
|
|
|
let dry_run = matches.is_present("dry-run");
|
|
|
|
let force = matches.is_present("force");
|
|
|
|
let canary = matches.is_present("canary");
|
|
|
|
let version = matches.value_of("version").map(|s| s.to_string());
|
|
|
|
let output = if matches.is_present("output") {
|
|
|
|
let install_root = matches.value_of("output").unwrap();
|
|
|
|
Some(PathBuf::from(install_root))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
let ca_file = matches.value_of("cert").map(|s| s.to_string());
|
|
|
|
flags.subcommand = DenoSubcommand::Upgrade {
|
|
|
|
dry_run,
|
|
|
|
force,
|
|
|
|
canary,
|
|
|
|
version,
|
|
|
|
output,
|
|
|
|
ca_file,
|
|
|
|
};
|
2021-01-07 13:06:08 -05:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn compile_args_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
import_map_arg_parse(flags, matches);
|
|
|
|
no_remote_arg_parse(flags, matches);
|
|
|
|
config_arg_parse(flags, matches);
|
|
|
|
no_check_arg_parse(flags, matches);
|
|
|
|
reload_arg_parse(flags, matches);
|
|
|
|
lock_args_parse(flags, matches);
|
|
|
|
ca_file_arg_parse(flags, matches);
|
2021-01-07 13:06:08 -05:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn permission_args_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
if let Some(read_wl) = matches.values_of("allow-read") {
|
|
|
|
let read_allowlist: Vec<PathBuf> = read_wl.map(PathBuf::from).collect();
|
|
|
|
flags.allow_read = Some(read_allowlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(write_wl) = matches.values_of("allow-write") {
|
|
|
|
let write_allowlist: Vec<PathBuf> = write_wl.map(PathBuf::from).collect();
|
|
|
|
flags.allow_write = Some(write_allowlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(net_wl) = matches.values_of("allow-net") {
|
|
|
|
let net_allowlist: Vec<String> =
|
|
|
|
crate::flags_allow_net::parse(net_wl.map(ToString::to_string).collect())
|
|
|
|
.unwrap();
|
|
|
|
flags.allow_net = Some(net_allowlist);
|
|
|
|
debug!("net allowlist: {:#?}", &flags.allow_net);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(env_wl) = matches.values_of("allow-env") {
|
|
|
|
let env_allowlist: Vec<String> = env_wl
|
|
|
|
.map(|env: &str| {
|
|
|
|
if cfg!(windows) {
|
|
|
|
env.to_uppercase()
|
|
|
|
} else {
|
|
|
|
env.to_string()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
flags.allow_env = Some(env_allowlist);
|
|
|
|
debug!("env allowlist: {:#?}", &flags.allow_env);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(run_wl) = matches.values_of("allow-run") {
|
|
|
|
let run_allowlist: Vec<String> = run_wl.map(ToString::to_string).collect();
|
|
|
|
flags.allow_run = Some(run_allowlist);
|
|
|
|
debug!("run allowlist: {:#?}", &flags.allow_run);
|
|
|
|
}
|
|
|
|
|
|
|
|
if matches.is_present("allow-plugin") {
|
|
|
|
flags.allow_plugin = true;
|
|
|
|
}
|
|
|
|
if matches.is_present("allow-hrtime") {
|
|
|
|
flags.allow_hrtime = true;
|
|
|
|
}
|
|
|
|
if matches.is_present("allow-all") {
|
|
|
|
flags.allow_read = Some(vec![]);
|
|
|
|
flags.allow_env = Some(vec![]);
|
|
|
|
flags.allow_net = Some(vec![]);
|
|
|
|
flags.allow_run = Some(vec![]);
|
|
|
|
flags.allow_write = Some(vec![]);
|
|
|
|
flags.allow_plugin = true;
|
|
|
|
flags.allow_hrtime = true;
|
|
|
|
}
|
|
|
|
if matches.is_present("prompt") {
|
|
|
|
flags.prompt = true;
|
|
|
|
}
|
2020-03-27 16:09:51 -04:00
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn runtime_args_parse(
|
|
|
|
flags: &mut Flags,
|
|
|
|
matches: &clap::ArgMatches,
|
|
|
|
include_perms: bool,
|
|
|
|
include_inspector: bool,
|
|
|
|
) {
|
|
|
|
compile_args_parse(flags, matches);
|
|
|
|
cached_only_arg_parse(flags, matches);
|
|
|
|
if include_perms {
|
|
|
|
permission_args_parse(flags, matches);
|
|
|
|
}
|
|
|
|
if include_inspector {
|
|
|
|
inspect_arg_parse(flags, matches);
|
2020-04-03 13:40:11 -04:00
|
|
|
}
|
2021-04-16 09:28:41 -04:00
|
|
|
location_arg_parse(flags, matches);
|
|
|
|
v8_flags_arg_parse(flags, matches);
|
|
|
|
seed_arg_parse(flags, matches);
|
|
|
|
inspect_arg_parse(flags, matches);
|
2020-04-03 13:40:11 -04:00
|
|
|
}
|
|
|
|
|
2020-03-27 16:09:51 -04:00
|
|
|
fn inspect_arg_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
2020-04-03 13:40:11 -04:00
|
|
|
let default = || "127.0.0.1:9229".parse::<SocketAddr>().unwrap();
|
2020-03-27 16:09:51 -04:00
|
|
|
flags.inspect = if matches.is_present("inspect") {
|
|
|
|
if let Some(host) = matches.value_of("inspect") {
|
2020-04-03 13:40:11 -04:00
|
|
|
Some(host.parse().unwrap())
|
2020-03-27 16:09:51 -04:00
|
|
|
} else {
|
2020-04-03 13:40:11 -04:00
|
|
|
Some(default())
|
2020-03-27 16:09:51 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
flags.inspect_brk = if matches.is_present("inspect-brk") {
|
|
|
|
if let Some(host) = matches.value_of("inspect-brk") {
|
2020-04-03 13:40:11 -04:00
|
|
|
Some(host.parse().unwrap())
|
2020-03-27 16:09:51 -04:00
|
|
|
} else {
|
2020-04-03 13:40:11 -04:00
|
|
|
Some(default())
|
2020-03-27 16:09:51 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn import_map_arg_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
flags.import_map_path = matches.value_of("import-map").map(ToOwned::to_owned);
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-08-15 10:11:52 -04:00
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
fn reload_arg_parse(flags: &mut Flags, matches: &ArgMatches) {
|
2020-05-16 09:41:32 -04:00
|
|
|
if let Some(cache_bl) = matches.values_of("reload") {
|
2020-06-13 13:09:39 -04:00
|
|
|
let raw_cache_blocklist: Vec<String> =
|
2020-11-12 17:17:31 -05:00
|
|
|
cache_bl.map(ToString::to_string).collect();
|
2020-06-13 13:09:39 -04:00
|
|
|
if raw_cache_blocklist.is_empty() {
|
2020-05-16 09:41:32 -04:00
|
|
|
flags.reload = true;
|
|
|
|
} else {
|
2020-06-13 13:09:39 -04:00
|
|
|
flags.cache_blocklist = resolve_urls(raw_cache_blocklist);
|
|
|
|
debug!("cache blocklist: {:#?}", &flags.cache_blocklist);
|
2019-11-26 11:06:32 -05:00
|
|
|
flags.reload = false;
|
2019-05-03 17:15:16 -04:00
|
|
|
}
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
|
|
|
}
|
2019-10-04 09:02:36 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn ca_file_arg_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
flags.ca_file = matches.value_of("cert").map(ToOwned::to_owned);
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-10-04 09:02:36 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn cached_only_arg_parse(flags: &mut Flags, matches: &ArgMatches) {
|
|
|
|
if matches.is_present("cached-only") {
|
|
|
|
flags.cached_only = true;
|
|
|
|
}
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-10-04 09:02:36 -04:00
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn location_arg_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
flags.location = matches
|
|
|
|
.value_of("location")
|
|
|
|
.map(|href| Url::parse(href).unwrap());
|
2019-11-26 23:25:14 -05:00
|
|
|
}
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
fn v8_flags_arg_parse(flags: &mut Flags, matches: &ArgMatches) {
|
2019-11-26 23:25:14 -05:00
|
|
|
if let Some(v8_flags) = matches.values_of("v8-flags") {
|
2020-12-06 12:19:21 -05:00
|
|
|
flags.v8_flags = v8_flags.map(String::from).collect();
|
2019-11-26 23:25:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-18 13:09:11 -04:00
|
|
|
fn seed_arg_parse(flags: &mut Flags, matches: &ArgMatches) {
|
|
|
|
if matches.is_present("seed") {
|
|
|
|
let seed_string = matches.value_of("seed").unwrap();
|
|
|
|
let seed = seed_string.parse::<u64>().unwrap();
|
|
|
|
flags.seed = Some(seed);
|
|
|
|
|
2020-12-06 12:19:21 -05:00
|
|
|
flags.v8_flags.push(format!("--random-seed={}", seed));
|
2020-09-18 13:09:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-08 05:26:39 -04:00
|
|
|
fn no_check_arg_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
if matches.is_present("no-check") {
|
|
|
|
flags.no_check = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn lock_args_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
|
|
|
if matches.is_present("lock") {
|
|
|
|
let lockfile = matches.value_of("lock").unwrap();
|
|
|
|
flags.lock = Some(PathBuf::from(lockfile));
|
|
|
|
}
|
|
|
|
if matches.is_present("lock-write") {
|
|
|
|
flags.lock_write = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn config_arg_parse(flags: &mut Flags, matches: &ArgMatches) {
|
|
|
|
flags.config_path = matches.value_of("config").map(ToOwned::to_owned);
|
2019-12-03 17:48:53 -05:00
|
|
|
}
|
|
|
|
|
2020-02-26 05:52:15 -05:00
|
|
|
fn no_remote_arg_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
|
2019-12-03 17:48:53 -05:00
|
|
|
if matches.is_present("no-remote") {
|
|
|
|
flags.no_remote = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-16 09:28:41 -04:00
|
|
|
fn inspect_arg_validate(val: String) -> Result<(), String> {
|
|
|
|
match val.parse::<SocketAddr>() {
|
|
|
|
Ok(_) => Ok(()),
|
|
|
|
Err(e) => Err(e.to_string()),
|
2021-04-11 22:15:43 -04:00
|
|
|
}
|
2020-01-30 18:42:39 -05:00
|
|
|
}
|
|
|
|
|
2019-11-26 11:06:32 -05:00
|
|
|
// TODO(ry) move this to utility module and add test.
|
|
|
|
/// Strips fragment part of URL. Panics on bad URL.
|
|
|
|
pub fn resolve_urls(urls: Vec<String>) -> Vec<String> {
|
|
|
|
let mut out: Vec<String> = vec![];
|
|
|
|
for urlstr in urls.iter() {
|
2020-11-12 17:17:31 -05:00
|
|
|
if let Ok(mut url) = Url::from_str(urlstr) {
|
|
|
|
url.set_fragment(None);
|
|
|
|
let mut full_url = String::from(url.as_str());
|
|
|
|
if full_url.len() > 1 && full_url.ends_with('/') {
|
|
|
|
full_url.pop();
|
|
|
|
}
|
|
|
|
out.push(full_url);
|
|
|
|
} else {
|
2019-11-26 11:06:32 -05:00
|
|
|
panic!("Bad Url: {}", urlstr);
|
2019-06-05 13:44:46 -04:00
|
|
|
}
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
|
|
|
out
|
2019-04-29 19:43:06 -04:00
|
|
|
}
|
|
|
|
|
2019-11-26 11:06:32 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
2020-12-06 12:19:21 -05:00
|
|
|
/// Creates vector of strings, Vec<String>
|
|
|
|
macro_rules! svec {
|
|
|
|
($($x:expr),*) => (vec![$($x.to_string()),*]);
|
|
|
|
}
|
|
|
|
|
2020-09-20 07:45:00 -04:00
|
|
|
#[test]
|
|
|
|
fn global_flags() {
|
|
|
|
#[rustfmt::skip]
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "--unstable", "--log-level", "debug", "--quiet", "run", "script.ts"]);
|
2020-09-20 07:45:00 -04:00
|
|
|
let flags = r.unwrap();
|
|
|
|
assert_eq!(
|
|
|
|
flags,
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
|
|
|
unstable: true,
|
|
|
|
log_level: Some(Level::Error),
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
#[rustfmt::skip]
|
2021-01-07 13:06:08 -05:00
|
|
|
let r2 = flags_from_vec(svec!["deno", "run", "--unstable", "--log-level", "debug", "--quiet", "script.ts"]);
|
2020-09-20 07:45:00 -04:00
|
|
|
let flags2 = r2.unwrap();
|
|
|
|
assert_eq!(flags2, flags);
|
|
|
|
}
|
|
|
|
|
2020-03-23 11:37:24 -04:00
|
|
|
#[test]
|
|
|
|
fn upgrade() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "upgrade", "--dry-run", "--force"]);
|
2020-03-23 11:37:24 -04:00
|
|
|
let flags = r.unwrap();
|
|
|
|
assert_eq!(
|
|
|
|
flags,
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Upgrade {
|
|
|
|
force: true,
|
|
|
|
dry_run: true,
|
2020-11-29 14:00:35 -05:00
|
|
|
canary: false,
|
2020-07-05 23:58:23 -04:00
|
|
|
version: None,
|
2020-07-06 18:21:26 -04:00
|
|
|
output: None,
|
|
|
|
ca_file: None,
|
2020-03-23 11:37:24 -04:00
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-11-26 11:06:32 -05:00
|
|
|
#[test]
|
|
|
|
fn version() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "--version"]);
|
2019-11-26 11:06:32 -05:00
|
|
|
assert_eq!(r.unwrap_err().kind, clap::ErrorKind::VersionDisplayed);
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "-V"]);
|
2019-11-26 11:06:32 -05:00
|
|
|
assert_eq!(r.unwrap_err().kind, clap::ErrorKind::VersionDisplayed);
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
2018-08-24 15:26:40 -04:00
|
|
|
|
2019-04-21 11:34:18 -04:00
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn run_reload() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "-r", "script.ts"]);
|
2019-11-26 11:06:32 -05:00
|
|
|
let flags = r.unwrap();
|
2019-04-21 11:34:18 -04:00
|
|
|
assert_eq!(
|
|
|
|
flags,
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2019-04-21 11:34:18 -04:00
|
|
|
reload: true,
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2018-10-11 17:23:22 -04:00
|
|
|
|
2020-09-11 12:19:49 -04:00
|
|
|
#[test]
|
|
|
|
fn run_watch() {
|
2021-04-27 06:44:36 -04:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "--watch", "script.ts"]);
|
2020-09-11 12:19:49 -04:00
|
|
|
let flags = r.unwrap();
|
|
|
|
assert_eq!(
|
|
|
|
flags,
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
|
|
|
watch: true,
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-04-21 11:34:18 -04:00
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn run_reload_allow_write() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r =
|
|
|
|
flags_from_vec(svec!["deno", "run", "-r", "--allow-write", "script.ts"]);
|
2019-04-21 11:34:18 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2019-04-21 11:34:18 -04:00
|
|
|
reload: true,
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_write: Some(vec![]),
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2018-10-15 14:26:22 -04:00
|
|
|
|
2019-04-21 11:34:18 -04:00
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn run_v8_flags() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "--v8-flags=--help"]);
|
2019-04-21 11:34:18 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
2020-11-21 17:33:42 -05:00
|
|
|
script: "_".to_string(),
|
2020-02-04 14:24:33 -05:00
|
|
|
},
|
2020-12-06 12:19:21 -05:00
|
|
|
v8_flags: svec!["--help"],
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
|
|
|
);
|
2019-01-09 11:59:54 -05:00
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2019-05-03 17:15:16 -04:00
|
|
|
"deno",
|
|
|
|
"run",
|
2019-11-26 11:06:32 -05:00
|
|
|
"--v8-flags=--expose-gc,--gc-stats=1",
|
2019-05-03 17:15:16 -04:00
|
|
|
"script.ts"
|
|
|
|
]);
|
2019-04-21 11:34:18 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2020-12-06 12:19:21 -05:00
|
|
|
v8_flags: svec!["--expose-gc", "--gc-stats=1"],
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn script_args() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2019-05-03 17:15:16 -04:00
|
|
|
"deno",
|
|
|
|
"run",
|
|
|
|
"--allow-net",
|
|
|
|
"gist.ts",
|
|
|
|
"--title",
|
|
|
|
"X"
|
|
|
|
]);
|
2019-04-21 11:34:18 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "gist.ts".to_string(),
|
|
|
|
},
|
|
|
|
argv: svec!["--title", "X"],
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(vec![]),
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
2019-04-29 19:43:06 -04:00
|
|
|
);
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn allow_all() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "--allow-all", "gist.ts"]);
|
2019-04-21 11:34:18 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "gist.ts".to_string(),
|
|
|
|
},
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(vec![]),
|
2021-04-13 07:25:21 -04:00
|
|
|
allow_env: Some(vec![]),
|
2021-04-09 18:12:00 -04:00
|
|
|
allow_run: Some(vec![]),
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_read: Some(vec![]),
|
|
|
|
allow_write: Some(vec![]),
|
2019-12-05 15:30:20 -05:00
|
|
|
allow_plugin: true,
|
2019-05-23 12:28:29 -04:00
|
|
|
allow_hrtime: true,
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
2019-04-29 19:43:06 -04:00
|
|
|
);
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn allow_read() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "--allow-read", "gist.ts"]);
|
2019-04-21 11:34:18 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "gist.ts".to_string(),
|
|
|
|
},
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_read: Some(vec![]),
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
2019-04-29 19:43:06 -04:00
|
|
|
);
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn allow_hrtime() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "--allow-hrtime", "gist.ts"]);
|
2019-04-21 11:34:18 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "gist.ts".to_string(),
|
|
|
|
},
|
2019-05-23 12:28:29 -04:00
|
|
|
allow_hrtime: true,
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
2019-04-29 19:43:06 -04:00
|
|
|
);
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
2019-04-08 16:22:40 -04:00
|
|
|
|
2019-04-21 11:34:18 -04:00
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn double_hyphen() {
|
2019-06-29 18:32:54 -04:00
|
|
|
// notice that flags passed after double dash will not
|
2020-02-26 05:52:15 -05:00
|
|
|
// be parsed to Flags but instead forwarded to
|
2019-04-21 11:34:18 -04:00
|
|
|
// script args as Deno.args
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2019-04-21 11:34:18 -04:00
|
|
|
"deno",
|
2019-05-03 17:15:16 -04:00
|
|
|
"run",
|
2019-04-21 11:34:18 -04:00
|
|
|
"--allow-write",
|
|
|
|
"script.ts",
|
2019-06-29 18:32:54 -04:00
|
|
|
"--",
|
2019-04-21 11:34:18 -04:00
|
|
|
"-D",
|
|
|
|
"--allow-net"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
|
|
|
argv: svec!["--", "-D", "--allow-net"],
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_write: Some(vec![]),
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
2019-04-29 19:43:06 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn fmt() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "fmt", "script_1.ts", "script_2.ts"]);
|
2019-04-29 19:43:06 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-13 16:02:18 -05:00
|
|
|
subcommand: DenoSubcommand::Fmt {
|
2020-07-30 12:09:08 -04:00
|
|
|
ignore: vec![],
|
2020-01-29 21:16:48 -05:00
|
|
|
check: false,
|
2020-10-21 07:12:01 -04:00
|
|
|
files: vec![
|
|
|
|
PathBuf::from("script_1.ts"),
|
|
|
|
PathBuf::from("script_2.ts")
|
|
|
|
],
|
2021-01-19 12:39:35 -05:00
|
|
|
ext: "ts".to_string()
|
2020-01-29 21:16:48 -05:00
|
|
|
},
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2020-01-29 21:16:48 -05:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "fmt", "--check"]);
|
2020-01-29 21:16:48 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-13 16:02:18 -05:00
|
|
|
subcommand: DenoSubcommand::Fmt {
|
2020-07-30 12:09:08 -04:00
|
|
|
ignore: vec![],
|
2020-01-29 21:16:48 -05:00
|
|
|
check: true,
|
2020-02-13 16:02:18 -05:00
|
|
|
files: vec![],
|
2021-01-19 12:39:35 -05:00
|
|
|
ext: "ts".to_string(),
|
2020-01-29 21:16:48 -05:00
|
|
|
},
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-04-29 19:43:06 -04:00
|
|
|
}
|
|
|
|
);
|
2020-02-09 05:19:05 -05:00
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "fmt"]);
|
2020-02-09 05:19:05 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-13 16:02:18 -05:00
|
|
|
subcommand: DenoSubcommand::Fmt {
|
2020-07-30 12:09:08 -04:00
|
|
|
ignore: vec![],
|
2020-02-09 05:19:05 -05:00
|
|
|
check: false,
|
2020-02-13 16:02:18 -05:00
|
|
|
files: vec![],
|
2021-01-19 12:39:35 -05:00
|
|
|
ext: "ts".to_string(),
|
2020-02-09 05:19:05 -05:00
|
|
|
},
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2020-02-09 05:19:05 -05:00
|
|
|
}
|
|
|
|
);
|
2020-11-22 15:45:44 -05:00
|
|
|
|
2021-04-27 06:44:36 -04:00
|
|
|
let r = flags_from_vec(svec!["deno", "fmt", "--watch"]);
|
2020-11-22 15:45:44 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Fmt {
|
|
|
|
ignore: vec![],
|
|
|
|
check: false,
|
|
|
|
files: vec![],
|
2021-01-19 12:39:35 -05:00
|
|
|
ext: "ts".to_string(),
|
2020-11-22 15:45:44 -05:00
|
|
|
},
|
|
|
|
watch: true,
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-11-22 15:45:44 -05:00
|
|
|
"deno",
|
|
|
|
"fmt",
|
|
|
|
"--check",
|
|
|
|
"--watch",
|
|
|
|
"foo.ts",
|
|
|
|
"--ignore=bar.js"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Fmt {
|
|
|
|
ignore: vec![PathBuf::from("bar.js")],
|
|
|
|
check: true,
|
|
|
|
files: vec![PathBuf::from("foo.ts")],
|
2021-01-19 12:39:35 -05:00
|
|
|
ext: "ts".to_string(),
|
2020-11-22 15:45:44 -05:00
|
|
|
},
|
|
|
|
watch: true,
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
2019-04-29 19:43:06 -04:00
|
|
|
}
|
|
|
|
|
2020-12-07 05:46:39 -05:00
|
|
|
#[test]
|
2021-02-26 09:51:25 -05:00
|
|
|
fn lsp() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "lsp"]);
|
2020-12-07 05:46:39 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
2021-02-26 09:51:25 -05:00
|
|
|
subcommand: DenoSubcommand::Lsp,
|
2020-12-07 05:46:39 -05:00
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-06-10 17:29:48 -04:00
|
|
|
#[test]
|
|
|
|
fn lint() {
|
2021-04-27 06:44:36 -04:00
|
|
|
let r = flags_from_vec(svec!["deno", "lint", "script_1.ts", "script_2.ts"]);
|
2020-06-10 17:29:48 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Lint {
|
2020-10-21 07:12:01 -04:00
|
|
|
files: vec![
|
|
|
|
PathBuf::from("script_1.ts"),
|
|
|
|
PathBuf::from("script_2.ts")
|
|
|
|
],
|
2020-06-12 10:42:12 -04:00
|
|
|
rules: false,
|
2020-08-13 11:30:46 -04:00
|
|
|
json: false,
|
2020-08-12 09:47:44 -04:00
|
|
|
ignore: vec![],
|
2020-06-10 17:29:48 -04:00
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2021-04-27 06:44:36 -04:00
|
|
|
let r =
|
|
|
|
flags_from_vec(svec!["deno", "lint", "--ignore=script_1.ts,script_2.ts"]);
|
2020-06-10 17:29:48 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
2020-06-12 10:42:12 -04:00
|
|
|
subcommand: DenoSubcommand::Lint {
|
|
|
|
files: vec![],
|
|
|
|
rules: false,
|
2020-08-13 11:30:46 -04:00
|
|
|
json: false,
|
2020-10-21 07:12:01 -04:00
|
|
|
ignore: vec![
|
|
|
|
PathBuf::from("script_1.ts"),
|
|
|
|
PathBuf::from("script_2.ts")
|
|
|
|
],
|
2020-06-12 10:42:12 -04:00
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2021-04-27 06:44:36 -04:00
|
|
|
let r = flags_from_vec(svec!["deno", "lint", "--rules"]);
|
2020-06-12 10:42:12 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Lint {
|
|
|
|
files: vec![],
|
2020-08-12 09:47:44 -04:00
|
|
|
rules: true,
|
2020-08-13 11:30:46 -04:00
|
|
|
json: false,
|
|
|
|
ignore: vec![],
|
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2021-04-27 06:44:36 -04:00
|
|
|
let r = flags_from_vec(svec!["deno", "lint", "--json", "script_1.ts"]);
|
2020-08-13 11:30:46 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Lint {
|
2020-10-21 07:12:01 -04:00
|
|
|
files: vec![PathBuf::from("script_1.ts")],
|
2020-08-13 11:30:46 -04:00
|
|
|
rules: false,
|
|
|
|
json: true,
|
2020-08-12 09:47:44 -04:00
|
|
|
ignore: vec![],
|
2020-06-12 10:42:12 -04:00
|
|
|
},
|
2020-06-10 17:29:48 -04:00
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-04-29 19:43:06 -04:00
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn types() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "types"]);
|
2019-11-26 11:06:32 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2019-11-26 11:06:32 -05:00
|
|
|
subcommand: DenoSubcommand::Types,
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
|
|
|
);
|
2019-04-29 19:43:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-04-07 11:24:47 -04:00
|
|
|
fn cache() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "cache", "script.ts"]);
|
2019-11-26 11:06:32 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-04-07 11:24:47 -04:00
|
|
|
subcommand: DenoSubcommand::Cache {
|
2020-02-04 14:24:33 -05:00
|
|
|
files: svec!["script.ts"],
|
|
|
|
},
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
|
|
|
);
|
2019-04-29 19:43:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn info() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "info", "script.ts"]);
|
2019-11-26 11:06:32 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Info {
|
2020-07-08 10:50:12 -04:00
|
|
|
json: false,
|
|
|
|
file: Some("script.ts".to_string()),
|
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "info", "--reload", "script.ts"]);
|
2020-08-12 06:58:50 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Info {
|
|
|
|
json: false,
|
|
|
|
file: Some("script.ts".to_string()),
|
|
|
|
},
|
|
|
|
reload: true,
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "info", "--json", "script.ts"]);
|
2020-07-08 10:50:12 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Info {
|
|
|
|
json: true,
|
2020-02-04 14:24:33 -05:00
|
|
|
file: Some("script.ts".to_string()),
|
|
|
|
},
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
|
|
|
);
|
2019-08-11 20:43:01 -04:00
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "info"]);
|
2019-11-26 11:06:32 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-07-08 10:50:12 -04:00
|
|
|
subcommand: DenoSubcommand::Info {
|
|
|
|
json: false,
|
|
|
|
file: None
|
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "info", "--json"]);
|
2020-07-08 10:50:12 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Info {
|
|
|
|
json: true,
|
|
|
|
file: None
|
|
|
|
},
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
|
|
|
);
|
2019-04-21 11:34:18 -04:00
|
|
|
}
|
2019-04-29 10:58:31 -04:00
|
|
|
|
2019-05-03 16:24:09 -04:00
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn tsconfig() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r =
|
|
|
|
flags_from_vec(svec!["deno", "run", "-c", "tsconfig.json", "script.ts"]);
|
2019-05-03 17:15:16 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2019-05-03 17:15:16 -04:00
|
|
|
config_path: Some("tsconfig.json".to_owned()),
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-05-03 17:15:16 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn eval() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "eval", "'console.log(\"hello\")'"]);
|
2019-05-03 17:15:16 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Eval {
|
2020-05-21 10:35:36 -04:00
|
|
|
print: false,
|
2020-02-04 14:24:33 -05:00
|
|
|
code: "'console.log(\"hello\")'".to_string(),
|
2021-02-21 11:58:32 -05:00
|
|
|
ext: "js".to_string(),
|
2020-02-28 09:17:56 -05:00
|
|
|
},
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(vec![]),
|
2021-04-13 07:25:21 -04:00
|
|
|
allow_env: Some(vec![]),
|
2021-04-09 18:12:00 -04:00
|
|
|
allow_run: Some(vec![]),
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_read: Some(vec![]),
|
|
|
|
allow_write: Some(vec![]),
|
2020-02-28 09:17:56 -05:00
|
|
|
allow_plugin: true,
|
|
|
|
allow_hrtime: true,
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-05-21 10:35:36 -04:00
|
|
|
#[test]
|
|
|
|
fn eval_p() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "eval", "-p", "1+2"]);
|
2020-05-21 10:35:36 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Eval {
|
|
|
|
print: true,
|
|
|
|
code: "1+2".to_string(),
|
2021-02-21 11:58:32 -05:00
|
|
|
ext: "js".to_string(),
|
2020-05-21 10:35:36 -04:00
|
|
|
},
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(vec![]),
|
2021-04-13 07:25:21 -04:00
|
|
|
allow_env: Some(vec![]),
|
2021-04-09 18:12:00 -04:00
|
|
|
allow_run: Some(vec![]),
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_read: Some(vec![]),
|
|
|
|
allow_write: Some(vec![]),
|
2020-05-21 10:35:36 -04:00
|
|
|
allow_plugin: true,
|
|
|
|
allow_hrtime: true,
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-02-28 09:17:56 -05:00
|
|
|
#[test]
|
|
|
|
fn eval_typescript() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r =
|
|
|
|
flags_from_vec(svec!["deno", "eval", "-T", "'console.log(\"hello\")'"]);
|
2020-02-28 09:17:56 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Eval {
|
2020-05-21 10:35:36 -04:00
|
|
|
print: false,
|
2020-02-28 09:17:56 -05:00
|
|
|
code: "'console.log(\"hello\")'".to_string(),
|
2021-02-21 11:58:32 -05:00
|
|
|
ext: "ts".to_string(),
|
2020-02-04 14:24:33 -05:00
|
|
|
},
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(vec![]),
|
2021-04-13 07:25:21 -04:00
|
|
|
allow_env: Some(vec![]),
|
2021-04-09 18:12:00 -04:00
|
|
|
allow_run: Some(vec![]),
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_read: Some(vec![]),
|
|
|
|
allow_write: Some(vec![]),
|
2019-12-05 15:30:20 -05:00
|
|
|
allow_plugin: true,
|
2019-05-23 12:28:29 -04:00
|
|
|
allow_hrtime: true,
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-05-03 17:15:16 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-01-26 09:49:34 -05:00
|
|
|
#[test]
|
2020-09-18 13:09:11 -04:00
|
|
|
fn eval_with_flags() {
|
|
|
|
#[rustfmt::skip]
|
2021-03-01 06:41:22 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "eval", "--import-map", "import_map.json", "--no-remote", "--config", "tsconfig.json", "--no-check", "--reload", "--lock", "lock.json", "--lock-write", "--cert", "example.crt", "--cached-only", "--location", "https:foo", "--v8-flags=--help", "--seed", "1", "--inspect=127.0.0.1:9229", "42"]);
|
2020-01-26 09:49:34 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Eval {
|
2020-05-21 10:35:36 -04:00
|
|
|
print: false,
|
2020-02-04 14:24:33 -05:00
|
|
|
code: "42".to_string(),
|
2021-02-21 11:58:32 -05:00
|
|
|
ext: "js".to_string(),
|
2020-02-04 14:24:33 -05:00
|
|
|
},
|
2020-09-18 13:09:11 -04:00
|
|
|
import_map_path: Some("import_map.json".to_string()),
|
|
|
|
no_remote: true,
|
|
|
|
config_path: Some("tsconfig.json".to_string()),
|
|
|
|
no_check: true,
|
|
|
|
reload: true,
|
2020-10-19 15:19:20 -04:00
|
|
|
lock: Some(PathBuf::from("lock.json")),
|
2020-09-18 13:09:11 -04:00
|
|
|
lock_write: true,
|
|
|
|
ca_file: Some("example.crt".to_string()),
|
|
|
|
cached_only: true,
|
2021-01-07 13:06:08 -05:00
|
|
|
location: Some(Url::parse("https://foo/").unwrap()),
|
2020-12-06 12:19:21 -05:00
|
|
|
v8_flags: svec!["--help", "--random-seed=1"],
|
2020-09-18 13:09:11 -04:00
|
|
|
seed: Some(1),
|
|
|
|
inspect: Some("127.0.0.1:9229".parse().unwrap()),
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(vec![]),
|
2021-04-13 07:25:21 -04:00
|
|
|
allow_env: Some(vec![]),
|
2021-04-09 18:12:00 -04:00
|
|
|
allow_run: Some(vec![]),
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_read: Some(vec![]),
|
|
|
|
allow_write: Some(vec![]),
|
2020-01-26 09:49:34 -05:00
|
|
|
allow_plugin: true,
|
|
|
|
allow_hrtime: true,
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2020-01-26 09:49:34 -05:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-11-29 21:10:21 -05:00
|
|
|
#[test]
|
|
|
|
fn eval_args() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-11-29 21:10:21 -05:00
|
|
|
"deno",
|
|
|
|
"eval",
|
|
|
|
"console.log(Deno.args)",
|
|
|
|
"arg1",
|
|
|
|
"arg2"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Eval {
|
|
|
|
print: false,
|
|
|
|
code: "console.log(Deno.args)".to_string(),
|
2021-02-21 11:58:32 -05:00
|
|
|
ext: "js".to_string(),
|
2020-11-29 21:10:21 -05:00
|
|
|
},
|
|
|
|
argv: svec!["arg1", "arg2"],
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(vec![]),
|
2021-04-13 07:25:21 -04:00
|
|
|
allow_env: Some(vec![]),
|
2021-04-09 18:12:00 -04:00
|
|
|
allow_run: Some(vec![]),
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_read: Some(vec![]),
|
|
|
|
allow_write: Some(vec![]),
|
2020-11-29 21:10:21 -05:00
|
|
|
allow_plugin: true,
|
|
|
|
allow_hrtime: true,
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-05-03 17:15:16 -04:00
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn repl() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno"]);
|
2019-05-03 17:15:16 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-10-01 19:14:55 -04:00
|
|
|
repl: true,
|
2019-11-26 11:06:32 -05:00
|
|
|
subcommand: DenoSubcommand::Repl,
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(vec![]),
|
2021-04-13 07:25:21 -04:00
|
|
|
allow_env: Some(vec![]),
|
2021-04-09 18:12:00 -04:00
|
|
|
allow_run: Some(vec![]),
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_read: Some(vec![]),
|
|
|
|
allow_write: Some(vec![]),
|
2019-12-05 15:30:20 -05:00
|
|
|
allow_plugin: true,
|
2019-05-23 12:28:29 -04:00
|
|
|
allow_hrtime: true,
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-05-03 17:15:16 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-30 11:23:40 -04:00
|
|
|
#[test]
|
2020-09-18 13:09:11 -04:00
|
|
|
fn repl_with_flags() {
|
|
|
|
#[rustfmt::skip]
|
2021-03-01 06:41:22 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "repl", "--import-map", "import_map.json", "--no-remote", "--config", "tsconfig.json", "--no-check", "--reload", "--lock", "lock.json", "--lock-write", "--cert", "example.crt", "--cached-only", "--location", "https:foo", "--v8-flags=--help", "--seed", "1", "--inspect=127.0.0.1:9229"]);
|
2020-04-30 11:23:40 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
2020-10-01 19:14:55 -04:00
|
|
|
repl: true,
|
2020-04-30 11:23:40 -04:00
|
|
|
subcommand: DenoSubcommand::Repl,
|
2020-09-18 13:09:11 -04:00
|
|
|
import_map_path: Some("import_map.json".to_string()),
|
|
|
|
no_remote: true,
|
|
|
|
config_path: Some("tsconfig.json".to_string()),
|
|
|
|
no_check: true,
|
|
|
|
reload: true,
|
2020-10-19 15:19:20 -04:00
|
|
|
lock: Some(PathBuf::from("lock.json")),
|
2020-09-18 13:09:11 -04:00
|
|
|
lock_write: true,
|
|
|
|
ca_file: Some("example.crt".to_string()),
|
|
|
|
cached_only: true,
|
2021-01-07 13:06:08 -05:00
|
|
|
location: Some(Url::parse("https://foo/").unwrap()),
|
2020-12-06 12:19:21 -05:00
|
|
|
v8_flags: svec!["--help", "--random-seed=1"],
|
2020-09-18 13:09:11 -04:00
|
|
|
seed: Some(1),
|
|
|
|
inspect: Some("127.0.0.1:9229".parse().unwrap()),
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(vec![]),
|
2021-04-13 07:25:21 -04:00
|
|
|
allow_env: Some(vec![]),
|
2021-04-09 18:12:00 -04:00
|
|
|
allow_run: Some(vec![]),
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_read: Some(vec![]),
|
|
|
|
allow_write: Some(vec![]),
|
2020-04-30 11:23:40 -04:00
|
|
|
allow_plugin: true,
|
|
|
|
allow_hrtime: true,
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-05-08 19:20:30 -04:00
|
|
|
#[test]
|
2020-06-13 13:09:39 -04:00
|
|
|
fn allow_read_allowlist() {
|
2019-05-09 12:20:34 -04:00
|
|
|
use tempfile::TempDir;
|
2020-02-11 04:29:36 -05:00
|
|
|
let temp_dir = TempDir::new().expect("tempdir fail").path().to_path_buf();
|
2019-05-09 12:20:34 -04:00
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2019-05-08 19:20:30 -04:00
|
|
|
"deno",
|
|
|
|
"run",
|
2020-02-11 04:29:36 -05:00
|
|
|
format!("--allow-read=.,{}", temp_dir.to_str().unwrap()),
|
2019-05-08 19:20:30 -04:00
|
|
|
"script.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_read: Some(vec![PathBuf::from("."), temp_dir]),
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-05-08 19:20:30 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2019-06-09 09:08:20 -04:00
|
|
|
|
2019-05-08 19:20:30 -04:00
|
|
|
#[test]
|
2020-06-13 13:09:39 -04:00
|
|
|
fn allow_write_allowlist() {
|
2019-05-09 12:20:34 -04:00
|
|
|
use tempfile::TempDir;
|
2020-02-11 04:29:36 -05:00
|
|
|
let temp_dir = TempDir::new().expect("tempdir fail").path().to_path_buf();
|
2019-05-09 12:20:34 -04:00
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2019-05-08 19:20:30 -04:00
|
|
|
"deno",
|
|
|
|
"run",
|
2020-02-11 04:29:36 -05:00
|
|
|
format!("--allow-write=.,{}", temp_dir.to_str().unwrap()),
|
2019-05-08 19:20:30 -04:00
|
|
|
"script.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_write: Some(vec![PathBuf::from("."), temp_dir]),
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-05-08 19:20:30 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2019-06-09 09:08:20 -04:00
|
|
|
|
2019-05-08 19:20:30 -04:00
|
|
|
#[test]
|
2020-06-13 13:09:39 -04:00
|
|
|
fn allow_net_allowlist() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2019-05-08 19:20:30 -04:00
|
|
|
"deno",
|
|
|
|
"run",
|
|
|
|
"--allow-net=127.0.0.1",
|
|
|
|
"script.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(svec!["127.0.0.1"]),
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-05-08 19:20:30 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2019-06-01 08:54:32 -04:00
|
|
|
|
2021-04-13 07:25:21 -04:00
|
|
|
#[test]
|
|
|
|
fn allow_env_allowlist() {
|
|
|
|
let r =
|
|
|
|
flags_from_vec(svec!["deno", "run", "--allow-env=HOME", "script.ts"]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
|
|
|
allow_env: Some(svec!["HOME"]),
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn allow_env_allowlist_multiple() {
|
|
|
|
let r = flags_from_vec(svec![
|
|
|
|
"deno",
|
|
|
|
"run",
|
|
|
|
"--allow-env=HOME,PATH",
|
|
|
|
"script.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
|
|
|
allow_env: Some(svec!["HOME", "PATH"]),
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn allow_env_allowlist_validator() {
|
|
|
|
let r =
|
|
|
|
flags_from_vec(svec!["deno", "run", "--allow-env=HOME", "script.ts"]);
|
|
|
|
assert!(r.is_ok());
|
|
|
|
let r =
|
|
|
|
flags_from_vec(svec!["deno", "run", "--allow-env=H=ME", "script.ts"]);
|
|
|
|
assert!(r.is_err());
|
|
|
|
let r =
|
|
|
|
flags_from_vec(svec!["deno", "run", "--allow-env=H\0ME", "script.ts"]);
|
|
|
|
assert!(r.is_err());
|
|
|
|
}
|
|
|
|
|
2019-06-08 14:42:28 -04:00
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn bundle() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "bundle", "source.ts"]);
|
2019-06-08 14:42:28 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Bundle {
|
|
|
|
source_file: "source.ts".to_string(),
|
|
|
|
out_file: None,
|
|
|
|
},
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-05-07 11:02:03 -04:00
|
|
|
#[test]
|
|
|
|
fn bundle_with_config() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-05-07 11:02:03 -04:00
|
|
|
"deno",
|
|
|
|
"bundle",
|
2020-09-18 13:09:11 -04:00
|
|
|
"--no-remote",
|
2020-05-07 11:02:03 -04:00
|
|
|
"--config",
|
|
|
|
"tsconfig.json",
|
|
|
|
"source.ts",
|
|
|
|
"bundle.js"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Bundle {
|
|
|
|
source_file: "source.ts".to_string(),
|
|
|
|
out_file: Some(PathBuf::from("bundle.js")),
|
|
|
|
},
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_write: Some(vec![]),
|
2020-09-18 13:09:11 -04:00
|
|
|
no_remote: true,
|
2020-05-07 11:02:03 -04:00
|
|
|
config_path: Some("tsconfig.json".to_owned()),
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-11-26 11:06:32 -05:00
|
|
|
#[test]
|
|
|
|
fn bundle_with_output() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "bundle", "source.ts", "bundle.js"]);
|
2019-11-26 11:06:32 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Bundle {
|
|
|
|
source_file: "source.ts".to_string(),
|
2020-02-11 04:29:36 -05:00
|
|
|
out_file: Some(PathBuf::from("bundle.js")),
|
2020-02-04 14:24:33 -05:00
|
|
|
},
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_write: Some(vec![]),
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2020-07-07 07:05:28 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn bundle_with_lock() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-07-07 07:05:28 -04:00
|
|
|
"deno",
|
|
|
|
"bundle",
|
|
|
|
"--lock-write",
|
|
|
|
"--lock=lock.json",
|
|
|
|
"source.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Bundle {
|
|
|
|
source_file: "source.ts".to_string(),
|
|
|
|
out_file: None,
|
|
|
|
},
|
|
|
|
lock_write: true,
|
2020-10-19 15:19:20 -04:00
|
|
|
lock: Some(PathBuf::from("lock.json")),
|
2020-07-07 07:05:28 -04:00
|
|
|
..Flags::default()
|
2019-06-08 14:42:28 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2019-06-09 09:08:20 -04:00
|
|
|
|
2020-08-12 11:32:03 -04:00
|
|
|
#[test]
|
|
|
|
fn bundle_with_reload() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "bundle", "--reload", "source.ts"]);
|
2020-08-12 11:32:03 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
reload: true,
|
|
|
|
subcommand: DenoSubcommand::Bundle {
|
|
|
|
source_file: "source.ts".to_string(),
|
|
|
|
out_file: None,
|
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-10-19 23:10:42 -04:00
|
|
|
#[test]
|
|
|
|
fn bundle_nocheck() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "bundle", "--no-check", "script.ts"])
|
|
|
|
.unwrap();
|
2020-10-19 23:10:42 -04:00
|
|
|
assert_eq!(
|
|
|
|
r,
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Bundle {
|
|
|
|
source_file: "script.ts".to_string(),
|
|
|
|
out_file: None,
|
|
|
|
},
|
|
|
|
no_check: true,
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-11-22 15:45:44 -05:00
|
|
|
#[test]
|
|
|
|
fn bundle_watch() {
|
2021-04-27 06:44:36 -04:00
|
|
|
let r = flags_from_vec(svec!["deno", "bundle", "--watch", "source.ts"]);
|
2020-11-22 15:45:44 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Bundle {
|
|
|
|
source_file: "source.ts".to_string(),
|
|
|
|
out_file: None,
|
|
|
|
},
|
|
|
|
watch: true,
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-06-09 09:08:20 -04:00
|
|
|
#[test]
|
2020-10-20 08:30:59 -04:00
|
|
|
fn run_import_map() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2019-06-09 09:08:20 -04:00
|
|
|
"deno",
|
|
|
|
"run",
|
2020-10-20 08:30:59 -04:00
|
|
|
"--import-map=import_map.json",
|
2019-06-09 09:08:20 -04:00
|
|
|
"script.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2020-10-20 08:30:59 -04:00
|
|
|
import_map_path: Some("import_map.json".to_owned()),
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-06-09 09:08:20 -04:00
|
|
|
}
|
|
|
|
);
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-06-09 09:08:20 -04:00
|
|
|
|
2020-09-21 09:07:19 -04:00
|
|
|
#[test]
|
2020-10-20 08:30:59 -04:00
|
|
|
fn info_import_map() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-09-21 09:07:19 -04:00
|
|
|
"deno",
|
|
|
|
"info",
|
2020-10-20 08:30:59 -04:00
|
|
|
"--import-map=import_map.json",
|
2020-09-21 09:07:19 -04:00
|
|
|
"script.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Info {
|
|
|
|
file: Some("script.ts".to_string()),
|
|
|
|
json: false,
|
|
|
|
},
|
2020-10-20 08:30:59 -04:00
|
|
|
import_map_path: Some("import_map.json".to_owned()),
|
2020-09-21 09:07:19 -04:00
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-11-26 11:06:32 -05:00
|
|
|
#[test]
|
2020-10-20 08:30:59 -04:00
|
|
|
fn cache_import_map() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2019-07-27 10:37:03 -04:00
|
|
|
"deno",
|
2020-04-07 11:24:47 -04:00
|
|
|
"cache",
|
2020-10-20 08:30:59 -04:00
|
|
|
"--import-map=import_map.json",
|
2019-07-27 10:37:03 -04:00
|
|
|
"script.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-04-07 11:24:47 -04:00
|
|
|
subcommand: DenoSubcommand::Cache {
|
2020-02-04 14:24:33 -05:00
|
|
|
files: svec!["script.ts"],
|
|
|
|
},
|
2020-10-20 08:30:59 -04:00
|
|
|
import_map_path: Some("import_map.json".to_owned()),
|
2020-10-11 19:05:46 -04:00
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-10-20 08:30:59 -04:00
|
|
|
fn doc_import_map() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-10-11 19:05:46 -04:00
|
|
|
"deno",
|
|
|
|
"doc",
|
2020-10-20 08:30:59 -04:00
|
|
|
"--import-map=import_map.json",
|
2020-10-11 19:05:46 -04:00
|
|
|
"script.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Doc {
|
|
|
|
source_file: Some("script.ts".to_owned()),
|
|
|
|
private: false,
|
|
|
|
json: false,
|
|
|
|
filter: None,
|
|
|
|
},
|
2020-10-20 08:30:59 -04:00
|
|
|
import_map_path: Some("import_map.json".to_owned()),
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-07-27 10:37:03 -04:00
|
|
|
}
|
|
|
|
);
|
2019-06-09 09:08:20 -04:00
|
|
|
}
|
2019-06-11 10:34:39 -04:00
|
|
|
|
2020-01-31 16:07:37 -05:00
|
|
|
#[test]
|
2020-04-07 11:24:47 -04:00
|
|
|
fn cache_multiple() {
|
2020-01-31 16:07:37 -05:00
|
|
|
let r =
|
2021-01-07 13:06:08 -05:00
|
|
|
flags_from_vec(svec!["deno", "cache", "script.ts", "script_two.ts"]);
|
2020-01-31 16:07:37 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-04-07 11:24:47 -04:00
|
|
|
subcommand: DenoSubcommand::Cache {
|
2020-02-04 14:24:33 -05:00
|
|
|
files: svec!["script.ts", "script_two.ts"],
|
|
|
|
},
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2020-01-31 16:07:37 -05:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-11 10:34:39 -04:00
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn run_seed() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "--seed", "250", "script.ts"]);
|
2019-06-11 10:34:39 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2020-11-27 14:47:35 -05:00
|
|
|
seed: Some(250_u64),
|
2020-12-06 12:19:21 -05:00
|
|
|
v8_flags: svec!["--random-seed=250"],
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-06-11 10:34:39 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn run_seed_with_v8_flags() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2019-06-11 10:34:39 -04:00
|
|
|
"deno",
|
2019-11-26 11:06:32 -05:00
|
|
|
"run",
|
2019-06-11 10:34:39 -04:00
|
|
|
"--seed",
|
|
|
|
"250",
|
|
|
|
"--v8-flags=--expose-gc",
|
|
|
|
"script.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2020-11-27 14:47:35 -05:00
|
|
|
seed: Some(250_u64),
|
2020-12-06 12:19:21 -05:00
|
|
|
v8_flags: svec!["--expose-gc", "--random-seed=250"],
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-06-11 10:34:39 -04:00
|
|
|
}
|
|
|
|
);
|
2019-06-15 10:08:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn install() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2019-06-15 10:08:11 -04:00
|
|
|
"deno",
|
|
|
|
"install",
|
|
|
|
"https://deno.land/std/examples/colors.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-01-30 18:42:39 -05:00
|
|
|
subcommand: DenoSubcommand::Install {
|
2020-05-01 15:33:11 -04:00
|
|
|
name: None,
|
2020-01-30 18:42:39 -05:00
|
|
|
module_url: "https://deno.land/std/examples/colors.ts".to_string(),
|
|
|
|
args: vec![],
|
2020-05-01 15:33:11 -04:00
|
|
|
root: None,
|
2020-02-08 03:49:55 -05:00
|
|
|
force: false,
|
2020-01-30 18:42:39 -05:00
|
|
|
},
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-06-15 10:08:11 -04:00
|
|
|
}
|
|
|
|
);
|
2019-11-26 11:06:32 -05:00
|
|
|
}
|
2019-06-15 10:08:11 -04:00
|
|
|
|
2019-11-26 11:06:32 -05:00
|
|
|
#[test]
|
2020-10-19 15:19:20 -04:00
|
|
|
fn install_with_flags() {
|
|
|
|
#[rustfmt::skip]
|
2021-03-01 06:41:22 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "install", "--import-map", "import_map.json", "--no-remote", "--config", "tsconfig.json", "--no-check", "--reload", "--lock", "lock.json", "--lock-write", "--cert", "example.crt", "--cached-only", "--allow-read", "--allow-net", "--v8-flags=--help", "--seed", "1", "--inspect=127.0.0.1:9229", "--name", "file_server", "--root", "/foo", "--force", "https://deno.land/std/http/file_server.ts", "foo", "bar"]);
|
2019-06-20 14:25:13 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-01-30 18:42:39 -05:00
|
|
|
subcommand: DenoSubcommand::Install {
|
2020-05-01 15:33:11 -04:00
|
|
|
name: Some("file_server".to_string()),
|
2020-01-30 18:42:39 -05:00
|
|
|
module_url: "https://deno.land/std/http/file_server.ts".to_string(),
|
2020-10-19 15:19:20 -04:00
|
|
|
args: svec!["foo", "bar"],
|
|
|
|
root: Some(PathBuf::from("/foo")),
|
2020-02-08 03:49:55 -05:00
|
|
|
force: true,
|
2020-01-30 18:42:39 -05:00
|
|
|
},
|
2020-10-19 15:19:20 -04:00
|
|
|
import_map_path: Some("import_map.json".to_string()),
|
|
|
|
no_remote: true,
|
|
|
|
config_path: Some("tsconfig.json".to_string()),
|
|
|
|
no_check: true,
|
|
|
|
reload: true,
|
|
|
|
lock: Some(PathBuf::from("lock.json")),
|
|
|
|
lock_write: true,
|
|
|
|
ca_file: Some("example.crt".to_string()),
|
|
|
|
cached_only: true,
|
2020-12-06 12:19:21 -05:00
|
|
|
v8_flags: svec!["--help", "--random-seed=1"],
|
2020-10-19 15:19:20 -04:00
|
|
|
seed: Some(1),
|
|
|
|
inspect: Some("127.0.0.1:9229".parse().unwrap()),
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(vec![]),
|
|
|
|
allow_read: Some(vec![]),
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-06-20 14:25:13 -04:00
|
|
|
}
|
|
|
|
);
|
2019-06-11 10:34:39 -04:00
|
|
|
}
|
2019-06-22 12:02:51 -04:00
|
|
|
|
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn log_level() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r =
|
|
|
|
flags_from_vec(svec!["deno", "run", "--log-level=debug", "script.ts"]);
|
2019-06-22 12:02:51 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2019-06-22 12:02:51 -04:00
|
|
|
log_level: Some(Level::Debug),
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-06-22 12:02:51 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2019-06-26 06:02:13 -04:00
|
|
|
|
2020-03-10 08:26:17 -04:00
|
|
|
#[test]
|
|
|
|
fn quiet() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "-q", "script.ts"]);
|
2020-03-10 08:26:17 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
|
|
|
log_level: Some(Level::Error),
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-26 06:02:13 -04:00
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn completions() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "completions", "zsh"]).unwrap();
|
2020-02-04 14:24:33 -05:00
|
|
|
|
|
|
|
match r.subcommand {
|
|
|
|
DenoSubcommand::Completions { buf } => assert!(!buf.is_empty()),
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
2019-06-26 06:02:13 -04:00
|
|
|
}
|
2019-06-29 18:32:54 -04:00
|
|
|
|
|
|
|
#[test]
|
2020-08-28 19:20:57 -04:00
|
|
|
fn run_with_args() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-08-28 19:20:57 -04:00
|
|
|
"deno",
|
|
|
|
"run",
|
|
|
|
"script.ts",
|
|
|
|
"--allow-read",
|
|
|
|
"--allow-net"
|
|
|
|
]);
|
2019-06-29 18:32:54 -04:00
|
|
|
assert_eq!(
|
2020-08-28 19:20:57 -04:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-08-28 19:20:57 -04:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
|
|
|
argv: svec!["--allow-read", "--allow-net"],
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-06-29 18:32:54 -04:00
|
|
|
}
|
|
|
|
);
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2019-06-29 18:32:54 -04:00
|
|
|
"deno",
|
|
|
|
"run",
|
2021-01-07 13:06:08 -05:00
|
|
|
"--location",
|
|
|
|
"https:foo",
|
2019-11-26 11:06:32 -05:00
|
|
|
"--allow-read",
|
2019-06-29 18:32:54 -04:00
|
|
|
"script.ts",
|
|
|
|
"--allow-net",
|
|
|
|
"-r",
|
|
|
|
"--help",
|
|
|
|
"--foo",
|
|
|
|
"bar"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
2020-08-28 19:20:57 -04:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-08-28 19:20:57 -04:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2021-01-07 13:06:08 -05:00
|
|
|
location: Some(Url::parse("https://foo/").unwrap()),
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_read: Some(vec![]),
|
2020-08-28 19:20:57 -04:00
|
|
|
argv: svec!["--allow-net", "-r", "--help", "--foo", "bar"],
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-06-29 18:32:54 -04:00
|
|
|
}
|
|
|
|
);
|
2020-08-28 19:20:57 -04:00
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "script.ts", "foo", "bar"]);
|
2020-08-28 19:20:57 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
|
|
|
argv: svec!["foo", "bar"],
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "script.ts", "-"]);
|
2020-08-28 19:20:57 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
|
|
|
argv: svec!["-"],
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
let r =
|
2021-01-07 13:06:08 -05:00
|
|
|
flags_from_vec(svec!["deno", "run", "script.ts", "-", "foo", "bar"]);
|
2020-08-28 19:20:57 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
|
|
|
argv: svec!["-", "foo", "bar"],
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2019-07-20 09:19:06 -04:00
|
|
|
|
2020-07-08 05:26:39 -04:00
|
|
|
#[test]
|
|
|
|
fn no_check() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "--no-check", "script.ts"]);
|
2020-07-08 05:26:39 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
|
|
|
no_check: true,
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-07-20 09:19:06 -04:00
|
|
|
#[test]
|
2019-12-03 17:48:53 -05:00
|
|
|
fn no_remote() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "--no-remote", "script.ts"]);
|
2019-12-03 17:48:53 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2019-12-03 17:48:53 -05:00
|
|
|
no_remote: true,
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-12-03 17:48:53 -05:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn cached_only() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "--cached-only", "script.ts"]);
|
2019-07-20 09:19:06 -04:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2019-12-03 17:48:53 -05:00
|
|
|
cached_only: true,
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-07-20 09:19:06 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2019-07-31 11:02:20 -04:00
|
|
|
|
2019-10-12 17:13:52 -04:00
|
|
|
#[test]
|
2020-06-13 13:09:39 -04:00
|
|
|
fn allow_net_allowlist_with_ports() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2019-10-12 17:13:52 -04:00
|
|
|
"deno",
|
2020-05-04 07:03:30 -04:00
|
|
|
"run",
|
2019-10-12 17:13:52 -04:00
|
|
|
"--allow-net=deno.land,:8000,:4545",
|
|
|
|
"script.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(svec![
|
2019-10-12 17:13:52 -04:00
|
|
|
"deno.land",
|
|
|
|
"0.0.0.0:8000",
|
|
|
|
"127.0.0.1:8000",
|
|
|
|
"localhost:8000",
|
|
|
|
"0.0.0.0:4545",
|
|
|
|
"127.0.0.1:4545",
|
|
|
|
"localhost:4545"
|
2020-12-29 13:34:35 -05:00
|
|
|
]),
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-10-12 17:13:52 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2019-11-03 10:39:27 -05:00
|
|
|
|
2020-06-26 08:09:02 -04:00
|
|
|
#[test]
|
|
|
|
fn allow_net_allowlist_with_ipv6_address() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-06-26 08:09:02 -04:00
|
|
|
"deno",
|
|
|
|
"run",
|
|
|
|
"--allow-net=deno.land,deno.land:80,::,127.0.0.1,[::1],1.2.3.4:5678,:5678,[::1]:8080",
|
|
|
|
"script.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(svec![
|
2020-06-26 08:09:02 -04:00
|
|
|
"deno.land",
|
|
|
|
"deno.land:80",
|
|
|
|
"::",
|
|
|
|
"127.0.0.1",
|
|
|
|
"[::1]",
|
|
|
|
"1.2.3.4:5678",
|
|
|
|
"0.0.0.0:5678",
|
|
|
|
"127.0.0.1:5678",
|
|
|
|
"localhost:5678",
|
|
|
|
"[::1]:8080"
|
2020-12-29 13:34:35 -05:00
|
|
|
]),
|
2020-06-26 08:09:02 -04:00
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-11-03 10:39:27 -05:00
|
|
|
#[test]
|
2019-11-26 11:06:32 -05:00
|
|
|
fn lock_write() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2019-11-03 10:39:27 -05:00
|
|
|
"deno",
|
2020-05-04 07:03:30 -04:00
|
|
|
"run",
|
2019-11-03 10:39:27 -05:00
|
|
|
"--lock-write",
|
|
|
|
"--lock=lock.json",
|
|
|
|
"script.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-04 14:24:33 -05:00
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
2019-11-03 10:39:27 -05:00
|
|
|
lock_write: true,
|
2020-10-19 15:19:20 -04:00
|
|
|
lock: Some(PathBuf::from("lock.json")),
|
2020-02-26 05:52:15 -05:00
|
|
|
..Flags::default()
|
2019-11-03 10:39:27 -05:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2019-11-13 11:21:17 -05:00
|
|
|
|
2019-11-26 11:06:32 -05:00
|
|
|
#[test]
|
2020-11-22 08:06:51 -05:00
|
|
|
fn test_with_flags() {
|
|
|
|
#[rustfmt::skip]
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "test", "--unstable", "--no-run", "--filter", "- foo", "--coverage=cov", "--location", "https:foo", "--allow-net", "--allow-none", "dir1/", "dir2/", "--", "arg1", "arg2"]);
|
2019-11-13 11:21:17 -05:00
|
|
|
assert_eq!(
|
2019-11-26 11:06:32 -05:00
|
|
|
r.unwrap(),
|
2020-02-26 05:52:15 -05:00
|
|
|
Flags {
|
2020-02-11 06:01:56 -05:00
|
|
|
subcommand: DenoSubcommand::Test {
|
2020-11-22 08:06:51 -05:00
|
|
|
no_run: true,
|
2020-02-11 06:01:56 -05:00
|
|
|
fail_fast: false,
|
2020-11-22 08:06:51 -05:00
|
|
|
filter: Some("- foo".to_string()),
|
2020-02-11 06:01:56 -05:00
|
|
|
allow_none: true,
|
2020-04-27 07:05:26 -04:00
|
|
|
quiet: false,
|
2020-02-11 06:01:56 -05:00
|
|
|
include: Some(svec!["dir1/", "dir2/"]),
|
2021-04-28 14:17:04 -04:00
|
|
|
concurrent_jobs: 1,
|
2020-02-04 14:24:33 -05:00
|
|
|
},
|
2020-09-13 09:01:30 -04:00
|
|
|
unstable: true,
|
2020-12-21 08:04:25 -05:00
|
|
|
coverage_dir: Some("cov".to_string()),
|
2021-01-07 13:06:08 -05:00
|
|
|
location: Some(Url::parse("https://foo/").unwrap()),
|
2020-12-29 13:34:35 -05:00
|
|
|
allow_net: Some(vec![]),
|
2020-10-25 20:25:43 -04:00
|
|
|
argv: svec!["arg1", "arg2"],
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-02 09:26:40 -04:00
|
|
|
#[test]
|
|
|
|
fn run_with_cafile() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-04-02 09:26:40 -04:00
|
|
|
"deno",
|
|
|
|
"run",
|
|
|
|
"--cert",
|
|
|
|
"example.crt",
|
|
|
|
"script.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "script.ts".to_string(),
|
|
|
|
},
|
|
|
|
ca_file: Some("example.crt".to_owned()),
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2020-02-17 11:59:51 -05:00
|
|
|
|
2020-04-02 09:26:40 -04:00
|
|
|
#[test]
|
|
|
|
fn bundle_with_cafile() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-04-02 09:26:40 -04:00
|
|
|
"deno",
|
|
|
|
"bundle",
|
|
|
|
"--cert",
|
|
|
|
"example.crt",
|
|
|
|
"source.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Bundle {
|
|
|
|
source_file: "source.ts".to_string(),
|
|
|
|
out_file: None,
|
|
|
|
},
|
|
|
|
ca_file: Some("example.crt".to_owned()),
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2020-02-17 11:59:51 -05:00
|
|
|
|
2020-07-05 23:58:23 -04:00
|
|
|
#[test]
|
|
|
|
fn upgrade_with_ca_file() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "upgrade", "--cert", "example.crt"]);
|
2020-07-05 23:58:23 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Upgrade {
|
|
|
|
force: false,
|
|
|
|
dry_run: false,
|
2020-11-29 14:00:35 -05:00
|
|
|
canary: false,
|
2020-07-05 23:58:23 -04:00
|
|
|
version: None,
|
2020-07-06 18:21:26 -04:00
|
|
|
output: None,
|
2020-07-05 23:58:23 -04:00
|
|
|
ca_file: Some("example.crt".to_owned()),
|
|
|
|
},
|
|
|
|
ca_file: Some("example.crt".to_owned()),
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-02 09:26:40 -04:00
|
|
|
#[test]
|
2020-04-07 11:24:47 -04:00
|
|
|
fn cache_with_cafile() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-04-02 09:26:40 -04:00
|
|
|
"deno",
|
2020-04-07 11:24:47 -04:00
|
|
|
"cache",
|
2020-04-02 09:26:40 -04:00
|
|
|
"--cert",
|
|
|
|
"example.crt",
|
|
|
|
"script.ts",
|
|
|
|
"script_two.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
2020-04-07 11:24:47 -04:00
|
|
|
subcommand: DenoSubcommand::Cache {
|
2020-04-02 09:26:40 -04:00
|
|
|
files: svec!["script.ts", "script_two.ts"],
|
|
|
|
},
|
|
|
|
ca_file: Some("example.crt".to_owned()),
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2020-02-17 11:59:51 -05:00
|
|
|
|
2020-04-02 09:26:40 -04:00
|
|
|
#[test]
|
|
|
|
fn info_with_cafile() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-04-02 09:26:40 -04:00
|
|
|
"deno",
|
|
|
|
"info",
|
|
|
|
"--cert",
|
|
|
|
"example.crt",
|
|
|
|
"https://example.com"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Info {
|
2020-07-08 10:50:12 -04:00
|
|
|
json: false,
|
2020-04-02 09:26:40 -04:00
|
|
|
file: Some("https://example.com".to_string()),
|
|
|
|
},
|
|
|
|
ca_file: Some("example.crt".to_owned()),
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2020-02-17 11:59:51 -05:00
|
|
|
|
2020-04-02 09:26:40 -04:00
|
|
|
#[test]
|
|
|
|
fn doc() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "doc", "--json", "path/to/module.ts"]);
|
2020-04-02 09:26:40 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Doc {
|
2020-07-12 08:16:33 -04:00
|
|
|
private: false,
|
2020-04-02 09:26:40 -04:00
|
|
|
json: true,
|
2020-04-09 08:34:24 -04:00
|
|
|
source_file: Some("path/to/module.ts".to_string()),
|
2020-04-02 09:26:40 -04:00
|
|
|
filter: None,
|
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
2020-03-28 14:16:57 -04:00
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-04-02 09:26:40 -04:00
|
|
|
"deno",
|
|
|
|
"doc",
|
|
|
|
"path/to/module.ts",
|
|
|
|
"SomeClass.someField"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Doc {
|
2020-07-12 08:16:33 -04:00
|
|
|
private: false,
|
2020-04-02 09:26:40 -04:00
|
|
|
json: false,
|
2020-04-09 08:34:24 -04:00
|
|
|
source_file: Some("path/to/module.ts".to_string()),
|
2020-04-02 09:26:40 -04:00
|
|
|
filter: Some("SomeClass.someField".to_string()),
|
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
2020-04-09 08:34:24 -04:00
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "doc"]);
|
2020-04-09 08:34:24 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Doc {
|
2020-07-12 08:16:33 -04:00
|
|
|
private: false,
|
2020-04-09 08:34:24 -04:00
|
|
|
json: false,
|
|
|
|
source_file: None,
|
|
|
|
filter: None,
|
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "doc", "--builtin", "Deno.Listener"]);
|
2020-04-09 08:34:24 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Doc {
|
2020-07-12 08:16:33 -04:00
|
|
|
private: false,
|
2020-04-09 08:34:24 -04:00
|
|
|
json: false,
|
|
|
|
source_file: Some("--builtin".to_string()),
|
|
|
|
filter: Some("Deno.Listener".to_string()),
|
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
2020-07-12 08:16:33 -04:00
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
let r =
|
|
|
|
flags_from_vec(svec!["deno", "doc", "--private", "path/to/module.js"]);
|
2020-07-12 08:16:33 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Doc {
|
|
|
|
private: true,
|
|
|
|
json: false,
|
|
|
|
source_file: Some("path/to/module.js".to_string()),
|
|
|
|
filter: None,
|
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
2020-04-02 09:26:40 -04:00
|
|
|
}
|
2020-03-27 16:09:51 -04:00
|
|
|
|
2020-04-02 09:26:40 -04:00
|
|
|
#[test]
|
|
|
|
fn inspect_default_host() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "run", "--inspect", "foo.js"]);
|
2020-04-02 09:26:40 -04:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Run {
|
|
|
|
script: "foo.js".to_string(),
|
|
|
|
},
|
2020-04-03 13:40:11 -04:00
|
|
|
inspect: Some("127.0.0.1:9229".parse().unwrap()),
|
2020-04-02 09:26:40 -04:00
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2020-11-30 14:35:12 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn compile() {
|
2021-01-07 13:06:08 -05:00
|
|
|
let r = flags_from_vec(svec![
|
2020-11-30 14:35:12 -05:00
|
|
|
"deno",
|
|
|
|
"compile",
|
|
|
|
"https://deno.land/std/examples/colors.ts"
|
|
|
|
]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Compile {
|
|
|
|
source_file: "https://deno.land/std/examples/colors.ts".to_string(),
|
2021-01-04 18:15:52 -05:00
|
|
|
output: None,
|
|
|
|
args: vec![],
|
2021-01-18 21:40:22 -05:00
|
|
|
target: None,
|
2020-11-30 14:35:12 -05:00
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn compile_with_flags() {
|
|
|
|
#[rustfmt::skip]
|
2021-03-01 06:41:22 -05:00
|
|
|
let r = flags_from_vec(svec!["deno", "compile", "--import-map", "import_map.json", "--no-remote", "--config", "tsconfig.json", "--no-check", "--reload", "--lock", "lock.json", "--lock-write", "--cert", "example.crt", "--cached-only", "--location", "https:foo", "--allow-read", "--allow-net", "--v8-flags=--help", "--seed", "1", "--output", "colors", "https://deno.land/std/examples/colors.ts", "foo", "bar"]);
|
2020-11-30 14:35:12 -05:00
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Compile {
|
|
|
|
source_file: "https://deno.land/std/examples/colors.ts".to_string(),
|
2021-01-04 18:15:52 -05:00
|
|
|
output: Some(PathBuf::from("colors")),
|
|
|
|
args: svec!["foo", "bar"],
|
2021-01-18 21:40:22 -05:00
|
|
|
target: None,
|
2020-11-30 14:35:12 -05:00
|
|
|
},
|
|
|
|
import_map_path: Some("import_map.json".to_string()),
|
|
|
|
no_remote: true,
|
|
|
|
config_path: Some("tsconfig.json".to_string()),
|
|
|
|
no_check: true,
|
|
|
|
reload: true,
|
|
|
|
lock: Some(PathBuf::from("lock.json")),
|
|
|
|
lock_write: true,
|
|
|
|
ca_file: Some("example.crt".to_string()),
|
2021-01-04 18:15:52 -05:00
|
|
|
cached_only: true,
|
2021-01-07 13:06:08 -05:00
|
|
|
location: Some(Url::parse("https://foo/").unwrap()),
|
2021-01-04 18:15:52 -05:00
|
|
|
allow_read: Some(vec![]),
|
|
|
|
allow_net: Some(vec![]),
|
|
|
|
v8_flags: svec!["--help", "--random-seed=1"],
|
|
|
|
seed: Some(1),
|
2020-11-30 14:35:12 -05:00
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2021-01-23 20:18:19 -05:00
|
|
|
|
2021-02-24 09:27:51 -05:00
|
|
|
#[test]
|
|
|
|
fn coverage() {
|
|
|
|
let r = flags_from_vec(svec!["deno", "coverage", "foo.json"]);
|
|
|
|
assert_eq!(
|
|
|
|
r.unwrap(),
|
|
|
|
Flags {
|
|
|
|
subcommand: DenoSubcommand::Coverage {
|
|
|
|
files: vec![PathBuf::from("foo.json")],
|
|
|
|
ignore: vec![],
|
|
|
|
include: vec![r"^file:".to_string()],
|
|
|
|
exclude: vec![r"test\.(js|mjs|ts|jsx|tsx)$".to_string()],
|
|
|
|
lcov: false,
|
|
|
|
},
|
|
|
|
..Flags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-01-23 20:18:19 -05:00
|
|
|
#[test]
|
|
|
|
fn location_with_bad_scheme() {
|
|
|
|
#[rustfmt::skip]
|
|
|
|
let r = flags_from_vec(svec!["deno", "run", "--location", "foo:", "mod.ts"]);
|
|
|
|
assert!(r.is_err());
|
|
|
|
assert!(r
|
|
|
|
.unwrap_err()
|
|
|
|
.to_string()
|
|
|
|
.contains("Expected protocol \"http\" or \"https\""));
|
|
|
|
}
|
2020-03-27 16:09:51 -04:00
|
|
|
}
|