2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::fs::Stub::FileWithContent;
|
2020-09-14 16:07:02 +02:00
|
|
|
use nu_test_support::nu_with_plugins;
|
2019-12-17 19:54:39 +01:00
|
|
|
use nu_test_support::playground::Playground;
|
2023-04-08 20:52:37 +02:00
|
|
|
use pretty_assertions::assert_eq;
|
2019-08-10 10:54:49 +02:00
|
|
|
|
|
|
|
#[test]
|
2022-07-22 06:14:37 +02:00
|
|
|
fn chooses_highest_increment_if_given_more_than_one() {
|
2020-09-14 16:07:02 +02:00
|
|
|
let actual = nu_with_plugins!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: "tests/fixtures/formats",
|
2022-09-07 16:07:42 +02:00
|
|
|
plugin: ("nu_plugin_inc"),
|
2022-11-14 00:15:27 +01:00
|
|
|
"open cargo_sample.toml | inc package.version --major --minor | get package.version"
|
2019-08-10 10:54:49 +02:00
|
|
|
);
|
|
|
|
|
2022-07-22 06:14:37 +02:00
|
|
|
assert_eq!(actual.out, "1.0.0");
|
|
|
|
|
|
|
|
let actual = nu_with_plugins!(
|
|
|
|
cwd: "tests/fixtures/formats",
|
2022-09-07 16:07:42 +02:00
|
|
|
plugin: ("nu_plugin_inc"),
|
2022-07-22 06:14:37 +02:00
|
|
|
// Regardless of order of arguments
|
2022-11-14 00:15:27 +01:00
|
|
|
"open cargo_sample.toml | inc package.version --minor --major | get package.version"
|
2022-07-22 06:14:37 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "1.0.0");
|
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| {
|
2024-05-04 02:53:15 +02:00
|
|
|
sandbox.with_files(&[FileWithContent(
|
2019-09-11 16:36:50 +02:00
|
|
|
"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
|
|
|
)]);
|
|
|
|
|
2020-09-14 16:07:02 +02:00
|
|
|
let actual = nu_with_plugins!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: dirs.test(),
|
2022-09-07 16:07:42 +02:00
|
|
|
plugin: ("nu_plugin_inc"),
|
2020-10-26 07:55:52 +01:00
|
|
|
"open sample.toml | inc package.edition | get package.edition"
|
2019-08-29 02:32:42 +02:00
|
|
|
);
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
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| {
|
2024-05-04 02:53:15 +02:00
|
|
|
sandbox.with_files(&[FileWithContent(
|
2019-09-11 16:36:50 +02:00
|
|
|
"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
|
|
|
)]);
|
|
|
|
|
2020-09-14 16:07:02 +02:00
|
|
|
let actual = nu_with_plugins!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: dirs.test(),
|
2022-09-07 16:07:42 +02:00
|
|
|
plugin: ("nu_plugin_inc"),
|
2020-10-26 07:55:52 +01:00
|
|
|
"open sample.toml | get package.contributors | inc"
|
2019-08-29 02:32:42 +02:00
|
|
|
);
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
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]
|
2019-08-10 13:04:13 +02:00
|
|
|
fn semversion_major_inc() {
|
2019-08-29 02:32:42 +02:00
|
|
|
Playground::setup("plugin_inc_test_3", |dirs, sandbox| {
|
2024-05-04 02:53:15 +02:00
|
|
|
sandbox.with_files(&[FileWithContent(
|
2019-09-11 16:36:50 +02:00
|
|
|
"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
|
|
|
)]);
|
|
|
|
|
2020-09-14 16:07:02 +02:00
|
|
|
let actual = nu_with_plugins!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: dirs.test(),
|
2022-09-07 16:07:42 +02:00
|
|
|
plugin: ("nu_plugin_inc"),
|
2020-10-26 07:55:52 +01:00
|
|
|
"open sample.toml | inc package.version -M | get package.version"
|
2019-08-29 02:32:42 +02:00
|
|
|
);
|
|
|
|
|
2020-05-07 13:03:43 +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]
|
2019-08-10 13:04:13 +02:00
|
|
|
fn semversion_minor_inc() {
|
2019-08-29 02:32:42 +02:00
|
|
|
Playground::setup("plugin_inc_test_4", |dirs, sandbox| {
|
2024-05-04 02:53:15 +02:00
|
|
|
sandbox.with_files(&[FileWithContent(
|
2019-09-11 16:36:50 +02:00
|
|
|
"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
|
|
|
)]);
|
|
|
|
|
2020-09-14 16:07:02 +02:00
|
|
|
let actual = nu_with_plugins!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: dirs.test(),
|
2022-09-07 16:07:42 +02:00
|
|
|
plugin: ("nu_plugin_inc"),
|
2020-10-26 07:55:52 +01:00
|
|
|
"open sample.toml | inc package.version --minor | get package.version"
|
2019-08-29 02:32:42 +02:00
|
|
|
);
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "0.2.0");
|
2019-08-29 02:32:42 +02:00
|
|
|
})
|
2019-08-10 13:04:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn semversion_patch_inc() {
|
2019-08-29 02:32:42 +02:00
|
|
|
Playground::setup("plugin_inc_test_5", |dirs, sandbox| {
|
2024-05-04 02:53:15 +02:00
|
|
|
sandbox.with_files(&[FileWithContent(
|
2019-09-11 16:36:50 +02:00
|
|
|
"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
|
|
|
)]);
|
|
|
|
|
2020-09-14 16:07:02 +02:00
|
|
|
let actual = nu_with_plugins!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: dirs.test(),
|
2022-09-07 16:07:42 +02:00
|
|
|
plugin: ("nu_plugin_inc"),
|
2020-10-26 07:55:52 +01:00
|
|
|
"open sample.toml | inc package.version --patch | get package.version"
|
2019-08-29 02:32:42 +02:00
|
|
|
);
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "0.1.4");
|
2019-08-29 02:32:42 +02:00
|
|
|
})
|
2019-08-10 13:04:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn semversion_without_passing_field() {
|
2019-08-29 02:32:42 +02:00
|
|
|
Playground::setup("plugin_inc_test_6", |dirs, sandbox| {
|
2024-05-04 02:53:15 +02:00
|
|
|
sandbox.with_files(&[FileWithContent(
|
2019-09-11 16:36:50 +02:00
|
|
|
"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
|
|
|
)]);
|
|
|
|
|
2020-09-14 16:07:02 +02:00
|
|
|
let actual = nu_with_plugins!(
|
2019-08-29 08:31:56 +02:00
|
|
|
cwd: dirs.test(),
|
2022-09-07 16:07:42 +02:00
|
|
|
plugin: ("nu_plugin_inc"),
|
2020-10-26 07:55:52 +01:00
|
|
|
"open sample.toml | get package.version | inc --patch"
|
2019-08-29 02:32:42 +02:00
|
|
|
);
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "0.1.4");
|
2019-08-29 02:32:42 +02:00
|
|
|
})
|
2019-08-26 20:19:05 +02:00
|
|
|
}
|
2024-01-22 22:00:43 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn explicit_flag() {
|
|
|
|
Playground::setup("plugin_inc_test_6", |dirs, _| {
|
|
|
|
let actual = nu_with_plugins!(
|
|
|
|
cwd: dirs.test(),
|
|
|
|
plugin: ("nu_plugin_inc"),
|
|
|
|
"'0.1.2' | inc --major=false --minor=true --patch=false"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(actual.out, "0.2.0");
|
|
|
|
})
|
|
|
|
}
|