Skip to content

Commit 0d038a9

Browse files
committed
Default urls in [replace] to crates.io
The intention was to do this, and it mistakenly didn't happen! Closes #3235
1 parent 7823422 commit 0d038a9

File tree

3 files changed

+62
-4
lines changed

3 files changed

+62
-4
lines changed

src/cargo/core/package_id_spec.rs

+4
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ impl PackageIdSpec {
110110
pub fn version(&self) -> Option<&Version> { self.version.as_ref() }
111111
pub fn url(&self) -> Option<&Url> { self.url.as_ref() }
112112

113+
pub fn set_url(&mut self, url: Url) {
114+
self.url = Some(url);
115+
}
116+
113117
pub fn matches(&self, package_id: &PackageId) -> bool {
114118
if self.name() != package_id.name() { return false }
115119

src/cargo/util/toml.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ use core::{EitherManifest, VirtualManifest};
1515
use core::dependency::{Kind, Platform};
1616
use core::manifest::{LibKind, Profile, ManifestMetadata};
1717
use core::package_id::Metadata;
18+
use sources::CRATES_IO;
1819
use util::{self, CargoResult, human, ToUrl, ToSemver, ChainError, Config};
1920

2021
/// Representation of the projects file layout.
@@ -740,11 +741,14 @@ impl TomlManifest {
740741
-> CargoResult<Vec<(PackageIdSpec, Dependency)>> {
741742
let mut replace = Vec::new();
742743
for (spec, replacement) in self.replace.iter().flat_map(|x| x) {
743-
let spec = try!(PackageIdSpec::parse(spec).chain_error(|| {
744+
let mut spec = try!(PackageIdSpec::parse(spec).chain_error(|| {
744745
human(format!("replacements must specify a valid semver \
745746
version to replace, but `{}` does not",
746747
spec))
747748
}));
749+
if spec.url().is_none() {
750+
spec.set_url(CRATES_IO.parse().unwrap());
751+
}
748752

749753
let version_specified = match *replacement {
750754
TomlDependency::Detailed(ref d) => d.version.is_some(),

tests/overrides.rs

+53-3
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ fn missing_version() {
7373
error: failed to parse manifest at `[..]`
7474
7575
Caused by:
76-
replacements must specify a version to replace, but `foo` does not
76+
replacements must specify a version to replace, but `[..]foo` does not
7777
"));
7878
}
7979

@@ -468,7 +468,7 @@ fn override_wrong_name() {
468468
execs().with_status(101).with_stderr("\
469469
[UPDATING] registry [..]
470470
[UPDATING] git repository [..]
471-
error: no matching package for override `foo:0.1.0` found
471+
error: no matching package for override `[..]foo:0.1.0` found
472472
location searched: file://[..]
473473
version required: = 0.1.0
474474
"));
@@ -530,7 +530,7 @@ fn override_wrong_version() {
530530
error: failed to parse manifest at `[..]`
531531
532532
Caused by:
533-
replacements cannot specify a version requirement, but found one for `foo:0.1.0`
533+
replacements cannot specify a version requirement, but found one for `[..]foo:0.1.0`
534534
"));
535535
}
536536

@@ -875,3 +875,53 @@ fn override_an_override() {
875875
assert_that(p.cargo_process("build").arg("-v"),
876876
execs().with_status(0));
877877
}
878+
879+
#[test]
880+
fn overriding_nonexistent_no_spurious() {
881+
Package::new("foo", "0.1.0").dep("bar", "0.1").publish();
882+
Package::new("bar", "0.1.0").publish();
883+
884+
let foo = git::repo(&paths::root().join("override"))
885+
.file("Cargo.toml", r#"
886+
[package]
887+
name = "foo"
888+
version = "0.1.0"
889+
authors = []
890+
891+
[dependencies]
892+
bar = { path = "bar" }
893+
"#)
894+
.file("src/lib.rs", "pub fn foo() {}")
895+
.file("bar/Cargo.toml", r#"
896+
[package]
897+
name = "bar"
898+
version = "0.1.0"
899+
authors = []
900+
"#)
901+
.file("bar/src/lib.rs", "pub fn foo() {}");
902+
foo.build();
903+
904+
905+
let p = project("local")
906+
.file("Cargo.toml", &format!(r#"
907+
[package]
908+
name = "local"
909+
version = "0.0.1"
910+
authors = []
911+
912+
[dependencies]
913+
foo = "0.1.0"
914+
915+
[replace]
916+
"foo:0.1.0" = {{ git = '{url}' }}
917+
"bar:0.1.0" = {{ git = '{url}' }}
918+
"#, url = foo.url()))
919+
.file("src/lib.rs", "");
920+
921+
assert_that(p.cargo_process("build"),
922+
execs().with_status(0));
923+
assert_that(p.cargo("build"),
924+
execs().with_status(0).with_stderr("\
925+
[FINISHED] [..]
926+
").with_stdout(""));
927+
}

0 commit comments

Comments
 (0)