Skip to content

Commit c71e964

Browse files
committed
apply: test rename 1 to 2
Test that a patch can contain two deltas that appear to rename an initial source file to two different destination paths. Git creates both target files with the initial source contents; ensure that we do, too.
1 parent 56a2ae0 commit c71e964

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

tests/apply/apply_helpers.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,16 @@
245245
"rename from beef.txt\n" \
246246
"rename to 2.txt\n"
247247

248+
#define DIFF_RENAME_1_TO_2 \
249+
"diff --git a/asparagus.txt b/2.txt\n" \
250+
"similarity index 100%\n" \
251+
"rename from asparagus.txt\n" \
252+
"rename to 1.txt\n" \
253+
"diff --git a/asparagus.txt b/2.txt\n" \
254+
"similarity index 100%\n" \
255+
"rename from asparagus.txt\n" \
256+
"rename to 2.txt\n"
257+
248258
struct iterator_compare_data {
249259
struct merge_index_entry *expected;
250260
size_t cnt;

tests/apply/both.c

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -548,3 +548,29 @@ void test_apply_both__rename_2_to_1(void)
548548

549549
git_diff_free(diff);
550550
}
551+
552+
void test_apply_both__rename_1_to_2(void)
553+
{
554+
git_diff *diff;
555+
556+
struct merge_index_entry both_expected[] = {
557+
{ 0100644, "f51658077d85f2264fa179b4d0848268cb3475c3", 0, "1.txt" },
558+
{ 0100644, "f51658077d85f2264fa179b4d0848268cb3475c3", 0, "2.txt" },
559+
{ 0100644, "68f6182f4c85d39e1309d97c7e456156dc9c0096", 0, "beef.txt" },
560+
{ 0100644, "4b7c5650008b2e747fe1809eeb5a1dde0e80850a", 0, "bouilli.txt" },
561+
{ 0100644, "c4e6cca3ec6ae0148ed231f97257df8c311e015f", 0, "gravy.txt" },
562+
{ 0100644, "68af1fc7407fd9addf1701a87eb1c95c7494c598", 0, "oyster.txt" },
563+
{ 0100644, "94d2c01087f48213bd157222d54edfefd77c9bba", 0, "veal.txt" }
564+
};
565+
size_t both_expected_cnt = sizeof(both_expected) /
566+
sizeof(struct merge_index_entry);
567+
568+
cl_git_pass(git_diff_from_buffer(&diff, DIFF_RENAME_1_TO_2,
569+
strlen(DIFF_RENAME_1_TO_2)));
570+
cl_git_pass(git_apply(repo, diff, GIT_APPLY_LOCATION_BOTH, NULL));
571+
572+
validate_apply_index(repo, both_expected, both_expected_cnt);
573+
validate_apply_workdir(repo, both_expected, both_expected_cnt);
574+
575+
git_diff_free(diff);
576+
}

0 commit comments

Comments
 (0)