From 30c06b601eaf9b87975a3731ad1051d74b1ae73d Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 22 Mar 2019 23:56:10 -0400 Subject: patch_parse.c: Handle CRLF in parse_header_start --- tests/diff/parse.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'tests/diff/parse.c') diff --git a/tests/diff/parse.c b/tests/diff/parse.c index 7cc468245..a067861de 100644 --- a/tests/diff/parse.c +++ b/tests/diff/parse.c @@ -360,6 +360,7 @@ void test_diff_parse__lineinfo(void) git_diff_free(diff); } + void test_diff_parse__new_file_with_space(void) { const char *content = PATCH_ORIGINAL_NEW_FILE_WITH_SPACE; @@ -377,3 +378,21 @@ void test_diff_parse__new_file_with_space(void) git_patch_free(patch); git_diff_free(diff); } + +void test_diff_parse__crlf(void) +{ + const char *text = PATCH_CRLF; + git_diff *diff; + git_patch *patch; + const git_diff_delta *delta; + + cl_git_pass(git_diff_from_buffer(&diff, text, strlen(text))); + cl_git_pass(git_patch_from_diff(&patch, diff, 0)); + delta = git_patch_get_delta(patch); + + cl_assert_equal_s(delta->old_file.path, "test-file"); + cl_assert_equal_s(delta->new_file.path, "test-file"); + + git_patch_free(patch); + git_diff_free(diff); +} -- cgit v1.2.1