Skip to content

Commit 427d70f

Browse files
perryqhashleywillardtstannard
committed
Renaming check-unnecessary-dependencies to check-unused-dependencies
Co-authored-by: Ashley Willard <[email protected]> Co-authored-by: Teal Stannard <[email protected]>
1 parent 9c3204a commit 427d70f

File tree

4 files changed

+25
-9
lines changed

4 files changed

+25
-9
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "pks"
5-
version = "0.2.20"
5+
version = "0.2.21"
66
edition = "2021"
77
description = "Welcome! Please see https://github.com/rubyatscale/pks for more information!"
88
license = "MIT"

src/packs/checker.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -381,13 +381,14 @@ pub(crate) fn check_unnecessary_dependencies(
381381
"Found 1 unnecessary dependency".to_string()
382382
} else {
383383
format!(
384-
"Found {} unnecessary dependencies",
384+
"Found {} unused dependencies",
385385
unnecessary_dependencies.len()
386386
)
387387
};
388388
bail!(
389-
"{}. Run command with `--auto-correct` to remove them.",
389+
"{}. Run `{} check-unused-dependencies --auto-correct` to remove them.",
390390
found_message,
391+
bin_locater::packs_bin_name(),
391392
);
392393
}
393394
}

src/packs/cli.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,11 @@ enum Command {
109109
},
110110

111111
#[clap(
112-
about = "Check for dependencies that when removed produce no violations."
112+
about = "Check for dependencies that when removed produce no violations.",
113+
alias = "check-unnecessary-dependencies"
113114
)]
114-
CheckUnnecessaryDependencies {
115-
#[arg(long)]
115+
CheckUnusedDependencies {
116+
#[arg(short, long)]
116117
auto_correct: bool,
117118
},
118119

@@ -263,7 +264,7 @@ pub fn run() -> anyhow::Result<()> {
263264
packs::validate(&configuration)
264265
// Err("💡 Please use `packs check` to detect dependency cycles and run other configuration validations".into())
265266
}
266-
Command::CheckUnnecessaryDependencies { auto_correct } => {
267+
Command::CheckUnusedDependencies { auto_correct } => {
267268
packs::check_unnecessary_dependencies(&configuration, auto_correct)
268269
}
269270
Command::UpdateDependenciesForConstant { constant } => Ok(

tests/check_unnecessary_dependencies.rs

+16-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ fn assert_check_unused_dependencies(cmd: &str) -> Result<(), Box<dyn Error>> {
1818
"packs/foo depends on packs/bar but does not use it",
1919
))
2020
.stderr(predicate::str::contains(
21-
format!("Error: Found 3 unnecessary dependencies. Run `packs {}| --auto-correct` to remove them.", &cmd),
22-
));
21+
"Error: Found 3 unused dependencies. Run `packs check-unused-dependencies --auto-correct` to remove them.")
22+
);
2323
Ok(())
2424
}
2525

@@ -35,6 +35,20 @@ fn test_check_unused_dependencies() -> Result<(), Box<dyn Error>> {
3535

3636

3737
fn assert_auto_correct_unused_dependencies(cmd: &str, flag: &str) -> Result<(), Box<dyn Error>> {
38+
common::set_up_fixtures();
39+
40+
let expected_before_autocorrect = [
41+
"enforce_dependencies: true",
42+
"enforce_privacy: true",
43+
"layer: technical_services",
44+
"dependencies:",
45+
"- packs/bar",
46+
"- packs/baz\n",
47+
]
48+
.join("\n");
49+
let foo_package_yml = fs::read_to_string("tests/fixtures/app_with_unnecessary_dependencies/packs/foo/package.yml").unwrap();
50+
assert_eq!(foo_package_yml, expected_before_autocorrect);
51+
3852
Command::cargo_bin("pks")?
3953
.arg("--project-root")
4054
.arg("tests/fixtures/app_with_unnecessary_dependencies")

0 commit comments

Comments
 (0)