2023-03-27 00:31:57 +02:00
|
|
|
use nu_test_support::nu;
|
2024-02-08 00:22:42 +01:00
|
|
|
use nu_test_support::playground::Playground;
|
|
|
|
use std::fs;
|
2023-03-27 00:31:57 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_for_range() {
|
2023-07-17 18:43:51 +02:00
|
|
|
let actual = nu!(r#"match 3 { 1..10 => { print "success" } }"#);
|
2023-03-27 00:31:57 +02:00
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "success");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_for_range_unmatched() {
|
2023-07-17 18:43:51 +02:00
|
|
|
let actual = nu!(r#"match 11 { 1..10 => { print "failure" }, _ => { print "success" }}"#);
|
2023-03-27 00:31:57 +02:00
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "success");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_for_record() {
|
2023-07-21 17:32:37 +02:00
|
|
|
let actual = nu!("match {a: 11} { {a: $b} => { print $b }}");
|
2023-03-27 00:31:57 +02:00
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "11");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_for_record_shorthand() {
|
2023-07-21 17:32:37 +02:00
|
|
|
let actual = nu!("match {a: 12} { {$a} => { print $a }}");
|
2023-03-27 00:31:57 +02:00
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "12");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_list() {
|
|
|
|
let actual = nu!(
|
|
|
|
r#"match [1, 2] { [$a] => { print $"single: ($a)" }, [$b, $c] => {print $"double: ($b) ($c)"}}"#
|
|
|
|
);
|
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "double: 1 2");
|
|
|
|
}
|
|
|
|
|
2023-03-31 00:08:53 +02:00
|
|
|
#[test]
|
|
|
|
fn match_list_rest_ignore() {
|
|
|
|
let actual = nu!(
|
|
|
|
r#"match [1, 2] { [$a, ..] => { print $"single: ($a)" }, [$b, $c] => {print $"double: ($b) ($c)"}}"#
|
|
|
|
);
|
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "single: 1");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_list_rest() {
|
|
|
|
let actual = nu!(
|
|
|
|
r#"match [1, 2, 3] { [$a, ..$remainder] => { print $"single: ($a) ($remainder | math sum)" }, [$b, $c] => {print $"double: ($b) ($c)"}}"#
|
|
|
|
);
|
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "single: 1 5");
|
|
|
|
}
|
|
|
|
|
2024-11-04 18:03:26 +01:00
|
|
|
#[test]
|
|
|
|
fn match_list_rest_empty() {
|
|
|
|
let actual = nu!(r#"match [1] { [1 ..$rest] => { $rest == [] } }"#);
|
|
|
|
assert_eq!(actual.out, "true");
|
|
|
|
}
|
|
|
|
|
2023-03-27 00:31:57 +02:00
|
|
|
#[test]
|
|
|
|
fn match_constant_1() {
|
|
|
|
let actual = nu!(
|
|
|
|
r#"match 2 { 1 => { print "failure"}, 2 => { print "success" }, 3 => { print "failure" }}"#
|
|
|
|
);
|
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "success");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_constant_2() {
|
|
|
|
let actual = nu!(
|
|
|
|
r#"match 2.3 { 1.4 => { print "failure"}, 2.3 => { print "success" }, 3 => { print "failure" }}"#
|
|
|
|
);
|
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "success");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_constant_3() {
|
|
|
|
let actual = nu!(
|
|
|
|
r#"match true { false => { print "failure"}, true => { print "success" }, 3 => { print "failure" }}"#
|
|
|
|
);
|
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "success");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_constant_4() {
|
|
|
|
let actual = nu!(
|
|
|
|
r#"match "def" { "abc" => { print "failure"}, "def" => { print "success" }, "ghi" => { print "failure" }}"#
|
|
|
|
);
|
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "success");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_constant_5() {
|
|
|
|
let actual = nu!(
|
|
|
|
r#"match 2019-08-23 { 2010-01-01 => { print "failure"}, 2019-08-23 => { print "success" }, 2020-02-02 => { print "failure" }}"#
|
|
|
|
);
|
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "success");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_constant_6() {
|
|
|
|
let actual = nu!(
|
|
|
|
r#"match 6sec { 2sec => { print "failure"}, 6sec => { print "success" }, 1min => { print "failure" }}"#
|
|
|
|
);
|
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "success");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_constant_7() {
|
|
|
|
let actual = nu!(
|
|
|
|
r#"match 1kib { 1kb => { print "failure"}, 1kib => { print "success" }, 2kb => { print "failure" }}"#
|
|
|
|
);
|
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "success");
|
|
|
|
}
|
|
|
|
|
2023-10-25 00:30:45 +02:00
|
|
|
#[test]
|
|
|
|
fn match_null() {
|
|
|
|
let actual = nu!(r#"match null { null => { print "success"}, _ => { print "failure" }}"#);
|
|
|
|
assert_eq!(actual.out, "success");
|
|
|
|
}
|
|
|
|
|
2023-03-27 00:31:57 +02:00
|
|
|
#[test]
|
|
|
|
fn match_or_pattern() {
|
|
|
|
let actual = nu!(
|
|
|
|
r#"match {b: 7} { {a: $a} | {b: $b} => { print $"success: ($b)" }, _ => { print "failure" }}"#
|
|
|
|
);
|
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "success: 7");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_or_pattern_overlap_1() {
|
|
|
|
let actual = nu!(
|
|
|
|
r#"match {a: 7} { {a: $b} | {b: $b} => { print $"success: ($b)" }, _ => { print "failure" }}"#
|
|
|
|
);
|
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "success: 7");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_or_pattern_overlap_2() {
|
|
|
|
let actual = nu!(
|
|
|
|
r#"match {b: 7} { {a: $b} | {b: $b} => { print $"success: ($b)" }, _ => { print "failure" }}"#
|
|
|
|
);
|
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "success: 7");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_doesnt_overwrite_variable() {
|
2023-07-21 17:32:37 +02:00
|
|
|
let actual = nu!("let b = 100; match 55 { $b => {} }; print $b");
|
2023-03-27 00:31:57 +02:00
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert_eq!(actual.out, "100");
|
|
|
|
}
|
2023-07-16 02:25:12 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_with_guard() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"match [1 2 3] { [$x, ..] if $x mod 2 == 0 => { $x }, $x => { 2 } }"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "2");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_with_guard_block_as_guard() {
|
|
|
|
// this should work?
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"match 4 { $x if { $x + 20 > 25 } => { 'good num' }, _ => { 'terrible num' } }"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(actual.err.contains("Match guard not bool"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_with_guard_parens_expr_as_guard() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"match 4 { $x if ($x + 20 > 25) => { 'good num' }, _ => { 'terrible num' } }"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "terrible num");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_with_guard_not_bool() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"match 4 { $x if $x + 1 => { 'err!()' }, _ => { 'unreachable!()' } }"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(actual.err.contains("Match guard not bool"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_with_guard_no_expr_after_if() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"match 4 { $x if => { 'err!()' }, _ => { 'unreachable!()' } }"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(actual.err.contains("Match guard without an expression"));
|
|
|
|
}
|
2024-02-08 00:22:42 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_with_comment_1() {
|
|
|
|
Playground::setup("match_with_comment", |dirs, _| {
|
|
|
|
let data = r#"
|
|
|
|
match 1 {
|
|
|
|
# comment
|
|
|
|
_ => { print 'success' }
|
|
|
|
}
|
|
|
|
"#;
|
|
|
|
fs::write(dirs.root().join("match_test"), data).expect("Unable to write file");
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.root(),
|
|
|
|
"source match_test"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "success");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn match_with_comment_2() {
|
|
|
|
Playground::setup("match_with_comment", |dirs, _| {
|
|
|
|
let data = r#"
|
|
|
|
match 1 {
|
|
|
|
_ => { print 'success' } # comment
|
|
|
|
}
|
|
|
|
"#;
|
|
|
|
fs::write(dirs.root().join("match_test"), data).expect("Unable to write file");
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.root(),
|
|
|
|
"source match_test"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "success");
|
|
|
|
});
|
|
|
|
}
|