2020-01-07 07:35:00 +01:00
|
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_ods_file_to_table() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample_data.ods
|
|
|
|
| get SalesOrders
|
2022-02-09 11:58:54 +01:00
|
|
|
| get 4
|
2022-02-20 01:26:47 +01:00
|
|
|
| get column2
|
2020-01-07 07:35:00 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "Gill");
|
2020-01-07 07:35:00 +01:00
|
|
|
}
|
2021-06-10 14:44:24 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_ods_file_to_table_select_sheet() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample_data.ods --raw
|
2023-10-08 19:07:09 +02:00
|
|
|
| from ods --sheets ["SalesOrders"]
|
2022-02-04 03:01:45 +01:00
|
|
|
| columns
|
|
|
|
| get 0
|
2021-06-10 14:44:24 +02:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "SalesOrders");
|
|
|
|
}
|
2024-11-21 13:31:14 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_ods_file_to_table_select_sheet_with_annotations() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample_data_with_annotation.ods --raw
|
|
|
|
| from ods --sheets ["SalesOrders"]
|
|
|
|
| get SalesOrders
|
|
|
|
| get column4
|
|
|
|
| get 0
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
// The Units column in the sheet SalesOrders has an annotation and should be ignored.
|
|
|
|
assert_eq!(actual.out, "Units");
|
|
|
|
}
|