nushell/tests/command_open_tests.rs

127 lines
2.8 KiB
Rust
Raw Normal View History

mod helpers;
use helpers::{in_directory as cwd, Playground, Stub::*};
2019-08-29 02:32:42 +02:00
use helpers as h;
#[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!(
cwd(dirs.test()), h::pipeline(
r#"
open nu.zion.csv
| where author == "Andres N. Robalino"
| get source
| echo $it
"#
));
assert_eq!(actual, "Ecuador");
})
}
#[test]
fn open_can_parse_bson_1() {
2019-08-29 02:32:42 +02:00
let actual = nu!(
cwd("tests/fixtures/formats"),
"open sample.bson | get root | nth 0 | get b | echo $it"
);
2019-08-29 02:32:42 +02:00
assert_eq!(actual, "hello");
}
#[test]
fn open_can_parse_bson_2() {
2019-08-29 02:32:42 +02:00
let actual = nu!(
cwd("tests/fixtures/formats"), h::pipeline(
r#"
open sample.bson
| get root
| nth 6
| get b
| get '$binary_subtype'
| echo $it
"#
));
assert_eq!(actual, "function");
}
#[test]
fn open_can_parse_toml() {
2019-08-29 02:32:42 +02:00
let actual = nu!(
cwd("tests/fixtures/formats"),
"open cargo_sample.toml | get package.edition | echo $it"
);
2019-08-29 02:32:42 +02:00
assert_eq!(actual, "2018");
}
#[test]
fn open_can_parse_json() {
2019-08-29 02:32:42 +02:00
let actual = nu!(
cwd("tests/fixtures/formats"), h::pipeline(
r#"
open sgml_description.json
| get glossary.GlossDiv.GlossList.GlossEntry.GlossSee
| echo $it
"#
));
2019-08-29 02:32:42 +02:00
assert_eq!(actual, "markup")
}
#[test]
fn open_can_parse_xml() {
2019-08-29 02:32:42 +02:00
let actual = nu!(
cwd("tests/fixtures/formats"),
"open jonathan.xml | get rss.channel.item.link | echo $it"
);
assert_eq!(
2019-08-29 02:32:42 +02:00
actual,
"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!(
cwd("tests/fixtures/formats"),
"open sample.ini | get SectionOne.integer | echo $it"
);
2019-08-29 02:32:42 +02:00
assert_eq!(actual, "1234")
}
#[test]
fn open_can_parse_utf16_ini() {
2019-08-29 02:32:42 +02:00
let actual = nu!(
cwd("tests/fixtures/formats"),
"open utf16.ini | get .ShellClassInfo | get IconIndex | echo $it"
);
2019-08-29 02:32:42 +02:00
assert_eq!(actual, "-236")
}
#[test]
fn errors_if_file_not_found() {
2019-08-29 02:32:42 +02:00
let actual = nu_error!(
cwd("tests/fixtures/formats"),
"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
}