2023-11-04 21:18:57 +01:00
|
|
|
use super::run_test_std;
|
|
|
|
use crate::tests::TestResult;
|
2022-12-12 19:46:25 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mutate_nu_config() -> TestResult {
|
2023-11-04 21:18:57 +01:00
|
|
|
run_test_std(
|
2022-12-12 19:46:25 +01:00
|
|
|
r#"$env.config.footer_mode = 30; $env.config.footer_mode"#,
|
|
|
|
"30",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mutate_nu_config_nested_ls() -> TestResult {
|
2023-11-04 21:18:57 +01:00
|
|
|
run_test_std(
|
|
|
|
r#"$env.config.ls.clickable_links = false; $env.config.ls.clickable_links"#,
|
2022-12-12 19:46:25 +01:00
|
|
|
"false",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mutate_nu_config_nested_table() -> TestResult {
|
2023-11-04 21:18:57 +01:00
|
|
|
run_test_std(
|
|
|
|
r#"
|
|
|
|
$env.config.table.trim.methodology = wrapping
|
|
|
|
$env.config.table.trim.wrapping_try_keep_words = false
|
|
|
|
$env.config.table.trim.wrapping_try_keep_words
|
|
|
|
"#,
|
2022-12-12 19:46:25 +01:00
|
|
|
"false",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mutate_nu_config_nested_menu() -> TestResult {
|
2023-11-04 21:18:57 +01:00
|
|
|
run_test_std(
|
|
|
|
r#"
|
|
|
|
$env.config.menus = [
|
|
|
|
{
|
|
|
|
name: menu
|
|
|
|
only_buffer_difference: true
|
|
|
|
marker: "M "
|
|
|
|
type: {}
|
|
|
|
style: {}
|
|
|
|
}
|
|
|
|
];
|
|
|
|
$env.config.menus.0.type.columns = 3;
|
|
|
|
$env.config.menus.0.type.columns
|
|
|
|
"#,
|
2022-12-12 19:46:25 +01:00
|
|
|
"3",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mutate_nu_config_nested_keybindings() -> TestResult {
|
2023-11-04 21:18:57 +01:00
|
|
|
run_test_std(
|
|
|
|
r#"
|
|
|
|
$env.config.keybindings = [
|
|
|
|
{
|
|
|
|
name: completion_previous
|
|
|
|
modifier: shift
|
|
|
|
keycode: backtab
|
|
|
|
mode: [ vi_normal, vi_insert ]
|
|
|
|
event: { send: menuprevious }
|
|
|
|
}
|
|
|
|
];
|
|
|
|
$env.config.keybindings.0.keycode = 'char_x';
|
|
|
|
$env.config.keybindings.0.keycode
|
|
|
|
"#,
|
2022-12-12 19:46:25 +01:00
|
|
|
"char_x",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mutate_nu_config_nested_color_nested() -> TestResult {
|
2023-11-04 21:18:57 +01:00
|
|
|
run_test_std(
|
2022-12-12 19:46:25 +01:00
|
|
|
r#"$env.config.color_config.shape_flag = 'cyan'; $env.config.color_config.shape_flag"#,
|
|
|
|
"cyan",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mutate_nu_config_nested_completion() -> TestResult {
|
2023-11-04 21:18:57 +01:00
|
|
|
run_test_std(
|
2022-12-12 19:46:25 +01:00
|
|
|
r#"$env.config.completions.external.enable = false; $env.config.completions.external.enable"#,
|
|
|
|
"false",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mutate_nu_config_nested_history() -> TestResult {
|
2023-11-04 21:18:57 +01:00
|
|
|
run_test_std(
|
2022-12-12 19:46:25 +01:00
|
|
|
r#"$env.config.history.max_size = 100; $env.config.history.max_size"#,
|
|
|
|
"100",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mutate_nu_config_nested_filesize() -> TestResult {
|
2023-11-04 21:18:57 +01:00
|
|
|
run_test_std(
|
2022-12-12 19:46:25 +01:00
|
|
|
r#"$env.config.filesize.format = 'kb'; $env.config.filesize.format"#,
|
|
|
|
"kb",
|
|
|
|
)
|
|
|
|
}
|