2019-08-25 14:59:46 +02:00
|
|
|
mod helpers;
|
|
|
|
|
2019-08-29 02:32:42 +02:00
|
|
|
use helpers as h;
|
2019-08-29 08:31:56 +02:00
|
|
|
use helpers::{Playground, Stub::*};
|
2019-08-25 14:59:46 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn recognizes_csv() {
|
2019-08-29 02:32:42 +02:00
|
|
|
Playground::setup("open_test_1", |dirs, sandbox| {
|
|
|
|
sandbox
|
|
|
|
.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
"nu.zion.csv",
|
|
|
|
r#"
|
|
|
|
author,lang,source
|
|
|
|
Jonathan Turner,Rust,New Zealand
|
|
|
|
Andres N. Robalino,Rust,Ecuador
|
|
|
|
Yehuda Katz,Rust,Estados Unidos
|
|
|
|
"#
|
|
|
|
)]);
|
|
|
|
|
|
|
|
let actual = nu!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: dirs.test(), h::pipeline(
|
2019-08-29 02:32:42 +02:00
|
|
|
r#"
|
|
|
|
open nu.zion.csv
|
|
|
|
| where author == "Andres N. Robalino"
|
|
|
|
| get source
|
|
|
|
| echo $it
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual, "Ecuador");
|
|
|
|
})
|
2019-08-25 14:59:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn open_can_parse_bson_1() {
|
2019-08-29 02:32:42 +02:00
|
|
|
let actual = nu!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: "tests/fixtures/formats",
|
2019-08-27 03:26:49 +02:00
|
|
|
"open sample.bson | get root | nth 0 | get b | echo $it"
|
2019-08-25 14:59:46 +02:00
|
|
|
);
|
|
|
|
|
2019-08-29 02:32:42 +02:00
|
|
|
assert_eq!(actual, "hello");
|
2019-08-25 14:59:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn open_can_parse_bson_2() {
|
2019-08-29 02:32:42 +02:00
|
|
|
let actual = nu!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: "tests/fixtures/formats", h::pipeline(
|
|
|
|
r#"
|
|
|
|
open sample.bson
|
|
|
|
| get root
|
|
|
|
| nth 6
|
|
|
|
| get b
|
|
|
|
| get '$binary_subtype'
|
|
|
|
| echo $it
|
|
|
|
"#
|
|
|
|
));
|
2019-08-29 02:32:42 +02:00
|
|
|
|
|
|
|
assert_eq!(actual, "function");
|
2019-08-25 14:59:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn open_can_parse_toml() {
|
2019-08-29 02:32:42 +02:00
|
|
|
let actual = nu!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: "tests/fixtures/formats",
|
2019-08-25 14:59:46 +02:00
|
|
|
"open cargo_sample.toml | get package.edition | echo $it"
|
|
|
|
);
|
|
|
|
|
2019-08-29 02:32:42 +02:00
|
|
|
assert_eq!(actual, "2018");
|
2019-08-25 14:59:46 +02:00
|
|
|
}
|
|
|
|
|
2019-08-29 11:02:16 +02:00
|
|
|
#[test]
|
|
|
|
fn open_can_parse_tsv() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", h::pipeline(
|
|
|
|
r#"
|
|
|
|
open caco3_plastics.tsv
|
|
|
|
| first 1
|
|
|
|
| get origin
|
|
|
|
| echo $it
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual, "SPAIN")
|
|
|
|
}
|
|
|
|
|
2019-08-25 14:59:46 +02:00
|
|
|
#[test]
|
|
|
|
fn open_can_parse_json() {
|
2019-08-29 02:32:42 +02:00
|
|
|
let actual = nu!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: "tests/fixtures/formats", h::pipeline(
|
2019-08-29 02:32:42 +02:00
|
|
|
r#"
|
|
|
|
open sgml_description.json
|
|
|
|
| get glossary.GlossDiv.GlossList.GlossEntry.GlossSee
|
|
|
|
| echo $it
|
|
|
|
"#
|
|
|
|
));
|
2019-08-25 14:59:46 +02:00
|
|
|
|
2019-08-29 02:32:42 +02:00
|
|
|
assert_eq!(actual, "markup")
|
2019-08-25 14:59:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn open_can_parse_xml() {
|
2019-08-29 02:32:42 +02:00
|
|
|
let actual = nu!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: "tests/fixtures/formats",
|
2019-08-25 14:59:46 +02:00
|
|
|
"open jonathan.xml | get rss.channel.item.link | echo $it"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
2019-08-29 02:32:42 +02:00
|
|
|
actual,
|
2019-08-25 14:59:46 +02:00
|
|
|
"http://www.jonathanturner.org/2015/10/off-to-new-adventures.html"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn open_can_parse_ini() {
|
2019-08-29 02:32:42 +02:00
|
|
|
let actual = nu!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: "tests/fixtures/formats",
|
2019-08-25 14:59:46 +02:00
|
|
|
"open sample.ini | get SectionOne.integer | echo $it"
|
|
|
|
);
|
|
|
|
|
2019-08-29 02:32:42 +02:00
|
|
|
assert_eq!(actual, "1234")
|
2019-08-25 14:59:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn open_can_parse_utf16_ini() {
|
2019-08-29 02:32:42 +02:00
|
|
|
let actual = nu!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: "tests/fixtures/formats",
|
2019-08-25 14:59:46 +02:00
|
|
|
"open utf16.ini | get .ShellClassInfo | get IconIndex | echo $it"
|
|
|
|
);
|
|
|
|
|
2019-08-29 02:32:42 +02:00
|
|
|
assert_eq!(actual, "-236")
|
2019-08-25 14:59:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn errors_if_file_not_found() {
|
2019-08-29 02:32:42 +02:00
|
|
|
let actual = nu_error!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: "tests/fixtures/formats",
|
2019-08-25 14:59:46 +02:00
|
|
|
"open i_dont_exist.txt | echo $it"
|
|
|
|
);
|
|
|
|
|
2019-08-29 02:32:42 +02:00
|
|
|
assert!(actual.contains("File could not be opened"));
|
2019-08-26 20:19:05 +02:00
|
|
|
}
|