-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: Add test codebase for shell completions #14681
base: master
Are you sure you want to change the base?
Changes from 4 commits
e1e43f4
ae0363c
b9d09f0
64b9b0d
95d9be2
9ebdd49
1ba0169
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ use cargo_util_schemas::manifest::RegistryName; | |
use cargo_util_schemas::manifest::StringOrVec; | ||
use clap::builder::UnknownArgumentValueParser; | ||
use home::cargo_home_with_cwd; | ||
use itertools::Itertools; | ||
use semver::Version; | ||
use std::collections::HashMap; | ||
use std::ffi::{OsStr, OsString}; | ||
|
@@ -163,13 +164,19 @@ pub trait CommandExt: Sized { | |
._arg( | ||
optional_multi_opt("test", "NAME", test) | ||
.help_heading(heading::TARGET_SELECTION) | ||
.add(clap_complete::ArgValueCandidates::new(get_test_candidates)), | ||
.add(clap_complete::ArgValueCandidates::new(|| { | ||
let cwd = std::env::current_dir(); | ||
get_test_candidates(cwd.ok()) | ||
})), | ||
) | ||
._arg(flag("benches", benches).help_heading(heading::TARGET_SELECTION)) | ||
._arg( | ||
optional_multi_opt("bench", "NAME", bench) | ||
.help_heading(heading::TARGET_SELECTION) | ||
.add(clap_complete::ArgValueCandidates::new(get_bench_candidates)), | ||
.add(clap_complete::ArgValueCandidates::new(|| { | ||
let cwd = std::env::current_dir(); | ||
get_bench_candidates(cwd.ok()) | ||
})), | ||
) | ||
._arg(flag("all-targets", all).help_heading(heading::TARGET_SELECTION)) | ||
} | ||
|
@@ -187,15 +194,19 @@ pub trait CommandExt: Sized { | |
._arg( | ||
optional_multi_opt("bin", "NAME", bin) | ||
.help_heading(heading::TARGET_SELECTION) | ||
.add(clap_complete::ArgValueCandidates::new(get_bin_candidates)), | ||
.add(clap_complete::ArgValueCandidates::new(|| { | ||
let cwd = std::env::current_dir(); | ||
get_bin_candidates(cwd.ok()) | ||
})), | ||
) | ||
._arg(flag("examples", examples).help_heading(heading::TARGET_SELECTION)) | ||
._arg( | ||
optional_multi_opt("example", "NAME", example) | ||
.help_heading(heading::TARGET_SELECTION) | ||
.add(clap_complete::ArgValueCandidates::new( | ||
get_example_candidates, | ||
)), | ||
.add(clap_complete::ArgValueCandidates::new(|| { | ||
let cwd = std::env::current_dir(); | ||
get_example_candidates(cwd.ok()) | ||
})), | ||
) | ||
} | ||
|
||
|
@@ -209,15 +220,19 @@ pub trait CommandExt: Sized { | |
self._arg( | ||
optional_multi_opt("bin", "NAME", bin) | ||
.help_heading(heading::TARGET_SELECTION) | ||
.add(clap_complete::ArgValueCandidates::new(get_bin_candidates)), | ||
.add(clap_complete::ArgValueCandidates::new(|| { | ||
let cwd = std::env::current_dir(); | ||
get_bin_candidates(cwd.ok()) | ||
})), | ||
) | ||
._arg(flag("bins", bins).help_heading(heading::TARGET_SELECTION)) | ||
._arg( | ||
optional_multi_opt("example", "NAME", example) | ||
.help_heading(heading::TARGET_SELECTION) | ||
.add(clap_complete::ArgValueCandidates::new( | ||
get_example_candidates, | ||
)), | ||
.add(clap_complete::ArgValueCandidates::new(|| { | ||
let cwd = std::env::current_dir(); | ||
get_example_candidates(cwd.ok()) | ||
})), | ||
) | ||
._arg(flag("examples", examples).help_heading(heading::TARGET_SELECTION)) | ||
} | ||
|
@@ -226,14 +241,18 @@ pub trait CommandExt: Sized { | |
self._arg( | ||
optional_multi_opt("bin", "NAME", bin) | ||
.help_heading(heading::TARGET_SELECTION) | ||
.add(clap_complete::ArgValueCandidates::new(get_bin_candidates)), | ||
.add(clap_complete::ArgValueCandidates::new(|| { | ||
let cwd = std::env::current_dir(); | ||
get_bin_candidates(cwd.ok()) | ||
})), | ||
) | ||
._arg( | ||
optional_multi_opt("example", "NAME", example) | ||
.help_heading(heading::TARGET_SELECTION) | ||
.add(clap_complete::ArgValueCandidates::new( | ||
get_example_candidates, | ||
)), | ||
.add(clap_complete::ArgValueCandidates::new(|| { | ||
let cwd = std::env::current_dir(); | ||
get_example_candidates(cwd.ok()) | ||
})), | ||
) | ||
} | ||
|
||
|
@@ -294,7 +313,10 @@ pub trait CommandExt: Sized { | |
self._arg( | ||
optional_multi_opt("target", "TRIPLE", target) | ||
.help_heading(heading::COMPILATION_OPTIONS) | ||
.add(clap_complete::ArgValueCandidates::new(get_target_triples)), | ||
.add(clap_complete::ArgValueCandidates::new(|| { | ||
let cwd = std::env::current_dir(); | ||
get_target_triples(cwd.ok()) | ||
})), | ||
) | ||
._arg(unsupported_short_arg) | ||
} | ||
|
@@ -367,8 +389,12 @@ pub trait CommandExt: Sized { | |
.value_parser(["git", "hg", "pijul", "fossil", "none"]), | ||
) | ||
._arg( | ||
flag("bin", "Use a binary (application) template [default]") | ||
.add(clap_complete::ArgValueCandidates::new(get_bin_candidates)), | ||
flag("bin", "Use a binary (application) template [default]").add( | ||
clap_complete::ArgValueCandidates::new(|| { | ||
let cwd = std::env::current_dir(); | ||
get_bin_candidates(cwd.ok()) | ||
}), | ||
), | ||
) | ||
._arg(flag("lib", "Use a library template")) | ||
._arg( | ||
|
@@ -388,7 +414,8 @@ pub trait CommandExt: Sized { | |
fn arg_registry(self, help: &'static str) -> Self { | ||
self._arg(opt("registry", help).value_name("REGISTRY").add( | ||
clap_complete::ArgValueCandidates::new(|| { | ||
let candidates = get_registry_candidates(); | ||
let cwd = std::env::current_dir(); | ||
let candidates = get_registry_candidates(cwd.ok()); | ||
candidates.unwrap_or_default() | ||
}), | ||
)) | ||
|
@@ -1068,23 +1095,26 @@ pub fn lockfile_path( | |
return Ok(Some(path)); | ||
} | ||
|
||
pub fn get_registry_candidates() -> CargoResult<Vec<clap_complete::CompletionCandidate>> { | ||
let gctx = new_gctx_for_completions()?; | ||
pub fn get_registry_candidates( | ||
cwd: Option<PathBuf>, | ||
) -> CargoResult<Vec<clap_complete::CompletionCandidate>> { | ||
let gctx = new_gctx_for_completions(cwd)?; | ||
|
||
if let Ok(Some(registries)) = | ||
gctx.get::<Option<HashMap<String, HashMap<String, String>>>>("registries") | ||
{ | ||
Ok(registries | ||
.keys() | ||
.sorted() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
.map(|name| clap_complete::CompletionCandidate::new(name.to_owned())) | ||
.collect()) | ||
} else { | ||
Ok(vec![]) | ||
} | ||
} | ||
|
||
fn get_example_candidates() -> Vec<clap_complete::CompletionCandidate> { | ||
get_targets_from_metadata() | ||
pub fn get_example_candidates(cwd: Option<PathBuf>) -> Vec<clap_complete::CompletionCandidate> { | ||
get_targets_from_metadata(cwd) | ||
.unwrap_or_default() | ||
.into_iter() | ||
.filter_map(|target| match target.kind() { | ||
|
@@ -1094,8 +1124,8 @@ fn get_example_candidates() -> Vec<clap_complete::CompletionCandidate> { | |
.collect::<Vec<_>>() | ||
} | ||
|
||
fn get_bench_candidates() -> Vec<clap_complete::CompletionCandidate> { | ||
get_targets_from_metadata() | ||
fn get_bench_candidates(cwd: Option<PathBuf>) -> Vec<clap_complete::CompletionCandidate> { | ||
get_targets_from_metadata(cwd) | ||
.unwrap_or_default() | ||
.into_iter() | ||
.filter_map(|target| match target.kind() { | ||
|
@@ -1105,8 +1135,8 @@ fn get_bench_candidates() -> Vec<clap_complete::CompletionCandidate> { | |
.collect::<Vec<_>>() | ||
} | ||
|
||
fn get_test_candidates() -> Vec<clap_complete::CompletionCandidate> { | ||
get_targets_from_metadata() | ||
fn get_test_candidates(cwd: Option<PathBuf>) -> Vec<clap_complete::CompletionCandidate> { | ||
get_targets_from_metadata(cwd) | ||
.unwrap_or_default() | ||
.into_iter() | ||
.filter_map(|target| match target.kind() { | ||
|
@@ -1116,8 +1146,8 @@ fn get_test_candidates() -> Vec<clap_complete::CompletionCandidate> { | |
.collect::<Vec<_>>() | ||
} | ||
|
||
fn get_bin_candidates() -> Vec<clap_complete::CompletionCandidate> { | ||
get_targets_from_metadata() | ||
pub fn get_bin_candidates(cwd: Option<PathBuf>) -> Vec<clap_complete::CompletionCandidate> { | ||
get_targets_from_metadata(cwd) | ||
.unwrap_or_default() | ||
.into_iter() | ||
.filter_map(|target| match target.kind() { | ||
|
@@ -1127,10 +1157,9 @@ fn get_bin_candidates() -> Vec<clap_complete::CompletionCandidate> { | |
.collect::<Vec<_>>() | ||
} | ||
|
||
fn get_targets_from_metadata() -> CargoResult<Vec<Target>> { | ||
let cwd = std::env::current_dir()?; | ||
let gctx = GlobalContext::new(shell::Shell::new(), cwd.clone(), cargo_home_with_cwd(&cwd)?); | ||
let ws = Workspace::new(&find_root_manifest_for_wd(&cwd)?, &gctx)?; | ||
fn get_targets_from_metadata(cwd: Option<PathBuf>) -> CargoResult<Vec<Target>> { | ||
let gctx = new_gctx_for_completions(cwd)?; | ||
let ws = Workspace::new(&find_root_manifest_for_wd(gctx.cwd())?, &gctx)?; | ||
|
||
let packages = ws.members().collect::<Vec<_>>(); | ||
|
||
|
@@ -1142,15 +1171,15 @@ fn get_targets_from_metadata() -> CargoResult<Vec<Target>> { | |
Ok(targets) | ||
} | ||
|
||
fn get_target_triples() -> Vec<clap_complete::CompletionCandidate> { | ||
pub fn get_target_triples(cwd: Option<PathBuf>) -> Vec<clap_complete::CompletionCandidate> { | ||
let mut candidates = Vec::new(); | ||
|
||
if let Ok(targets) = get_target_triples_from_rustup() { | ||
candidates = targets; | ||
} | ||
|
||
if candidates.is_empty() { | ||
if let Ok(targets) = get_target_triples_from_rustc() { | ||
if let Ok(targets) = get_target_triples_from_rustc(cwd) { | ||
candidates = targets; | ||
} | ||
} | ||
|
@@ -1182,10 +1211,11 @@ fn get_target_triples_from_rustup() -> CargoResult<Vec<clap_complete::Completion | |
.collect()) | ||
} | ||
|
||
fn get_target_triples_from_rustc() -> CargoResult<Vec<clap_complete::CompletionCandidate>> { | ||
let cwd = std::env::current_dir()?; | ||
let gctx = GlobalContext::new(shell::Shell::new(), cwd.clone(), cargo_home_with_cwd(&cwd)?); | ||
let ws = Workspace::new(&find_root_manifest_for_wd(&PathBuf::from(&cwd))?, &gctx); | ||
fn get_target_triples_from_rustc( | ||
cwd: Option<PathBuf>, | ||
) -> CargoResult<Vec<clap_complete::CompletionCandidate>> { | ||
let gctx = new_gctx_for_completions(cwd)?; | ||
let ws = Workspace::new(&find_root_manifest_for_wd(gctx.cwd())?, &gctx); | ||
|
||
let rustc = gctx.load_global_rustc(ws.as_ref().ok())?; | ||
|
||
|
@@ -1198,12 +1228,12 @@ fn get_target_triples_from_rustc() -> CargoResult<Vec<clap_complete::CompletionC | |
.collect()) | ||
} | ||
|
||
pub fn get_pkg_id_spec_candidates() -> Vec<clap_complete::CompletionCandidate> { | ||
pub fn get_pkg_id_spec_candidates(cwd: Option<PathBuf>) -> Vec<clap_complete::CompletionCandidate> { | ||
let mut candidates = vec![]; | ||
|
||
let package_map = HashMap::<&str, Vec<Package>>::new(); | ||
let package_map = | ||
get_packages() | ||
get_packages(cwd) | ||
.unwrap_or_default() | ||
.into_iter() | ||
.fold(package_map, |mut map, package| { | ||
|
@@ -1285,8 +1315,8 @@ pub fn get_pkg_id_spec_candidates() -> Vec<clap_complete::CompletionCandidate> { | |
candidates | ||
} | ||
|
||
fn get_packages() -> CargoResult<Vec<Package>> { | ||
let gctx = new_gctx_for_completions()?; | ||
fn get_packages(cwd: Option<PathBuf>) -> CargoResult<Vec<Package>> { | ||
let gctx = new_gctx_for_completions(cwd)?; | ||
|
||
let ws = Workspace::new(&find_root_manifest_for_wd(gctx.cwd())?, &gctx)?; | ||
|
||
|
@@ -1318,8 +1348,8 @@ fn get_packages() -> CargoResult<Vec<Package>> { | |
Ok(packages) | ||
} | ||
|
||
fn new_gctx_for_completions() -> CargoResult<GlobalContext> { | ||
let cwd = std::env::current_dir()?; | ||
pub fn new_gctx_for_completions(cwd: Option<PathBuf>) -> CargoResult<GlobalContext> { | ||
let cwd = cwd.unwrap_or(std::env::current_dir()?); | ||
let mut gctx = GlobalContext::new(shell::Shell::new(), cwd.clone(), cargo_home_with_cwd(&cwd)?); | ||
|
||
let verbose = 0; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
use std::path::PathBuf; | ||
|
||
use cargo::util::command_prelude::*; | ||
use cargo_test_support::cargo_test; | ||
|
||
#[cargo_test] | ||
fn test_get_example_candidates() { | ||
let current_dir = std::env::current_dir().expect("Failed to get current directory"); | ||
let cwd = PathBuf::from(file!()).parent().unwrap().join("template"); | ||
let cwd = current_dir.join(cwd); | ||
|
||
let expected = snapbox::str![ | ||
"example1 | ||
example2" | ||
]; | ||
let actual = print_candidates(get_example_candidates(Some(cwd))); | ||
snapbox::assert_data_eq!(actual, expected); | ||
} | ||
|
||
#[cargo_test] | ||
fn test_get_registry_candidates() { | ||
let current_dir = std::env::current_dir().expect("Failed to get current directory"); | ||
let cwd = PathBuf::from(file!()).parent().unwrap().join("template"); | ||
let cwd = current_dir.join(cwd); | ||
Comment on lines
+65
to
+67
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A temp directory is created for each test. I'd recommend going ahead and writing to that and using that as the "cwd" for the test case. We have |
||
|
||
let expected = snapbox::str![ | ||
"my-registry1 | ||
my-registry2" | ||
]; | ||
let actual = print_candidates(get_registry_candidates(Some(cwd)).unwrap()); | ||
snapbox::assert_data_eq!(actual, expected); | ||
} | ||
|
||
fn print_candidates(candidates: Vec<clap_complete::CompletionCandidate>) -> String { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
candidates | ||
.into_iter() | ||
.map(|candidate| { | ||
let compl = candidate.get_value().to_str().unwrap(); | ||
if let Some(help) = candidate.get_help() { | ||
format!("{compl}\t{help}") | ||
} else { | ||
compl.to_owned() | ||
} | ||
}) | ||
.collect::<Vec<_>>() | ||
.join("\n") | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[registries] | ||
my-registry1 = { index = "my-registry1"} | ||
my-registry2 = { index = "my-registry2"} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[workspace] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
rust-version = "1.81" | ||
edition = "2021" | ||
|
||
[package] | ||
name = "template" | ||
version = "0.1.0" | ||
edition.workspace = true | ||
rust-version = "1.81" | ||
|
||
[lib] | ||
name = "template" | ||
path = "src/lib.rs" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This being
pub
doesn't make a difference as this only exists in thebin