diff_file: test workdir file becomes empty after obtaining a diff
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
diff --git a/tests/diff/externalmodifications.c b/tests/diff/externalmodifications.c
index d18e1fe..09687c5 100644
--- a/tests/diff/externalmodifications.c
+++ b/tests/diff/externalmodifications.c
@@ -51,6 +51,35 @@ void test_diff_externalmodifications__file_becomes_smaller(void)
git_str_dispose(&path);
}
+void test_diff_externalmodifications__file_becomes_empty(void)
+{
+ git_index *index;
+ git_diff *diff;
+ git_patch* patch;
+ git_str path = GIT_STR_INIT;
+
+ cl_git_pass(git_str_joinpath(&path, git_repository_workdir(g_repo), "README"));
+
+ /* Modify the file */
+ cl_git_mkfile(path.ptr, "hello");
+
+ /* Get a diff */
+ cl_git_pass(git_repository_index(&index, g_repo));
+ cl_git_pass(git_diff_index_to_workdir(&diff, g_repo, index, NULL));
+ cl_assert_equal_i(1, git_diff_num_deltas(diff));
+ cl_assert_equal_i(5, git_diff_get_delta(diff, 0)->new_file.size);
+
+ /* Empty out the file after we've gotten the diff */
+ cl_git_mkfile(path.ptr, "");
+
+ /* Attempt to get a patch */
+ cl_git_fail(git_patch_from_diff(&patch, diff, 0));
+
+ git_index_free(index);
+ git_diff_free(diff);
+ git_str_dispose(&path);
+}
+
void test_diff_externalmodifications__file_deleted(void)
{
git_index *index;