2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::{nu, pipeline};
|
2019-12-15 17:15:06 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_excel_file_to_table() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample_data.xlsx
|
|
|
|
| get SalesOrders
|
2022-02-09 11:58:54 +01:00
|
|
|
| get 4
|
2022-02-20 01:26:47 +01:00
|
|
|
| get column2
|
2019-12-15 17:15:06 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "Gill");
|
2019-12-15 17:15:06 +01:00
|
|
|
}
|
2021-06-10 14:44:24 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_excel_file_to_table_select_sheet() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample_data.xlsx --raw
|
2023-10-08 19:07:09 +02:00
|
|
|
| from xlsx --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-02-24 14:25:51 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_excel_file_to_date() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open sample_data.xlsx
|
|
|
|
| get SalesOrders.4.column0
|
|
|
|
| format date "%Y-%m-%d"
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "2018-02-26");
|
|
|
|
}
|