2021-03-31 07:52:34 +02:00
|
|
|
use super::support::Trusted;
|
|
|
|
|
|
|
|
use nu_test_support::fs::Stub::FileWithContent;
|
|
|
|
use nu_test_support::playground::Playground;
|
2024-08-28 14:57:43 +02:00
|
|
|
use nu_test_support::{nu, nu_repl_code, nu_with_std};
|
2023-04-08 20:52:37 +02:00
|
|
|
use pretty_assertions::assert_eq;
|
2021-03-31 07:52:34 +02:00
|
|
|
use serial_test::serial;
|
|
|
|
|
2021-06-26 04:15:57 +02:00
|
|
|
#[test]
|
|
|
|
fn env_shorthand() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
2022-02-02 21:59:01 +01:00
|
|
|
FOO=bar echo $env.FOO
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2021-06-26 04:15:57 +02:00
|
|
|
assert_eq!(actual.out, "bar");
|
|
|
|
}
|
|
|
|
|
2021-07-30 23:10:28 +02:00
|
|
|
#[test]
|
|
|
|
fn env_shorthand_with_equals() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
2022-02-02 21:59:01 +01:00
|
|
|
RUST_LOG=my_module=info $env.RUST_LOG
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2021-07-30 23:10:28 +02:00
|
|
|
assert_eq!(actual.out, "my_module=info");
|
|
|
|
}
|
|
|
|
|
2022-05-07 13:21:29 +02:00
|
|
|
#[test]
|
|
|
|
fn env_shorthand_with_interpolation() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(r#"
|
2022-05-07 13:21:29 +02:00
|
|
|
let num = 123
|
|
|
|
FOO=$"($num) bar" echo $env.FOO
|
|
|
|
"#);
|
|
|
|
assert_eq!(actual.out, "123 bar");
|
|
|
|
}
|
|
|
|
|
2021-07-30 23:10:28 +02:00
|
|
|
#[test]
|
|
|
|
fn env_shorthand_with_comma_equals() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
2022-02-02 21:59:01 +01:00
|
|
|
RUST_LOG=info,my_module=info $env.RUST_LOG
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2021-07-30 23:10:28 +02:00
|
|
|
assert_eq!(actual.out, "info,my_module=info");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn env_shorthand_with_comma_colons_equals() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
2022-02-02 21:59:01 +01:00
|
|
|
RUST_LOG=info,my_module=info,lib_crate::lib_mod=trace $env.RUST_LOG
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2021-07-30 23:10:28 +02:00
|
|
|
assert_eq!(actual.out, "info,my_module=info,lib_crate::lib_mod=trace");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn env_shorthand_multi_second_with_comma_colons_equals() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
2022-02-02 21:59:01 +01:00
|
|
|
FOO=bar RUST_LOG=info,my_module=info,lib_crate::lib_mod=trace $env.FOO + $env.RUST_LOG
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2021-07-30 23:10:28 +02:00
|
|
|
assert_eq!(
|
|
|
|
actual.out,
|
|
|
|
"barinfo,my_module=info,lib_crate::lib_mod=trace"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn env_shorthand_multi_first_with_comma_colons_equals() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
2022-02-02 21:59:01 +01:00
|
|
|
RUST_LOG=info,my_module=info,lib_crate::lib_mod=trace FOO=bar $env.FOO + $env.RUST_LOG
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2021-07-30 23:10:28 +02:00
|
|
|
assert_eq!(
|
|
|
|
actual.out,
|
|
|
|
"barinfo,my_module=info,lib_crate::lib_mod=trace"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-06-26 04:15:57 +02:00
|
|
|
#[test]
|
|
|
|
fn env_shorthand_multi() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
2022-02-02 21:59:01 +01:00
|
|
|
FOO=bar BAR=baz $env.FOO + $env.BAR
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2021-06-26 04:15:57 +02:00
|
|
|
assert_eq!(actual.out, "barbaz");
|
|
|
|
}
|
|
|
|
|
2022-11-11 08:16:07 +01:00
|
|
|
#[test]
|
|
|
|
fn env_assignment() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(r#"
|
2022-11-11 08:16:07 +01:00
|
|
|
$env.FOOBAR = "barbaz"; $env.FOOBAR
|
|
|
|
"#);
|
|
|
|
assert_eq!(actual.out, "barbaz");
|
|
|
|
}
|
|
|
|
|
2023-07-13 10:55:41 +02:00
|
|
|
#[test]
|
|
|
|
fn env_assignment_with_if() {
|
|
|
|
let actual = nu!(r#"$env.FOOBAR = if 3 == 4 { "bar" } else { "baz" }; $env.FOOBAR"#);
|
|
|
|
assert_eq!(actual.out, "baz");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn env_assignment_with_match() {
|
|
|
|
let actual = nu!(r#"$env.FOOBAR = match 1 { 1 => { 'yes!' }, _ => { 'no!' } }; $env.FOOBAR"#);
|
|
|
|
assert_eq!(actual.out, "yes!");
|
|
|
|
}
|
|
|
|
|
2022-08-31 22:32:56 +02:00
|
|
|
#[test]
|
2023-06-30 21:57:51 +02:00
|
|
|
fn mutate_env_file_pwd_env_var_fails() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("$env.FILE_PWD = 'foo'");
|
2022-08-31 22:32:56 +02:00
|
|
|
|
|
|
|
assert!(actual.err.contains("automatic_env_var_set_manually"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn load_env_file_pwd_env_var_fails() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("load-env { FILE_PWD : 'foo' }");
|
2022-08-31 22:32:56 +02:00
|
|
|
|
|
|
|
assert!(actual.err.contains("automatic_env_var_set_manually"));
|
|
|
|
}
|
|
|
|
|
2023-02-05 23:40:46 +01:00
|
|
|
#[test]
|
|
|
|
fn load_env_pwd_env_var_fails() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("load-env { PWD : 'foo' }");
|
2023-02-05 23:40:46 +01:00
|
|
|
|
|
|
|
assert!(actual.err.contains("automatic_env_var_set_manually"));
|
|
|
|
}
|
|
|
|
|
2021-03-31 07:52:34 +02:00
|
|
|
#[test]
|
|
|
|
fn passes_with_env_env_var_to_external_process() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
2024-04-16 13:08:58 +02:00
|
|
|
with-env { FOO: foo } {nu --testbin echo_env FOO}
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2021-03-31 07:52:34 +02:00
|
|
|
assert_eq!(actual.out, "foo");
|
|
|
|
}
|
|
|
|
|
2024-05-19 17:35:07 +02:00
|
|
|
#[test]
|
|
|
|
fn hides_environment_from_child() {
|
|
|
|
let actual = nu!(r#"
|
|
|
|
$env.TEST = 1; ^$nu.current-exe -c "hide-env TEST; ^$nu.current-exe -c '$env.TEST'"
|
|
|
|
"#);
|
|
|
|
assert!(actual.out.is_empty());
|
2024-06-08 14:11:49 +02:00
|
|
|
assert!(actual.err.contains("column_not_found") || actual.err.contains("name_not_found"));
|
2024-05-19 17:35:07 +02:00
|
|
|
}
|
|
|
|
|
2022-12-10 18:23:44 +01:00
|
|
|
#[test]
|
|
|
|
fn has_file_pwd() {
|
|
|
|
Playground::setup("has_file_pwd", |dirs, sandbox| {
|
2024-05-04 02:53:15 +02:00
|
|
|
sandbox.with_files(&[FileWithContent("spam.nu", "$env.FILE_PWD")]);
|
2022-12-10 18:23:44 +01:00
|
|
|
|
|
|
|
let actual = nu!(cwd: dirs.test(), "nu spam.nu");
|
|
|
|
|
2023-01-09 06:53:52 +01:00
|
|
|
assert!(actual.out.ends_with("has_file_pwd"));
|
2022-12-10 18:23:44 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-04-13 22:33:29 +02:00
|
|
|
#[test]
|
|
|
|
fn has_file_loc() {
|
|
|
|
Playground::setup("has_file_pwd", |dirs, sandbox| {
|
2024-05-04 02:53:15 +02:00
|
|
|
sandbox.with_files(&[FileWithContent("spam.nu", "$env.CURRENT_FILE")]);
|
2023-04-13 22:33:29 +02:00
|
|
|
|
|
|
|
let actual = nu!(cwd: dirs.test(), "nu spam.nu");
|
|
|
|
|
|
|
|
assert!(actual.out.ends_with("spam.nu"));
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-03-29 13:10:43 +02:00
|
|
|
// FIXME: autoenv not currently implemented
|
|
|
|
#[ignore]
|
2021-03-31 07:52:34 +02:00
|
|
|
#[test]
|
|
|
|
#[serial]
|
|
|
|
fn passes_env_from_local_cfg_to_external_process() {
|
|
|
|
Playground::setup("autoenv_dir", |dirs, sandbox| {
|
2024-05-04 02:53:15 +02:00
|
|
|
sandbox.with_files(&[FileWithContent(
|
2021-03-31 07:52:34 +02:00
|
|
|
".nu-env",
|
|
|
|
r#"[env]
|
|
|
|
FOO = "foo"
|
|
|
|
"#,
|
|
|
|
)]);
|
|
|
|
|
|
|
|
let actual = Trusted::in_path(&dirs, || {
|
2023-07-12 19:07:20 +02:00
|
|
|
nu!(cwd: dirs.test(), "
|
2021-03-31 07:52:34 +02:00
|
|
|
nu --testbin echo_env FOO
|
2023-07-12 19:07:20 +02:00
|
|
|
")
|
2021-03-31 07:52:34 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "foo");
|
|
|
|
})
|
|
|
|
}
|
2023-02-12 18:48:51 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn hides_env_in_block() {
|
|
|
|
let inp = &[
|
2023-06-30 21:57:51 +02:00
|
|
|
"$env.foo = 'foo'",
|
2023-02-12 18:48:51 +01:00
|
|
|
"hide-env foo",
|
|
|
|
"let b = {|| $env.foo }",
|
|
|
|
"do $b",
|
|
|
|
];
|
|
|
|
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!(&inp.join("; "));
|
|
|
|
let actual_repl = nu!(nu_repl_code(inp));
|
2023-02-12 18:48:51 +01:00
|
|
|
|
|
|
|
assert!(actual.err.contains("column_not_found"));
|
|
|
|
assert!(actual_repl.err.contains("column_not_found"));
|
|
|
|
}
|
2023-06-25 19:59:56 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn env_var_not_var() {
|
2023-07-12 19:07:20 +02:00
|
|
|
let actual = nu!("
|
2023-08-14 12:49:55 +02:00
|
|
|
echo $PWD
|
2023-07-12 19:07:20 +02:00
|
|
|
");
|
2023-08-14 12:49:55 +02:00
|
|
|
assert!(actual.err.contains("use $env.PWD instead of $PWD"));
|
2023-06-25 19:59:56 +02:00
|
|
|
}
|
2024-05-02 00:22:34 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn env_var_case_insensitive() {
|
|
|
|
let actual = nu!("
|
|
|
|
$env.foo = 111
|
|
|
|
print $env.Foo
|
|
|
|
$env.FOO = 222
|
|
|
|
print $env.foo
|
|
|
|
");
|
|
|
|
assert!(actual.out.contains("111"));
|
|
|
|
assert!(actual.out.contains("222"));
|
|
|
|
}
|
2024-08-28 14:57:43 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn std_log_env_vars_are_not_overridden() {
|
|
|
|
let actual = nu_with_std!(
|
|
|
|
envs: vec![
|
|
|
|
("NU_LOG_FORMAT".to_string(), "%MSG%".to_string()),
|
|
|
|
("NU_LOG_DATE_FORMAT".to_string(), "%Y".to_string()),
|
|
|
|
],
|
|
|
|
r#"
|
|
|
|
use std
|
|
|
|
print -e $env.NU_LOG_FORMAT
|
|
|
|
print -e $env.NU_LOG_DATE_FORMAT
|
|
|
|
std log error "err"
|
|
|
|
"#
|
|
|
|
);
|
|
|
|
assert_eq!(actual.err, "%MSG%\n%Y\nerr\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn std_log_env_vars_have_defaults() {
|
|
|
|
let actual = nu_with_std!(
|
|
|
|
r#"
|
|
|
|
use std
|
|
|
|
print -e $env.NU_LOG_FORMAT
|
|
|
|
print -e $env.NU_LOG_DATE_FORMAT
|
|
|
|
"#
|
|
|
|
);
|
|
|
|
assert!(actual.err.contains("%MSG%"));
|
|
|
|
assert!(actual.err.contains("%Y-"));
|
|
|
|
}
|