Skip to content

Commit 03976af

Browse files
committed
Auto merge of #8835 - steven-joruk:ignore-lock-files-in-packages, r=alexcrichton
Skip extracting .cargo-ok files from packages This is for #8816 I'll look into adding a unit test tomorrow, I'm still familiarising myself with the project.
2 parents d5556ae + 05a8127 commit 03976af

File tree

2 files changed

+50
-11
lines changed

2 files changed

+50
-11
lines changed

src/cargo/sources/registry/mod.rs

+9-7
Original file line numberDiff line numberDiff line change
@@ -471,13 +471,6 @@ impl<'cfg> RegistrySource<'cfg> {
471471
return Ok(unpack_dir.to_path_buf());
472472
}
473473
}
474-
let mut ok = OpenOptions::new()
475-
.create(true)
476-
.read(true)
477-
.write(true)
478-
.open(&path)
479-
.chain_err(|| format!("failed to open `{}`", path.display()))?;
480-
481474
let gz = GzDecoder::new(tarball);
482475
let mut tar = Archive::new(gz);
483476
let prefix = unpack_dir.file_name().unwrap();
@@ -517,6 +510,15 @@ impl<'cfg> RegistrySource<'cfg> {
517510
result.chain_err(|| format!("failed to unpack entry at `{}`", entry_path.display()))?;
518511
}
519512

513+
// The lock file is created after unpacking so we overwrite a lock file
514+
// which may have been extracted from the package.
515+
let mut ok = OpenOptions::new()
516+
.create(true)
517+
.read(true)
518+
.write(true)
519+
.open(&path)
520+
.chain_err(|| format!("failed to open `{}`", path.display()))?;
521+
520522
// Write to the lock file to indicate that unpacking was successful.
521523
write!(ok, "ok")?;
522524

tests/testsuite/registry.rs

+41-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
//! Tests for normal registry dependencies.
22
3-
use cargo::util::paths::remove_dir_all;
4-
use cargo_test_support::cargo_process;
5-
use cargo_test_support::git;
3+
use cargo::{core::SourceId, util::paths::remove_dir_all};
64
use cargo_test_support::paths::{self, CargoPathExt};
75
use cargo_test_support::registry::{self, registry_path, Dependency, Package};
8-
use cargo_test_support::{basic_manifest, project, t};
6+
use cargo_test_support::{basic_manifest, project};
7+
use cargo_test_support::{cargo_process, registry::registry_url};
8+
use cargo_test_support::{git, install::cargo_home, t};
99
use std::fs::{self, File};
1010
use std::path::Path;
1111

@@ -2133,3 +2133,40 @@ Use `[source]` replacement to alter the default index for crates.io.
21332133
)
21342134
.run();
21352135
}
2136+
2137+
#[cargo_test]
2138+
fn package_lock_inside_package_is_overwritten() {
2139+
let p = project()
2140+
.file(
2141+
"Cargo.toml",
2142+
r#"
2143+
[project]
2144+
name = "foo"
2145+
version = "0.0.1"
2146+
authors = []
2147+
2148+
[dependencies]
2149+
bar = ">= 0.0.0"
2150+
"#,
2151+
)
2152+
.file("src/main.rs", "fn main() {}")
2153+
.build();
2154+
2155+
Package::new("bar", "0.0.1")
2156+
.file("src/lib.rs", "")
2157+
.file(".cargo-ok", "")
2158+
.publish();
2159+
2160+
p.cargo("build").run();
2161+
2162+
let id = SourceId::for_registry(&registry_url()).unwrap();
2163+
let hash = cargo::util::hex::short_hash(&id);
2164+
let ok = cargo_home()
2165+
.join("registry")
2166+
.join("src")
2167+
.join(format!("-{}", hash))
2168+
.join("bar-0.0.1")
2169+
.join(".cargo-ok");
2170+
2171+
assert_eq!(ok.metadata().unwrap().len(), 2);
2172+
}

0 commit comments

Comments
 (0)