2022-11-24 05:52:11 +01:00
|
|
|
use nu_test_support::nu;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn try_succeed() {
|
2022-12-22 16:35:41 +01:00
|
|
|
let output = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"try { 345 } catch { echo 'hello' }"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(output.out.contains("345"));
|
2022-11-24 05:52:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn try_catch() {
|
2022-12-22 16:35:41 +01:00
|
|
|
let output = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"try { foobarbaz } catch { echo 'hello' }"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(output.out.contains("hello"));
|
2022-11-24 05:52:11 +01:00
|
|
|
}
|
2022-11-24 19:02:20 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn catch_can_access_error() {
|
2022-12-22 16:35:41 +01:00
|
|
|
let output = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"try { foobarbaz } catch { |err| $err }"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(output.err.contains("External command failed"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn catch_can_access_error_as_dollar_in() {
|
|
|
|
let output = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"try { foobarbaz } catch { $in }"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(output.err.contains("External command failed"));
|
2022-11-24 19:02:20 +01:00
|
|
|
}
|
2022-12-01 17:58:32 +01:00
|
|
|
|
|
|
|
#[test]
|
2023-01-16 12:43:46 +01:00
|
|
|
fn external_failed_should_be_caught() {
|
2022-12-22 16:35:41 +01:00
|
|
|
let output = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"try { nu --testbin fail; echo 'success' } catch { echo 'fail' }"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(output.out.contains("fail"));
|
2022-12-01 17:58:32 +01:00
|
|
|
}
|
2023-01-05 21:41:51 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn loop_try_break_should_be_successful() {
|
|
|
|
let output = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"loop { try { echo 'successful'; break } catch { echo 'failed'; continue } }"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(output.out, "successful");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn loop_catch_break_should_show_failed() {
|
|
|
|
let output = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"loop {
|
|
|
|
try { invalid 1;
|
2023-01-16 12:43:46 +01:00
|
|
|
continue; } catch { echo 'failed'; break }
|
2023-01-05 21:41:51 +01:00
|
|
|
}
|
|
|
|
"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(output.out, "failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn loop_try_ignores_continue() {
|
|
|
|
let output = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"mut total = 0;
|
|
|
|
for i in 0..10 {
|
2023-01-16 12:43:46 +01:00
|
|
|
try { if ($i mod 2) == 0 {
|
|
|
|
continue;}
|
2023-01-05 21:41:51 +01:00
|
|
|
$total += 1
|
2023-01-16 12:43:46 +01:00
|
|
|
} catch { echo 'failed'; break }
|
2023-01-05 21:41:51 +01:00
|
|
|
}
|
|
|
|
echo $total
|
|
|
|
"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(output.out, "5");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn loop_try_break_on_command_should_show_successful() {
|
|
|
|
let output = nu!(
|
|
|
|
cwd: ".",
|
|
|
|
"loop { try { ls; break } catch { echo 'failed';continue }}"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(!output.out.contains("failed"));
|
|
|
|
}
|