2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::{nu, pipeline};
|
2019-12-15 17:15:06 +01:00
|
|
|
|
|
|
|
#[test]
|
2020-04-30 06:18:24 +02:00
|
|
|
fn sets_the_column() {
|
2019-12-15 17:15:06 +01:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open cargo_sample.toml
|
2022-03-17 18:55:02 +01:00
|
|
|
| update dev-dependencies.pretty_assertions "0.7.0"
|
2019-12-15 17:15:06 +01:00
|
|
|
| get dev-dependencies.pretty_assertions
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "0.7.0");
|
2020-04-30 06:18:24 +02:00
|
|
|
}
|
|
|
|
|
2020-07-18 03:59:23 +02:00
|
|
|
#[cfg(features = "inc")]
|
2020-04-30 06:18:24 +02:00
|
|
|
#[test]
|
|
|
|
fn sets_the_column_from_a_block_run_output() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open cargo_sample.toml
|
2022-03-17 18:55:02 +01:00
|
|
|
| update dev-dependencies.pretty_assertions { open cargo_sample.toml | get dev-dependencies.pretty_assertions | inc --minor }
|
2020-04-30 06:18:24 +02:00
|
|
|
| get dev-dependencies.pretty_assertions
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "0.7.0");
|
2019-12-15 17:15:06 +01:00
|
|
|
}
|
2020-08-12 09:51:24 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn sets_the_column_from_a_block_full_stream_output() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
wrap content
|
2022-03-17 18:55:02 +01:00
|
|
|
| update content { open --raw cargo_sample.toml | lines | first 5 }
|
2020-08-12 09:51:24 +02:00
|
|
|
| get content.1
|
|
|
|
| str contains "nu"
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "true");
|
|
|
|
}
|
2020-08-26 12:56:45 +02:00
|
|
|
|
|
|
|
#[test]
|
2021-06-07 10:08:35 +02:00
|
|
|
fn sets_the_column_from_a_subexpression() {
|
2020-08-26 12:56:45 +02:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
wrap content
|
2022-03-17 18:55:02 +01:00
|
|
|
| update content (open --raw cargo_sample.toml | lines | first 5)
|
2020-08-26 12:56:45 +02:00
|
|
|
| get content.1
|
|
|
|
| str contains "nu"
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "true");
|
|
|
|
}
|
2022-03-17 18:55:02 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn upsert_column_missing() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open cargo_sample.toml
|
|
|
|
| update dev-dependencies.new_assertions "0.7.0"
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert!(actual.err.contains("cannot find column"));
|
|
|
|
}
|
2022-03-18 22:12:54 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn update_list() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
|
|
|
[1, 2, 3] | update 1 abc | to json -r
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, r#"[1,"abc",3]"#);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn update_past_end_list() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
|
|
|
[1, 2, 3] | update 5 abc | to json -r
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert!(actual.err.contains("too large"));
|
|
|
|
}
|