Skip to content

Commit 6b1f6e0

Browse files
committed
diff: test ignore-blank-lines
1 parent ed94f54 commit 6b1f6e0

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

tests/diff/workdir.c

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2203,3 +2203,38 @@ void test_diff_workdir__order(void)
22032203
git_diff_free(diff);
22042204
git_tree_free(tree);
22052205
}
2206+
2207+
void test_diff_workdir__ignore_blank_lines(void)
2208+
{
2209+
git_diff_options opts = GIT_DIFF_OPTIONS_INIT;
2210+
git_diff *diff;
2211+
git_patch *patch;
2212+
git_buf buf = GIT_BUF_INIT;
2213+
2214+
g_repo = cl_git_sandbox_init("rebase");
2215+
cl_git_rewritefile("rebase/gravy.txt", "GRAVY SOUP.\n\n\nGet eight pounds of coarse lean beef--wash it clean and lay it in your\n\npot, put in the same ingredients as for the shin soup, with the same\nquantity of water, and follow the process directed for that. Strain the\nsoup through a sieve, and serve it up clear, with nothing more than\ntoasted bread in it; two table-spoonsful of mushroom catsup will add a\nfine flavour to the soup!\n");
2216+
2217+
/* Perform the diff normally */
2218+
cl_git_pass(git_diff_index_to_workdir(&diff, g_repo, NULL, &opts));
2219+
cl_git_pass(git_patch_from_diff(&patch, diff, 0));
2220+
cl_git_pass(git_patch_to_buf(&buf, patch));
2221+
2222+
cl_assert_equal_s("diff --git a/gravy.txt b/gravy.txt\nindex c4e6cca..3c617e6 100644\n--- a/gravy.txt\n+++ b/gravy.txt\n@@ -1,8 +1,10 @@\n GRAVY SOUP.\n \n+\n Get eight pounds of coarse lean beef--wash it clean and lay it in your\n+\n pot, put in the same ingredients as for the shin soup, with the same\n quantity of water, and follow the process directed for that. Strain the\n soup through a sieve, and serve it up clear, with nothing more than\n toasted bread in it; two table-spoonsful of mushroom catsup will add a\n-fine flavour to the soup.\n+fine flavour to the soup!\n", buf.ptr);
2223+
2224+
git_buf_dispose(&buf);
2225+
git_patch_free(patch);
2226+
git_diff_free(diff);
2227+
2228+
/* Perform the diff ignoring blank lines */
2229+
opts.flags |= GIT_DIFF_IGNORE_BLANK_LINES;
2230+
2231+
cl_git_pass(git_diff_index_to_workdir(&diff, g_repo, NULL, &opts));
2232+
cl_git_pass(git_patch_from_diff(&patch, diff, 0));
2233+
cl_git_pass(git_patch_to_buf(&buf, patch));
2234+
2235+
cl_assert_equal_s("diff --git a/gravy.txt b/gravy.txt\nindex c4e6cca..3c617e6 100644\n--- a/gravy.txt\n+++ b/gravy.txt\n@@ -5,4 +7,4 @@ pot, put in the same ingredients as for the shin soup, with the same\n quantity of water, and follow the process directed for that. Strain the\n soup through a sieve, and serve it up clear, with nothing more than\n toasted bread in it; two table-spoonsful of mushroom catsup will add a\n-fine flavour to the soup.\n+fine flavour to the soup!\n", buf.ptr);
2236+
2237+
git_buf_dispose(&buf);
2238+
git_patch_free(patch);
2239+
git_diff_free(diff);
2240+
}

0 commit comments

Comments
 (0)