nushell/tests/plugins/core_inc.rs

136 lines
3.4 KiB
Rust
Raw Normal View History

2019-12-17 19:54:39 +01:00
use nu_test_support::fs::Stub::FileWithContent;
use nu_test_support::nu_with_plugins;
2019-12-17 19:54:39 +01:00
use nu_test_support::playground::Playground;
2019-08-10 10:54:49 +02:00
#[test]
2019-08-10 11:12:48 +02:00
fn can_only_apply_one() {
let actual = nu_with_plugins!(
2019-08-29 08:31:56 +02:00
cwd: "tests/fixtures/formats",
2019-08-10 11:12:48 +02:00
"open cargo_sample.toml | first 1 | inc package.version --major --minor"
2019-08-10 10:54:49 +02:00
);
assert!(actual
.err
.contains("Usage: inc field [--major|--minor|--patch]"));
2019-08-10 10:54:49 +02:00
}
#[test]
2019-08-14 22:55:26 +02:00
fn by_one_with_field_passed() {
2019-08-29 02:32:42 +02:00
Playground::setup("plugin_inc_test_1", |dirs, sandbox| {
2019-09-11 16:36:50 +02:00
sandbox.with_files(vec![FileWithContent(
"sample.toml",
r#"
2019-08-29 02:32:42 +02:00
[package]
edition = "2018"
2019-09-11 16:36:50 +02:00
"#,
2019-08-29 02:32:42 +02:00
)]);
let actual = nu_with_plugins!(
2019-08-29 08:31:56 +02:00
cwd: dirs.test(),
2019-08-29 02:32:42 +02:00
"open sample.toml | inc package.edition | get package.edition | echo $it"
);
assert_eq!(actual.out, "2019");
2019-08-29 02:32:42 +02:00
})
2019-08-10 10:54:49 +02:00
}
2019-08-14 22:55:26 +02:00
#[test]
fn by_one_with_no_field_passed() {
2019-08-29 02:32:42 +02:00
Playground::setup("plugin_inc_test_2", |dirs, sandbox| {
2019-09-11 16:36:50 +02:00
sandbox.with_files(vec![FileWithContent(
"sample.toml",
r#"
2019-08-29 02:32:42 +02:00
[package]
contributors = "2"
2019-09-11 16:36:50 +02:00
"#,
2019-08-29 02:32:42 +02:00
)]);
let actual = nu_with_plugins!(
2019-08-29 08:31:56 +02:00
cwd: dirs.test(),
2019-08-29 02:32:42 +02:00
"open sample.toml | get package.contributors | inc | echo $it"
);
assert_eq!(actual.out, "3");
2019-08-29 02:32:42 +02:00
})
2019-08-14 22:55:26 +02:00
}
2019-08-10 10:54:49 +02:00
#[test]
fn semversion_major_inc() {
2019-08-29 02:32:42 +02:00
Playground::setup("plugin_inc_test_3", |dirs, sandbox| {
2019-09-11 16:36:50 +02:00
sandbox.with_files(vec![FileWithContent(
"sample.toml",
r#"
2019-08-29 02:32:42 +02:00
[package]
version = "0.1.3"
2019-09-11 16:36:50 +02:00
"#,
2019-08-29 02:32:42 +02:00
)]);
let actual = nu_with_plugins!(
2019-08-29 08:31:56 +02:00
cwd: dirs.test(),
"open sample.toml | inc package.version -M | get package.version | echo $it"
2019-08-29 02:32:42 +02:00
);
assert_eq!(actual.out, "1.0.0");
2019-08-29 02:32:42 +02:00
})
2019-08-10 10:54:49 +02:00
}
#[test]
fn semversion_minor_inc() {
2019-08-29 02:32:42 +02:00
Playground::setup("plugin_inc_test_4", |dirs, sandbox| {
2019-09-11 16:36:50 +02:00
sandbox.with_files(vec![FileWithContent(
"sample.toml",
r#"
2019-08-29 02:32:42 +02:00
[package]
version = "0.1.3"
2019-09-11 16:36:50 +02:00
"#,
2019-08-29 02:32:42 +02:00
)]);
let actual = nu_with_plugins!(
2019-08-29 08:31:56 +02:00
cwd: dirs.test(),
2019-08-29 02:32:42 +02:00
"open sample.toml | inc package.version --minor | get package.version | echo $it"
);
assert_eq!(actual.out, "0.2.0");
2019-08-29 02:32:42 +02:00
})
}
#[test]
fn semversion_patch_inc() {
2019-08-29 02:32:42 +02:00
Playground::setup("plugin_inc_test_5", |dirs, sandbox| {
2019-09-11 16:36:50 +02:00
sandbox.with_files(vec![FileWithContent(
"sample.toml",
r#"
2019-08-29 02:32:42 +02:00
[package]
version = "0.1.3"
2019-09-11 16:36:50 +02:00
"#,
2019-08-29 02:32:42 +02:00
)]);
let actual = nu_with_plugins!(
2019-08-29 08:31:56 +02:00
cwd: dirs.test(),
2019-08-29 02:32:42 +02:00
"open sample.toml | inc package.version --patch | get package.version | echo $it"
);
assert_eq!(actual.out, "0.1.4");
2019-08-29 02:32:42 +02:00
})
}
#[test]
fn semversion_without_passing_field() {
2019-08-29 02:32:42 +02:00
Playground::setup("plugin_inc_test_6", |dirs, sandbox| {
2019-09-11 16:36:50 +02:00
sandbox.with_files(vec![FileWithContent(
"sample.toml",
r#"
2019-08-29 02:32:42 +02:00
[package]
version = "0.1.3"
2019-09-11 16:36:50 +02:00
"#,
2019-08-29 02:32:42 +02:00
)]);
let actual = nu_with_plugins!(
2019-08-29 08:31:56 +02:00
cwd: dirs.test(),
2019-08-29 02:32:42 +02:00
"open sample.toml | get package.version | inc --patch | echo $it"
);
assert_eq!(actual.out, "0.1.4");
2019-08-29 02:32:42 +02:00
})
2019-08-26 20:19:05 +02:00
}