2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::fs::Stub::EmptyFile;
|
2023-07-05 12:30:53 +02:00
|
|
|
use nu_test_support::nu;
|
2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::playground::Playground;
|
2019-12-15 17:15:06 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gets_first_rows_by_amount() {
|
|
|
|
Playground::setup("first_test_1", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![
|
|
|
|
EmptyFile("los.txt"),
|
|
|
|
EmptyFile("tres.txt"),
|
|
|
|
EmptyFile("amigos.txt"),
|
|
|
|
EmptyFile("arepas.clu"),
|
|
|
|
]);
|
|
|
|
|
2023-07-05 12:30:53 +02:00
|
|
|
let actual = nu!(cwd: dirs.test(), "ls | first 3 | length");
|
2019-12-15 17:15:06 +01:00
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "3");
|
2019-12-15 17:15:06 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gets_all_rows_if_amount_higher_than_all_rows() {
|
|
|
|
Playground::setup("first_test_2", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![
|
|
|
|
EmptyFile("los.txt"),
|
|
|
|
EmptyFile("tres.txt"),
|
|
|
|
EmptyFile("amigos.txt"),
|
|
|
|
EmptyFile("arepas.clu"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
2023-07-05 12:30:53 +02:00
|
|
|
cwd: dirs.test(), "ls | first 99 | length");
|
2019-12-15 17:15:06 +01:00
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "4");
|
2019-12-15 17:15:06 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gets_first_row_when_no_amount_given() {
|
|
|
|
Playground::setup("first_test_3", |dirs, sandbox| {
|
|
|
|
sandbox.with_files(vec![EmptyFile("caballeros.txt"), EmptyFile("arepas.clu")]);
|
|
|
|
|
2023-08-23 23:03:26 +02:00
|
|
|
// FIXME: We should probably change first to return a one row table instead of a record here
|
|
|
|
let actual = nu!(cwd: dirs.test(), "ls | first | values | length");
|
2019-12-15 17:15:06 +01:00
|
|
|
|
2023-08-23 23:03:26 +02:00
|
|
|
assert_eq!(actual.out, "4");
|
2019-12-15 17:15:06 +01:00
|
|
|
})
|
|
|
|
}
|
2022-09-29 00:08:17 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gets_first_row_as_list_when_amount_given() {
|
2023-07-05 12:30:53 +02:00
|
|
|
let actual = nu!("[1, 2, 3] | first 1 | describe");
|
2022-09-29 00:08:17 +02:00
|
|
|
|
2024-04-13 16:58:54 +02:00
|
|
|
assert_eq!(actual.out, "list<int>");
|
2022-09-29 00:08:17 +02:00
|
|
|
}
|
2022-11-14 00:15:27 +01:00
|
|
|
|
2023-07-03 17:19:50 +02:00
|
|
|
#[test]
|
|
|
|
fn gets_first_bytes() {
|
2023-07-05 12:30:53 +02:00
|
|
|
let actual = nu!("(0x[aa bb cc] | first 2) == 0x[aa bb]");
|
2023-07-03 17:19:50 +02:00
|
|
|
|
|
|
|
assert_eq!(actual.out, "true");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gets_first_byte() {
|
2023-07-05 12:30:53 +02:00
|
|
|
let actual = nu!("0x[aa bb cc] | first");
|
2023-07-03 17:19:50 +02:00
|
|
|
|
|
|
|
assert_eq!(actual.out, "170");
|
|
|
|
}
|
|
|
|
|
2022-11-14 00:15:27 +01:00
|
|
|
#[test]
|
|
|
|
// covers a situation where `first` used to behave strangely on list<binary> input
|
|
|
|
fn works_with_binary_list() {
|
2023-05-18 01:55:26 +02:00
|
|
|
let actual = nu!("([0x[01 11]] | first) == 0x[01 11]");
|
2022-11-14 00:15:27 +01:00
|
|
|
|
|
|
|
assert_eq!(actual.out, "true");
|
|
|
|
}
|
2022-11-23 05:04:28 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn errors_on_negative_rows() {
|
2023-07-05 12:30:53 +02:00
|
|
|
let actual = nu!("[1, 2, 3] | first -10");
|
2022-11-23 05:04:28 +01:00
|
|
|
|
|
|
|
assert!(actual.err.contains("use a positive value"));
|
|
|
|
}
|
2023-07-03 17:19:50 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn errors_on_empty_list_when_no_rows_given() {
|
2023-07-05 12:30:53 +02:00
|
|
|
let actual = nu!("[] | first");
|
2023-07-03 17:19:50 +02:00
|
|
|
|
|
|
|
assert!(actual.err.contains("index too large"));
|
|
|
|
}
|