2022-03-17 18:55:02 +01:00
|
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn insert_the_column() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open cargo_sample.toml
|
|
|
|
| insert dev-dependencies.new_assertions "0.7.0"
|
|
|
|
| get dev-dependencies.new_assertions
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "0.7.0");
|
|
|
|
}
|
|
|
|
|
2022-11-21 14:35:11 +01:00
|
|
|
#[test]
|
|
|
|
fn doesnt_convert_record_to_table() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", r#"{a:1} | insert b 2 | to nuon"#
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "{a: 1, b: 2}");
|
|
|
|
}
|
|
|
|
|
2022-03-17 18:55:02 +01:00
|
|
|
#[test]
|
|
|
|
fn insert_the_column_conflict() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: "tests/fixtures/formats", pipeline(
|
|
|
|
r#"
|
|
|
|
open cargo_sample.toml
|
|
|
|
| insert dev-dependencies.pretty_assertions "0.7.0"
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2022-11-19 18:35:55 +01:00
|
|
|
assert!(actual
|
|
|
|
.err
|
|
|
|
.contains("column 'pretty_assertions' already exists"));
|
2022-03-17 18:55:02 +01:00
|
|
|
}
|
2022-03-18 22:12:54 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn insert_into_list() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
|
|
|
[1, 2, 3] | insert 1 abc | to json -r
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, r#"[1,"abc",2,3]"#);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn insert_into_list_begin() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
|
|
|
[1, 2, 3] | insert 0 abc | to json -r
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, r#"["abc",1,2,3]"#);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn insert_into_list_end() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
|
|
|
[1, 2, 3] | insert 3 abc | to json -r
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, r#"[1,2,3,"abc"]"#);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn insert_past_end_list() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
|
|
|
[1, 2, 3] | insert 5 abc | to json -r
|
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(actual.out, r#"[1,2,3,null,null,"abc"]"#);
|
|
|
|
}
|
2022-11-21 14:35:11 +01:00
|
|
|
|
|
|
|
#[test]
|
2023-02-02 23:59:58 +01:00
|
|
|
fn insert_uses_enumerate_index() {
|
2022-11-21 14:35:11 +01:00
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
2023-02-02 23:59:58 +01:00
|
|
|
r#"[[a]; [7] [6]] | enumerate | insert b {|el| $el.index + 1 + $el.item.a } | flatten | to nuon"#
|
2022-11-21 14:35:11 +01:00
|
|
|
));
|
|
|
|
|
2023-02-02 23:59:58 +01:00
|
|
|
assert_eq!(actual.out, "[[index, a, b]; [0, 7, 8], [1, 6, 8]]");
|
2022-11-21 14:35:11 +01:00
|
|
|
}
|