nushell/tests/commands_test.rs

69 lines
1.8 KiB
Rust
Raw Normal View History

mod helpers;
2019-07-20 03:18:27 +02:00
use helpers as h;
2019-08-29 08:31:56 +02:00
use helpers::{Playground, Stub::*};
2019-07-24 06:10:48 +02:00
#[test]
fn lines() {
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 cargo_sample.toml --raw
| lines
| skip-while $it != "[dependencies]"
| skip 1
| first 1
| split-column "="
| get Column1
| trim
2019-08-29 08:31:56 +02:00
| echo $it
"#
));
2019-08-29 02:32:42 +02:00
assert_eq!(actual, "rustyline");
}
2019-08-28 19:58:00 +02:00
#[test]
fn save_figures_out_intelligently_where_to_write_out_with_metadata() {
2019-08-29 02:32:42 +02:00
Playground::setup("save_test_1", |dirs, sandbox| {
sandbox.with_files(vec![FileWithContent(
"cargo_sample.toml",
r#"
2019-08-28 19:58:00 +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-29 02:32:42 +02:00
"#)
]);
2019-08-28 19:58:00 +02:00
let subject_file = dirs.test().join("cargo_sample.toml");
nu!(
2019-08-29 08:31:56 +02:00
cwd: dirs.root(),
2019-08-29 02:32:42 +02:00
"open save_test_1/cargo_sample.toml | inc package.version --minor | save"
2019-08-28 19:58:00 +02:00
);
let actual = h::file_contents(&subject_file);
assert!(actual.contains("0.2.0"));
})
}
#[test]
fn save_can_write_out_csv() {
2019-08-29 02:32:42 +02:00
Playground::setup("save_test_2", |dirs, _| {
2019-08-28 19:58:00 +02:00
let expected_file = dirs.test().join("cargo_sample.csv");
nu!(
2019-08-29 08:31:56 +02:00
cwd: dirs.root(),
2019-08-29 02:32:42 +02:00
"open {}/cargo_sample.toml | inc package.version --minor | get package | save save_test_2/cargo_sample.csv",
2019-08-28 19:58:00 +02:00
dirs.formats()
);
let actual = h::file_contents(expected_file);
assert!(actual.contains("[list list],A shell for the GitHub era,2018,ISC,nu,0.2.0"));
})
}