Skip to content
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

Fix resolving yanked crates when using a local registry. #6742

Merged
merged 1 commit into from Mar 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/cargo/core/source/source_id.rs
Expand Up @@ -283,7 +283,12 @@ impl SourceId {
Ok(p) => p,
Err(()) => panic!("path sources cannot be remote"),
};
Ok(Box::new(RegistrySource::local(self, &path, config)))
Ok(Box::new(RegistrySource::local(
self,
&path,
yanked_whitelist,
config,
)))
}
Kind::Directory => {
let path = match self.inner.url.to_file_path() {
Expand Down
9 changes: 7 additions & 2 deletions src/cargo/sources/registry/mod.rs
Expand Up @@ -404,15 +404,20 @@ impl<'cfg> RegistrySource<'cfg> {
)
}

pub fn local(source_id: SourceId, path: &Path, config: &'cfg Config) -> RegistrySource<'cfg> {
pub fn local(
source_id: SourceId,
path: &Path,
yanked_whitelist: &HashSet<PackageId>,
config: &'cfg Config,
) -> RegistrySource<'cfg> {
let name = short_name(source_id);
let ops = local::LocalRegistry::new(path, config, &name);
RegistrySource::new(
source_id,
config,
&name,
Box::new(ops),
&HashSet::new(),
yanked_whitelist,
false,
)
}
Expand Down
41 changes: 40 additions & 1 deletion tests/testsuite/local_registry.rs
Expand Up @@ -2,7 +2,7 @@ use std::fs::{self, File};
use std::io::prelude::*;

use crate::support::paths::{self, CargoPathExt};
use crate::support::registry::Package;
use crate::support::registry::{registry_path, Package};
use crate::support::{basic_manifest, project};

fn setup() {
Expand Down Expand Up @@ -61,6 +61,45 @@ fn simple() {
p.cargo("test").run();
}

#[test]
fn depend_on_yanked() {
setup();
Package::new("bar", "0.0.1").local(true).publish();

let p = project()
.file(
"Cargo.toml",
r#"
[project]
name = "foo"
version = "0.0.1"
authors = []

[dependencies]
bar = "0.0.1"
"#,
)
.file("src/lib.rs", "")
.build();

// Run cargo to create lock file.
p.cargo("check").run();

registry_path().join("index").join("3").rm_rf();
Package::new("bar", "0.0.1")
.local(true)
.yanked(true)
.publish();

p.cargo("check")
.with_stderr(
"\
[FINISHED] [..]
",
)
.run();
}

#[test]
fn multiple_versions() {
setup();
Expand Down