|
1 | 1 | //! Tests for normal registry dependencies.
|
2 | 2 |
|
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}; |
6 | 4 | use cargo_test_support::paths::{self, CargoPathExt};
|
7 | 5 | 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}; |
9 | 9 | use std::fs::{self, File};
|
10 | 10 | use std::path::Path;
|
11 | 11 |
|
@@ -2133,3 +2133,40 @@ Use `[source]` replacement to alter the default index for crates.io.
|
2133 | 2133 | )
|
2134 | 2134 | .run();
|
2135 | 2135 | }
|
| 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(®istry_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