apply: test `git_apply` with a parsed patch Ensure that we can apply a simple patch to the working directory when we have parsed it from a patch file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
diff --git a/tests/apply/workdir.c b/tests/apply/workdir.c
index 178e896..740f2e3 100644
--- a/tests/apply/workdir.c
+++ b/tests/apply/workdir.c
@@ -122,3 +122,52 @@ void test_apply_workdir__generated_diff(void)
git_commit_free(a_commit);
git_commit_free(b_commit);
}
+
+void test_apply_workdir__parsed_diff(void)
+{
+ git_oid oid;
+ git_commit *commit;
+ git_diff *diff;
+
+ const char *diff_file =
+ "diff --git a/asparagus.txt b/asparagus.txt\n"
+ "index f516580..ffb36e5 100644\n"
+ "--- a/asparagus.txt\n"
+ "+++ b/asparagus.txt\n"
+ "@@ -1 +1 @@\n"
+ "-ASPARAGUS SOUP!\n"
+ "+ASPARAGUS SOUP.\n"
+ "diff --git a/veal.txt b/veal.txt\n"
+ "index 94d2c01..a7b0665 100644\n"
+ "--- a/veal.txt\n"
+ "+++ b/veal.txt\n"
+ "@@ -1 +1 @@\n"
+ "-VEAL SOUP!\n"
+ "+VEAL SOUP.\n"
+ "@@ -7 +7 @@ occasionally, then put into it a shin of veal, let it boil two hours\n"
+ "-longer. take out the slices of ham, and skim off the grease if any\n"
+ "+longer; take out the slices of ham, and skim off the grease if any\n";
+
+ struct merge_index_entry expected[] = {
+ { 0100644, "ffb36e513f5fdf8a6ba850a20142676a2ac4807d", 0, "asparagus.txt" },
+ { 0100644, "68f6182f4c85d39e1309d97c7e456156dc9c0096", 0, "beef.txt" },
+ { 0100644, "4b7c5650008b2e747fe1809eeb5a1dde0e80850a", 0, "bouilli.txt" },
+ { 0100644, "c4e6cca3ec6ae0148ed231f97257df8c311e015f", 0, "gravy.txt" },
+ { 0100644, "68af1fc7407fd9addf1701a87eb1c95c7494c598", 0, "oyster.txt" },
+ { 0100644, "a7b066537e6be7109abfe4ff97b675d4e077da20", 0, "veal.txt" },
+ };
+ size_t expected_cnt = sizeof(expected) / sizeof(struct merge_index_entry);
+
+ git_oid_fromstr(&oid, "539bd011c4822c560c1d17cab095006b7a10f707");
+ cl_git_pass(git_commit_lookup(&commit, repo, &oid));
+
+ cl_git_pass(git_diff_from_buffer(&diff, diff_file, strlen(diff_file)));
+
+ cl_git_pass(git_reset(repo, (git_object *)commit, GIT_RESET_HARD, NULL));
+ cl_git_pass(git_apply(repo, diff, NULL));
+
+ validate_apply_workdir(repo, expected, expected_cnt);
+
+ git_diff_free(diff);
+ git_commit_free(commit);
+}