2019-07-16 12:28:55 +02:00
|
|
|
mod helpers;
|
|
|
|
|
2019-08-01 23:00:08 +02:00
|
|
|
use h::{in_directory as cwd, Playground, Stub::*};
|
2019-07-20 03:18:27 +02:00
|
|
|
use helpers as h;
|
2019-07-24 06:10:48 +02:00
|
|
|
|
2019-07-16 12:28:55 +02:00
|
|
|
#[test]
|
|
|
|
fn lines() {
|
|
|
|
nu!(output,
|
|
|
|
cwd("tests/fixtures/formats"),
|
2019-07-22 04:23:02 +02:00
|
|
|
"open cargo_sample.toml --raw | lines | skip-while $it != \"[dependencies]\" | skip 1 | first 1 | split-column \"=\" | get Column1 | trim | echo $it"
|
|
|
|
);
|
2019-07-16 12:28:55 +02:00
|
|
|
|
|
|
|
assert_eq!(output, "rustyline");
|
|
|
|
}
|
|
|
|
|
2019-07-19 22:11:49 +02:00
|
|
|
#[test]
|
2019-07-21 09:08:05 +02:00
|
|
|
fn open_can_parse_csv() {
|
2019-07-20 03:18:27 +02:00
|
|
|
nu!(
|
|
|
|
output,
|
2019-07-19 22:11:49 +02:00
|
|
|
cwd("tests/fixtures/formats"),
|
2019-07-20 08:44:21 +02:00
|
|
|
"open caco3_plastics.csv | first 1 | get origin | echo $it"
|
2019-07-20 03:18:27 +02:00
|
|
|
);
|
2019-07-19 22:11:49 +02:00
|
|
|
|
|
|
|
assert_eq!(output, "SPAIN");
|
|
|
|
}
|
|
|
|
|
2019-08-25 09:42:32 +02:00
|
|
|
#[test]
|
|
|
|
fn open_can_parse_bson_1() {
|
|
|
|
nu!(
|
|
|
|
output,
|
|
|
|
cwd("tests/fixtures/formats"),
|
|
|
|
"open sample.bson | nth 3 | get b | get '$javascript' | echo $it"
|
|
|
|
);
|
|
|
|
|
2019-08-25 17:43:15 +02:00
|
|
|
assert_eq!(h::normalize_string(&output), "\"let x = y\"");
|
2019-08-25 09:42:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn open_can_parse_bson_2() {
|
|
|
|
nu!(
|
|
|
|
output,
|
|
|
|
cwd("tests/fixtures/formats"),
|
|
|
|
"open sample.bson | nth 0 | get b | echo $it"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(output, "hello");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn open_can_parse_bson_3() {
|
|
|
|
nu!(
|
|
|
|
output,
|
|
|
|
cwd("tests/fixtures/formats"),
|
|
|
|
"open sample.bson | nth 6 | get b | get '$binary_subtype' | echo $it "
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(output, "function");
|
|
|
|
}
|
|
|
|
|
2019-07-16 12:28:55 +02:00
|
|
|
#[test]
|
2019-07-21 09:08:05 +02:00
|
|
|
fn open_can_parse_toml() {
|
2019-07-20 03:18:27 +02:00
|
|
|
nu!(
|
|
|
|
output,
|
|
|
|
cwd("tests/fixtures/formats"),
|
|
|
|
"open cargo_sample.toml | get package.edition | echo $it"
|
|
|
|
);
|
2019-07-16 12:28:55 +02:00
|
|
|
|
|
|
|
assert_eq!(output, "2018");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-07-21 09:08:05 +02:00
|
|
|
fn open_can_parse_json() {
|
2019-07-16 12:28:55 +02:00
|
|
|
nu!(output,
|
|
|
|
cwd("tests/fixtures/formats"),
|
2019-07-22 04:23:02 +02:00
|
|
|
"open sgml_description.json | get glossary.GlossDiv.GlossList.GlossEntry.GlossSee | echo $it"
|
|
|
|
);
|
2019-07-16 12:28:55 +02:00
|
|
|
|
|
|
|
assert_eq!(output, "markup")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-07-21 09:08:05 +02:00
|
|
|
fn open_can_parse_xml() {
|
2019-07-20 03:18:27 +02:00
|
|
|
nu!(
|
|
|
|
output,
|
2019-07-16 12:28:55 +02:00
|
|
|
cwd("tests/fixtures/formats"),
|
2019-07-20 03:18:27 +02:00
|
|
|
"open jonathan.xml | get rss.channel.item.link | echo $it"
|
|
|
|
);
|
2019-07-16 12:28:55 +02:00
|
|
|
|
2019-07-20 03:18:27 +02:00
|
|
|
assert_eq!(
|
|
|
|
output,
|
|
|
|
"http://www.jonathanturner.org/2015/10/off-to-new-adventures.html"
|
|
|
|
)
|
2019-07-16 12:28:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-07-21 09:08:05 +02:00
|
|
|
fn open_can_parse_ini() {
|
2019-07-20 03:18:27 +02:00
|
|
|
nu!(
|
|
|
|
output,
|
2019-07-16 12:28:55 +02:00
|
|
|
cwd("tests/fixtures/formats"),
|
2019-07-20 03:18:27 +02:00
|
|
|
"open sample.ini | get SectionOne.integer | echo $it"
|
|
|
|
);
|
2019-07-16 12:28:55 +02:00
|
|
|
|
|
|
|
assert_eq!(output, "1234")
|
|
|
|
}
|
|
|
|
|
2019-08-12 06:11:42 +02:00
|
|
|
#[test]
|
|
|
|
fn open_can_parse_utf16_ini() {
|
|
|
|
nu!(
|
|
|
|
output,
|
|
|
|
cwd("tests/fixtures/formats"),
|
|
|
|
"open utf16.ini | get .ShellClassInfo | get IconIndex | echo $it"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(output, "-236")
|
|
|
|
}
|
|
|
|
|
2019-07-16 12:28:55 +02:00
|
|
|
#[test]
|
|
|
|
fn open_error_if_file_not_found() {
|
2019-07-20 03:18:27 +02:00
|
|
|
nu_error!(
|
|
|
|
output,
|
2019-07-16 12:28:55 +02:00
|
|
|
cwd("tests/fixtures/formats"),
|
2019-07-20 03:18:27 +02:00
|
|
|
"open i_dont_exist.txt | echo $it"
|
|
|
|
);
|
2019-07-16 12:28:55 +02:00
|
|
|
|
2019-07-21 09:08:05 +02:00
|
|
|
assert!(output.contains("File could not be opened"));
|
2019-07-16 12:28:55 +02:00
|
|
|
}
|
|
|
|
|
2019-07-17 21:51:18 +02:00
|
|
|
#[test]
|
2019-08-01 10:31:41 +02:00
|
|
|
fn save_figures_out_intelligently_where_to_write_out_with_metadata() {
|
2019-08-01 23:00:08 +02:00
|
|
|
let sandbox = Playground::setup_for("save_smart_test")
|
|
|
|
.with_files(vec![FileWithContent(
|
|
|
|
"cargo_sample.toml",
|
|
|
|
r#"
|
2019-08-01 23:55:49 +02:00
|
|
|
[package]
|
|
|
|
name = "nu"
|
|
|
|
version = "0.1.1"
|
|
|
|
authors = ["Yehuda Katz <wycats@gmail.com>"]
|
|
|
|
description = "A shell for the GitHub era"
|
|
|
|
license = "ISC"
|
|
|
|
edition = "2018"
|
|
|
|
"#,
|
2019-08-01 23:00:08 +02:00
|
|
|
)])
|
|
|
|
.test_dir_name();
|
|
|
|
|
|
|
|
let full_path = format!("{}/{}", Playground::root(), sandbox);
|
|
|
|
let subject_file = format!("{}/{}", full_path, "cargo_sample.toml");
|
2019-07-21 09:08:05 +02:00
|
|
|
|
2019-08-01 10:31:41 +02:00
|
|
|
nu!(
|
|
|
|
_output,
|
2019-08-01 23:00:08 +02:00
|
|
|
cwd(&Playground::root()),
|
|
|
|
"open save_smart_test/cargo_sample.toml | inc package.version --minor | save"
|
2019-08-01 10:31:41 +02:00
|
|
|
);
|
2019-07-24 06:10:48 +02:00
|
|
|
|
2019-08-01 10:31:41 +02:00
|
|
|
let actual = h::file_contents(&subject_file);
|
|
|
|
assert!(actual.contains("0.2.0"));
|
|
|
|
}
|
2019-07-24 06:10:48 +02:00
|
|
|
|
2019-07-17 21:51:18 +02:00
|
|
|
#[test]
|
2019-07-21 09:08:05 +02:00
|
|
|
fn save_can_write_out_csv() {
|
2019-08-14 22:07:08 +02:00
|
|
|
let sandbox = Playground::setup_for("save_writes_out_csv_test").test_dir_name();
|
2019-07-21 09:08:05 +02:00
|
|
|
|
2019-08-01 23:00:08 +02:00
|
|
|
let full_path = format!("{}/{}", Playground::root(), sandbox);
|
|
|
|
let expected_file = format!("{}/{}", full_path, "cargo_sample.csv");
|
2019-08-02 21:15:07 +02:00
|
|
|
|
2019-07-21 09:08:05 +02:00
|
|
|
nu!(
|
|
|
|
_output,
|
2019-08-01 23:00:08 +02:00
|
|
|
cwd(&Playground::root()),
|
2019-08-14 22:07:08 +02:00
|
|
|
"open ../formats/cargo_sample.toml | inc package.version --minor | get package | save save_writes_out_csv_test/cargo_sample.csv"
|
2019-07-21 09:08:05 +02:00
|
|
|
);
|
2019-07-24 06:10:48 +02:00
|
|
|
|
2019-07-21 09:08:05 +02:00
|
|
|
let actual = h::file_contents(&expected_file);
|
|
|
|
assert!(actual.contains("[list list],A shell for the GitHub era,2018,ISC,nu,0.2.0"));
|
|
|
|
}
|