2019-07-16 12:28:55 +02:00
|
|
|
|
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
|
|
|
|
|
2019-11-24 10:20:08 +01:00
|
|
|
|
#[test]
|
|
|
|
|
fn default() {
|
|
|
|
|
Playground::setup("default_test_1", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
|
"los_tres_amigos.json",
|
|
|
|
|
r#"
|
|
|
|
|
{
|
|
|
|
|
"amigos": [
|
|
|
|
|
{"name": "Yehuda"},
|
|
|
|
|
{"name": "Jonathan", "rusty_luck": 0},
|
|
|
|
|
{"name": "Andres", "rusty_luck": 0},
|
|
|
|
|
{"name":"GorbyPuff"}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
"#,
|
|
|
|
|
)]);
|
|
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
open los_tres_amigos.json
|
|
|
|
|
| get amigos
|
|
|
|
|
| default rusty_luck 1
|
|
|
|
|
| get rusty_luck
|
|
|
|
|
| sum
|
|
|
|
|
| echo $it
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, "2");
|
|
|
|
|
});
|
|
|
|
|
}
|
2019-11-24 00:57:12 +01:00
|
|
|
|
#[test]
|
|
|
|
|
fn compact_rows_where_given_column_is_empty() {
|
|
|
|
|
Playground::setup("compact_test_1", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
|
"los_tres_amigos.json",
|
|
|
|
|
r#"
|
|
|
|
|
{
|
|
|
|
|
"amigos": [
|
|
|
|
|
{"name": "Yehuda", "rusty_luck": 1},
|
|
|
|
|
{"name": "Jonathan", "rusty_luck": 1},
|
|
|
|
|
{"name": "Andres", "rusty_luck": 1},
|
|
|
|
|
{"name":"GorbyPuff"}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
"#,
|
|
|
|
|
)]);
|
|
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
open los_tres_amigos.json
|
|
|
|
|
| get amigos
|
|
|
|
|
| compact rusty_luck
|
|
|
|
|
| count
|
|
|
|
|
| echo $it
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, "3");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
#[test]
|
|
|
|
|
fn compact_empty_rows_by_default() {
|
2019-11-24 01:07:12 +01:00
|
|
|
|
Playground::setup("compact_test_2", |dirs, _| {
|
2019-11-24 00:57:12 +01:00
|
|
|
|
let actual = nu!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
echo "[1,2,3,14,null]"
|
|
|
|
|
| from-json
|
|
|
|
|
| compact
|
|
|
|
|
| count
|
|
|
|
|
| echo $it
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, "4");
|
|
|
|
|
});
|
|
|
|
|
}
|
2019-10-21 01:42:07 +02:00
|
|
|
|
#[test]
|
|
|
|
|
fn group_by() {
|
|
|
|
|
Playground::setup("group_by_test_1", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
|
"los_tres_caballeros.csv",
|
|
|
|
|
r#"
|
2019-10-29 22:04:31 +01:00
|
|
|
|
first_name,last_name,rusty_at,type
|
|
|
|
|
Andrés,Robalino,10/11/2013,A
|
|
|
|
|
Jonathan,Turner,10/12/2013,B
|
|
|
|
|
Yehuda,Katz,10/11/2013,A
|
2019-10-21 01:42:07 +02:00
|
|
|
|
"#,
|
|
|
|
|
)]);
|
|
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
open los_tres_caballeros.csv
|
2019-10-29 22:04:31 +01:00
|
|
|
|
| group-by rusty_at
|
|
|
|
|
| get "10/11/2013"
|
2019-10-21 01:42:07 +02:00
|
|
|
|
| count
|
|
|
|
|
| echo $it
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, "2");
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-12 09:38:55 +01:00
|
|
|
|
#[test]
|
|
|
|
|
fn histogram() {
|
|
|
|
|
Playground::setup("histogram_test_1", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
|
"los_tres_caballeros.csv",
|
|
|
|
|
r#"
|
|
|
|
|
first_name,last_name,rusty_at
|
|
|
|
|
Andrés,Robalino,Ecuador
|
|
|
|
|
Jonathan,Turner,Estados Unidos
|
|
|
|
|
Yehuda,Katz,Estados Unidos
|
|
|
|
|
"#,
|
|
|
|
|
)]);
|
|
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
open los_tres_caballeros.csv
|
|
|
|
|
| histogram rusty_at countries
|
|
|
|
|
| where rusty_at == "Ecuador"
|
|
|
|
|
| get countries
|
|
|
|
|
| echo $it
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, "**************************************************");
|
|
|
|
|
// 50%
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-22 07:00:06 +02:00
|
|
|
|
#[test]
|
|
|
|
|
fn group_by_errors_if_unknown_column_name() {
|
|
|
|
|
Playground::setup("group_by_test_2", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
|
"los_tres_caballeros.csv",
|
|
|
|
|
r#"
|
2019-10-29 22:04:31 +01:00
|
|
|
|
first_name,last_name,rusty_at,type
|
|
|
|
|
Andrés,Robalino,10/11/2013,A
|
|
|
|
|
Jonathan,Turner,10/12/2013,B
|
|
|
|
|
Yehuda,Katz,10/11/2013,A
|
2019-10-22 07:00:06 +02:00
|
|
|
|
"#,
|
|
|
|
|
)]);
|
|
|
|
|
|
|
|
|
|
let actual = nu_error!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
open los_tres_caballeros.csv
|
|
|
|
|
| group-by ttype
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
assert!(actual.contains("Unknown column"));
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-29 22:04:31 +01:00
|
|
|
|
#[test]
|
|
|
|
|
fn split_by() {
|
|
|
|
|
Playground::setup("split_by_test_1", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![FileWithContentToBeTrimmed(
|
|
|
|
|
"los_tres_caballeros.csv",
|
|
|
|
|
r#"
|
|
|
|
|
first_name,last_name,rusty_at,type
|
|
|
|
|
Andrés,Robalino,10/11/2013,A
|
|
|
|
|
Jonathan,Turner,10/12/2013,B
|
|
|
|
|
Yehuda,Katz,10/11/2013,A
|
|
|
|
|
"#,
|
|
|
|
|
)]);
|
|
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
open los_tres_caballeros.csv
|
|
|
|
|
| group-by rusty_at
|
|
|
|
|
| split-by type
|
|
|
|
|
| get A."10/11/2013"
|
|
|
|
|
| count
|
|
|
|
|
| echo $it
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, "2");
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn split_by_errors_if_no_table_given_as_input() {
|
|
|
|
|
Playground::setup("split_by_test_2", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![
|
|
|
|
|
EmptyFile("los.txt"),
|
|
|
|
|
EmptyFile("tres.txt"),
|
|
|
|
|
EmptyFile("amigos.txt"),
|
|
|
|
|
EmptyFile("arepas.clu"),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
let actual = nu_error!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
ls
|
|
|
|
|
| get name
|
|
|
|
|
| split-by type
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
assert!(actual.contains("Expected table from pipeline"));
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-12 12:22:58 +02:00
|
|
|
|
#[test]
|
|
|
|
|
fn first_gets_first_rows_by_amount() {
|
|
|
|
|
Playground::setup("first_test_1", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![
|
2019-10-15 12:16:47 +02:00
|
|
|
|
EmptyFile("los.txt"),
|
|
|
|
|
EmptyFile("tres.txt"),
|
|
|
|
|
EmptyFile("amigos.txt"),
|
|
|
|
|
EmptyFile("arepas.clu"),
|
2019-09-12 12:22:58 +02:00
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
ls
|
2019-10-15 12:16:47 +02:00
|
|
|
|
| first 3
|
|
|
|
|
| count
|
2019-09-12 12:22:58 +02:00
|
|
|
|
| echo $it
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
2019-10-15 12:16:47 +02:00
|
|
|
|
assert_eq!(actual, "3");
|
2019-09-12 12:22:58 +02:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2019-10-15 12:16:47 +02:00
|
|
|
|
fn first_gets_all_rows_if_amount_higher_than_all_rows() {
|
2019-10-15 11:17:55 +02:00
|
|
|
|
Playground::setup("first_test_2", |dirs, sandbox| {
|
2019-10-15 12:16:47 +02:00
|
|
|
|
sandbox.with_files(vec![
|
|
|
|
|
EmptyFile("los.txt"),
|
|
|
|
|
EmptyFile("tres.txt"),
|
|
|
|
|
EmptyFile("amigos.txt"),
|
|
|
|
|
EmptyFile("arepas.clu"),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
ls
|
|
|
|
|
| first 99
|
|
|
|
|
| count
|
|
|
|
|
| echo $it
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, "4");
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn first_gets_first_row_when_no_amount_given() {
|
|
|
|
|
Playground::setup("first_test_3", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![EmptyFile("caballeros.txt"), EmptyFile("arepas.clu")]);
|
2019-09-12 12:22:58 +02:00
|
|
|
|
|
2019-10-15 11:17:55 +02:00
|
|
|
|
let actual = nu!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
ls
|
|
|
|
|
| first
|
2019-10-15 12:16:47 +02:00
|
|
|
|
| count
|
2019-10-15 11:17:55 +02:00
|
|
|
|
| echo $it
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
2019-10-15 12:16:47 +02:00
|
|
|
|
assert_eq!(actual, "1");
|
2019-09-12 12:22:58 +02:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-15 12:41:34 +02:00
|
|
|
|
#[test]
|
|
|
|
|
fn last_gets_last_rows_by_amount() {
|
|
|
|
|
Playground::setup("last_test_1", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![
|
|
|
|
|
EmptyFile("los.txt"),
|
|
|
|
|
EmptyFile("tres.txt"),
|
|
|
|
|
EmptyFile("amigos.txt"),
|
|
|
|
|
EmptyFile("arepas.clu"),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
ls
|
|
|
|
|
| last 3
|
|
|
|
|
| count
|
|
|
|
|
| echo $it
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, "3");
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn last_gets_last_row_when_no_amount_given() {
|
|
|
|
|
Playground::setup("last_test_2", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![EmptyFile("caballeros.txt"), EmptyFile("arepas.clu")]);
|
|
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
ls
|
|
|
|
|
| last
|
|
|
|
|
| count
|
|
|
|
|
| echo $it
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, "1");
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-04 16:47:03 +01:00
|
|
|
|
#[test]
|
|
|
|
|
fn get() {
|
|
|
|
|
Playground::setup("get_test_1", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![FileWithContent(
|
|
|
|
|
"sample.toml",
|
|
|
|
|
r#"
|
|
|
|
|
nu_party_venue = "zion"
|
|
|
|
|
"#,
|
|
|
|
|
)]);
|
|
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
open sample.toml
|
|
|
|
|
| get nu_party_venue
|
|
|
|
|
| echo $it
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, "zion");
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn get_more_than_one_member() {
|
|
|
|
|
Playground::setup("get_test_2", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![FileWithContent(
|
|
|
|
|
"sample.toml",
|
|
|
|
|
r#"
|
|
|
|
|
[[fortune_tellers]]
|
|
|
|
|
name = "Andrés N. Robalino"
|
|
|
|
|
arepas = 1
|
|
|
|
|
broken_builds = 0
|
|
|
|
|
|
|
|
|
|
[[fortune_tellers]]
|
|
|
|
|
name = "Jonathan Turner"
|
|
|
|
|
arepas = 1
|
|
|
|
|
broken_builds = 1
|
|
|
|
|
|
|
|
|
|
[[fortune_tellers]]
|
|
|
|
|
name = "Yehuda Katz"
|
|
|
|
|
arepas = 1
|
|
|
|
|
broken_builds = 1
|
|
|
|
|
"#,
|
|
|
|
|
)]);
|
|
|
|
|
|
|
|
|
|
let actual = nu!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
|
|
|
|
open sample.toml
|
|
|
|
|
| get fortune_tellers
|
|
|
|
|
| get arepas broken_builds
|
|
|
|
|
| sum
|
|
|
|
|
| echo $it
|
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, "5");
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-16 12:28:55 +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#"
|
2019-09-03 02:49:51 +02:00
|
|
|
|
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-07-16 12:28:55 +02:00
|
|
|
|
|
2019-08-29 02:32:42 +02:00
|
|
|
|
assert_eq!(actual, "rustyline");
|
2019-07-16 12:28:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
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-09-04 04:37:26 +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"));
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-14 22:30:23 +02:00
|
|
|
|
#[test]
|
|
|
|
|
fn it_arg_works_with_many_inputs_to_external_command() {
|
|
|
|
|
Playground::setup("it_arg_works_with_many_inputs", |dirs, sandbox| {
|
|
|
|
|
sandbox.with_files(vec![
|
|
|
|
|
FileWithContent("file1", "text"),
|
|
|
|
|
FileWithContent("file2", " and more text"),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
let (stdout, stderr) = nu_combined!(
|
|
|
|
|
cwd: dirs.test(), h::pipeline(
|
|
|
|
|
r#"
|
2019-10-21 17:18:43 +02:00
|
|
|
|
echo hello world
|
2019-10-14 22:30:23 +02:00
|
|
|
|
| split-row " "
|
2019-10-21 17:18:43 +02:00
|
|
|
|
| ^echo $it
|
2019-10-14 22:30:23 +02:00
|
|
|
|
"#
|
|
|
|
|
));
|
|
|
|
|
|
2019-10-21 17:18:43 +02:00
|
|
|
|
#[cfg(windows)]
|
|
|
|
|
assert_eq!("hello world", stdout);
|
|
|
|
|
|
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
|
assert_eq!("helloworld", stdout);
|
|
|
|
|
|
2019-10-14 22:30:23 +02:00
|
|
|
|
assert!(!stderr.contains("No such file or directory"));
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 19:58:00 +02:00
|
|
|
|
#[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);
|
2019-09-10 14:00:25 +02:00
|
|
|
|
assert!(actual.contains("[Table],A shell for the GitHub era,2018,ISC,nu,0.2.0"));
|
2019-08-28 19:58:00 +02:00
|
|
|
|
})
|
|
|
|
|
}
|
2019-09-04 04:37:26 +02:00
|
|
|
|
|
2019-09-04 19:38:17 +02:00
|
|
|
|
// This test is more tricky since we are checking for binary output. The output rendered in ASCII is (roughly):
|
2019-09-04 19:36:12 +02:00
|
|
|
|
// <20>authors+0Yehuda Katz <wycats@gmail.com>descriptionA shell for the GitHub eraedition2018licenseISCnamenuversion0.2.0
|
|
|
|
|
// It is not valid utf-8, so this is just an approximation.
|
2019-09-04 04:37:26 +02:00
|
|
|
|
#[test]
|
|
|
|
|
fn save_can_write_out_bson() {
|
|
|
|
|
Playground::setup("save_test_3", |dirs, _| {
|
|
|
|
|
let expected_file = dirs.test().join("cargo_sample.bson");
|
|
|
|
|
|
|
|
|
|
nu!(
|
|
|
|
|
cwd: dirs.root(),
|
|
|
|
|
"open {}/cargo_sample.toml | inc package.version --minor | get package | save save_test_3/cargo_sample.bson",
|
|
|
|
|
dirs.formats()
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
let actual = h::file_contents_binary(expected_file);
|
|
|
|
|
assert!(
|
|
|
|
|
actual
|
|
|
|
|
== vec![
|
|
|
|
|
168, 0, 0, 0, 4, 97, 117, 116, 104, 111, 114, 115, 0, 43, 0, 0, 0, 2, 48, 0,
|
|
|
|
|
31, 0, 0, 0, 89, 101, 104, 117, 100, 97, 32, 75, 97, 116, 122, 32, 60, 119,
|
|
|
|
|
121, 99, 97, 116, 115, 64, 103, 109, 97, 105, 108, 46, 99, 111, 109, 62, 0, 0,
|
|
|
|
|
2, 100, 101, 115, 99, 114, 105, 112, 116, 105, 111, 110, 0, 27, 0, 0, 0, 65,
|
|
|
|
|
32, 115, 104, 101, 108, 108, 32, 102, 111, 114, 32, 116, 104, 101, 32, 71, 105,
|
|
|
|
|
116, 72, 117, 98, 32, 101, 114, 97, 0, 2, 101, 100, 105, 116, 105, 111, 110, 0,
|
|
|
|
|
5, 0, 0, 0, 50, 48, 49, 56, 0, 2, 108, 105, 99, 101, 110, 115, 101, 0, 4, 0, 0,
|
|
|
|
|
0, 73, 83, 67, 0, 2, 110, 97, 109, 101, 0, 3, 0, 0, 0, 110, 117, 0, 2, 118,
|
|
|
|
|
101, 114, 115, 105, 111, 110, 0, 6, 0, 0, 0, 48, 46, 50, 46, 48, 0, 0
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
})
|
|
|
|
|
}
|