2022-12-11 17:46:03 +01:00
|
|
|
use nu_test_support::nu;
|
|
|
|
|
|
|
|
#[test]
|
2023-03-26 01:23:54 +01:00
|
|
|
fn loop_doesnt_auto_print_in_each_iteration() {
|
2023-07-21 17:32:37 +02:00
|
|
|
let actual = nu!("
|
2022-12-11 17:46:03 +01:00
|
|
|
mut total = 0;
|
|
|
|
loop {
|
|
|
|
if $total == 3 {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
$total += 1;
|
|
|
|
}
|
2023-09-12 20:35:01 +02:00
|
|
|
1
|
2023-07-21 17:32:37 +02:00
|
|
|
}");
|
2023-03-26 01:23:54 +01:00
|
|
|
// Make sure we don't see any of these values in the output
|
|
|
|
// As we do not auto-print loops anymore
|
|
|
|
assert!(!actual.out.contains('1'));
|
2022-12-11 17:46:03 +01:00
|
|
|
}
|
2022-12-14 16:20:18 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn loop_break_on_external_failed() {
|
2023-07-21 17:32:37 +02:00
|
|
|
let actual = nu!("
|
2022-12-14 16:20:18 +01:00
|
|
|
mut total = 0;
|
|
|
|
loop {
|
|
|
|
if $total == 3 {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
$total += 1;
|
|
|
|
}
|
2023-03-16 23:53:46 +01:00
|
|
|
print 1;
|
2022-12-14 16:20:18 +01:00
|
|
|
nu --testbin fail;
|
2023-07-21 17:32:37 +02:00
|
|
|
}");
|
2023-01-15 03:03:32 +01:00
|
|
|
// Note: nu! macro auto replace "\n" and "\r\n" with ""
|
2022-12-14 16:20:18 +01:00
|
|
|
// so our output will be `1`.
|
|
|
|
assert_eq!(actual.out, "1");
|
|
|
|
}
|
2023-04-05 19:38:04 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn failed_loop_should_break_running() {
|
2023-07-21 17:32:37 +02:00
|
|
|
let actual = nu!("
|
2023-04-05 19:38:04 +02:00
|
|
|
mut total = 0;
|
|
|
|
loop {
|
|
|
|
if $total == 3 {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
$total += 1;
|
|
|
|
}
|
|
|
|
nu --testbin fail;
|
|
|
|
}
|
2023-07-21 17:32:37 +02:00
|
|
|
print 3");
|
2023-04-05 19:38:04 +02:00
|
|
|
assert!(!actual.out.contains('3'));
|
|
|
|
}
|