Skip to content

Commit 07e71bf

Browse files
committed
apply: test multiple deltas to new file
1 parent df4258a commit 07e71bf

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

tests/apply/apply_helpers.h

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,23 @@
277277
"-and serve it up.\n" \
278278
"+and serve it up!\n"
279279

280+
#define DIFF_TWO_DELTAS_ONE_NEW_FILE \
281+
"diff --git a/newfile.txt b/newfile.txt\n" \
282+
"new file mode 100644\n" \
283+
"index 0000000..6434b13\n" \
284+
"--- /dev/null\n" \
285+
"+++ b/newfile.txt\n" \
286+
"@@ -0,0 +1 @@\n" \
287+
"+This is a new file.\n" \
288+
"diff --git a/newfile.txt b/newfile.txt\n" \
289+
"index 6434b13..08d4c44 100644\n" \
290+
"--- a/newfile.txt\n" \
291+
"+++ b/newfile.txt\n" \
292+
"@@ -1 +1,3 @@\n" \
293+
" This is a new file.\n" \
294+
"+\n" \
295+
"+This is another change to a new file.\n"
296+
280297
struct iterator_compare_data {
281298
struct merge_index_entry *expected;
282299
size_t cnt;

tests/apply/both.c

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -599,3 +599,29 @@ void test_apply_both__two_deltas_one_file(void)
599599

600600
git_diff_free(diff);
601601
}
602+
603+
void test_apply_both__two_deltas_one_new_file(void)
604+
{
605+
git_diff *diff;
606+
607+
struct merge_index_entry both_expected[] = {
608+
{ 0100644, "f51658077d85f2264fa179b4d0848268cb3475c3", 0, "asparagus.txt" },
609+
{ 0100644, "68f6182f4c85d39e1309d97c7e456156dc9c0096", 0, "beef.txt" },
610+
{ 0100644, "4b7c5650008b2e747fe1809eeb5a1dde0e80850a", 0, "bouilli.txt" },
611+
{ 0100644, "c4e6cca3ec6ae0148ed231f97257df8c311e015f", 0, "gravy.txt" },
612+
{ 0100644, "08d4c445cf0078f3d9b604b82f32f4d87e083325", 0, "newfile.txt" },
613+
{ 0100644, "68af1fc7407fd9addf1701a87eb1c95c7494c598", 0, "oyster.txt" },
614+
{ 0100644, "94d2c01087f48213bd157222d54edfefd77c9bba", 0, "veal.txt" }
615+
};
616+
size_t both_expected_cnt = sizeof(both_expected) /
617+
sizeof(struct merge_index_entry);
618+
619+
cl_git_pass(git_diff_from_buffer(&diff, DIFF_TWO_DELTAS_ONE_NEW_FILE,
620+
strlen(DIFF_TWO_DELTAS_ONE_NEW_FILE)));
621+
cl_git_pass(git_apply(repo, diff, GIT_APPLY_LOCATION_BOTH, NULL));
622+
623+
validate_apply_index(repo, both_expected, both_expected_cnt);
624+
validate_apply_workdir(repo, both_expected, both_expected_cnt);
625+
626+
git_diff_free(diff);
627+
}

0 commit comments

Comments
 (0)