Add test for vendor with different revs from same git repo

Signed-off-by: Atkins Chang <atkinschang@gmail.com>
This commit is contained in:
Atkins Chang 2022-05-13 16:59:57 +08:00
parent 74c7aab19a
commit 0200d3b3ca
No known key found for this signature in database
GPG key ID: EEB142DC0A799167

View file

@ -8,7 +8,7 @@ use std::fs;
use cargo_test_support::git;
use cargo_test_support::registry::{self, Package, RegistryBuilder};
use cargo_test_support::{basic_lib_manifest, paths, project, Project};
use cargo_test_support::{basic_lib_manifest, basic_manifest, paths, project, Project};
#[cargo_test]
fn vendor_simple() {
@ -675,6 +675,60 @@ fn git_simple() {
assert!(csum.contains("\"package\":null"));
}
#[cargo_test]
fn git_diff_rev() {
let (git_project, git_repo) = git::new_repo("git", |p| {
p.file("Cargo.toml", &basic_manifest("a", "0.1.0"))
.file("src/lib.rs", "")
});
let url = git_project.url();
let ref_1 = "v0.1.0";
let ref_2 = "v0.2.0";
git::tag(&git_repo, ref_1);
git_project.change_file("Cargo.toml", &basic_manifest("a", "0.2.0"));
git::add(&git_repo);
git::commit(&git_repo);
git::tag(&git_repo, ref_2);
let p = project()
.file(
"Cargo.toml",
&format!(
r#"
[package]
name = "foo"
version = "0.1.0"
[dependencies]
a_1 = {{ package = "a", git = '{url}', rev = '{ref_1}' }}
a_2 = {{ package = "a", git = '{url}', rev = '{ref_2}' }}
"#
),
)
.file("src/lib.rs", "")
.build();
p.cargo("vendor --respect-source-config")
.with_stdout(
r#"[source."git+file://[..]/git?rev=v0.1.0"]
git = [..]
rev = "v0.1.0"
replace-with = "vendored-sources"
[source."git+file://[..]/git?rev=v0.2.0"]
git = [..]
rev = "v0.2.0"
replace-with = "vendored-sources"
[source.vendored-sources]
directory = "vendor"
"#,
)
.run();
}
#[cargo_test]
fn git_duplicate() {
let git = git::new("a", |p| {