Auto merge of #13315 - weihanglo:pkg-selection, r=epage

fix(`--package`): accept `?` if it's a valid pkgid spec
This commit is contained in:
bors 2024-01-18 12:46:24 +00:00 committed by Weihang Lo
parent ddec30889a
commit 268795bef0
No known key found for this signature in database
GPG Key ID: D7DBF189825E82E7
2 changed files with 42 additions and 1 deletions

View File

@ -195,7 +195,7 @@ fn opt_patterns_and_names(
let mut opt_patterns = Vec::new();
let mut opt_names = BTreeSet::new();
for x in opt.iter() {
if is_glob_pattern(x) {
if PackageIdSpec::parse(x).is_err() && is_glob_pattern(x) {
opt_patterns.push((build_glob(x)?, false));
} else {
opt_names.insert(String::as_str(x));

View File

@ -3,6 +3,7 @@
use std::fmt::{self, Write};
use crate::messages::raw_rustc_output;
use cargo_test_support::compare;
use cargo_test_support::install::exe;
use cargo_test_support::paths::CargoPathExt;
use cargo_test_support::registry::Package;
@ -1519,3 +1520,43 @@ fn versionless_package() {
)
.run();
}
#[cargo_test]
fn pkgid_querystring_works() {
let git_project = git::new("gitdep", |p| {
p.file("Cargo.toml", &basic_manifest("gitdep", "1.0.0"))
.file("src/lib.rs", "")
});
let p = project()
.file(
"Cargo.toml",
&format!(
r#"
[package]
name = "foo"
[dependencies]
gitdep = {{ git = "{}", branch = "master" }}
"#,
git_project.url()
),
)
.file("src/lib.rs", "")
.build();
p.cargo("generate-lockfile").run();
let output = p.cargo("pkgid").arg("gitdep").exec_with_output().unwrap();
let gitdep_pkgid = String::from_utf8(output.stdout).unwrap();
let gitdep_pkgid = gitdep_pkgid.trim();
compare::assert_match_exact("git+file://[..]/gitdep?branch=master#1.0.0", &gitdep_pkgid);
p.cargo("build -p")
.arg(gitdep_pkgid)
.with_stderr(
"\
[COMPILING] gitdep v1.0.0 (file:///[..]/gitdep?branch=master#[..])
[FINISHED] dev [..]",
)
.run();
}