diff options
author | Russell Belfer <rb@github.com> | 2012-05-08 13:56:21 -0700 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2012-05-08 13:56:21 -0700 |
commit | 364f51bdca8cd5bb11bb322f8cac1b0d7dfcf686 (patch) | |
tree | 03cb3fc3d8ecca69cfdda7d60fcc551955028dfd /tests-clar/diff/blob.c | |
parent | 1f796cd1807180bbf20d094954fd7909c6ef1ac7 (diff) | |
parent | d1c4312a021eb165d21b7390607f2b2bcba098ae (diff) | |
download | libgit2-364f51bdca8cd5bb11bb322f8cac1b0d7dfcf686.tar.gz |
Merge pull request #668 from nulltoken/topic/binary-blobs
Enhancing the blob diffing experience
Diffstat (limited to 'tests-clar/diff/blob.c')
-rw-r--r-- | tests-clar/diff/blob.c | 199 |
1 files changed, 181 insertions, 18 deletions
diff --git a/tests-clar/diff/blob.c b/tests-clar/diff/blob.c index ed1f14a07..cceb00d25 100644 --- a/tests-clar/diff/blob.c +++ b/tests-clar/diff/blob.c @@ -2,23 +2,43 @@ #include "diff_helpers.h" static git_repository *g_repo = NULL; +static diff_expects exp; +static git_diff_options opts; +static git_blob *d, *alien; void test_diff_blob__initialize(void) { + git_oid oid; + g_repo = cl_git_sandbox_init("attr"); + + memset(&opts, 0, sizeof(opts)); + opts.context_lines = 1; + opts.interhunk_lines = 1; + + memset(&exp, 0, sizeof(exp)); + + /* tests/resources/attr/root_test4.txt */ + cl_git_pass(git_oid_fromstrn(&oid, "fe773770c5a6", 12)); + cl_git_pass(git_blob_lookup_prefix(&d, g_repo, &oid, 6)); + + /* alien.png */ + cl_git_pass(git_oid_fromstrn(&oid, "edf3dcee", 8)); + cl_git_pass(git_blob_lookup_prefix(&alien, g_repo, &oid, 4)); } void test_diff_blob__cleanup(void) { + git_blob_free(d); + git_blob_free(alien); + cl_git_sandbox_cleanup(); } -void test_diff_blob__0(void) +void test_diff_blob__can_compare_text_blobs(void) { - git_blob *a, *b, *c, *d; - git_oid a_oid, b_oid, c_oid, d_oid; - git_diff_options opts = {0}; - diff_expects exp; + git_blob *a, *b, *c; + git_oid a_oid, b_oid, c_oid; /* tests/resources/attr/root_test1 */ cl_git_pass(git_oid_fromstrn(&a_oid, "45141a79", 8)); @@ -32,18 +52,14 @@ void test_diff_blob__0(void) cl_git_pass(git_oid_fromstrn(&c_oid, "c96bbb2c2557a832", 16)); cl_git_pass(git_blob_lookup_prefix(&c, g_repo, &c_oid, 8)); - /* tests/resources/attr/root_test4.txt */ - cl_git_pass(git_oid_fromstrn(&d_oid, "fe773770c5a6", 12)); - cl_git_pass(git_blob_lookup_prefix(&d, g_repo, &d_oid, 6)); - /* Doing the equivalent of a `git diff -U1` on these files */ - opts.context_lines = 1; - opts.interhunk_lines = 1; - - memset(&exp, 0, sizeof(exp)); cl_git_pass(git_diff_blobs( - a, b, &opts, &exp, diff_hunk_fn, diff_line_fn)); + a, b, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + cl_assert(exp.files == 1); + cl_assert(exp.file_mods == 1); + cl_assert(exp.at_least_one_of_them_is_binary == false); cl_assert(exp.hunks == 1); cl_assert(exp.lines == 6); @@ -53,7 +69,11 @@ void test_diff_blob__0(void) memset(&exp, 0, sizeof(exp)); cl_git_pass(git_diff_blobs( - b, c, &opts, &exp, diff_hunk_fn, diff_line_fn)); + b, c, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + cl_assert(exp.files == 1); + cl_assert(exp.file_mods == 1); + cl_assert(exp.at_least_one_of_them_is_binary == false); cl_assert(exp.hunks == 1); cl_assert(exp.lines == 15); @@ -63,7 +83,11 @@ void test_diff_blob__0(void) memset(&exp, 0, sizeof(exp)); cl_git_pass(git_diff_blobs( - a, c, &opts, &exp, diff_hunk_fn, diff_line_fn)); + a, c, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + cl_assert(exp.files == 1); + cl_assert(exp.file_mods == 1); + cl_assert(exp.at_least_one_of_them_is_binary == false); cl_assert(exp.hunks == 1); cl_assert(exp.lines == 13); @@ -75,7 +99,11 @@ void test_diff_blob__0(void) memset(&exp, 0, sizeof(exp)); cl_git_pass(git_diff_blobs( - c, d, &opts, &exp, diff_hunk_fn, diff_line_fn)); + c, d, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + cl_assert(exp.files == 1); + cl_assert(exp.file_mods == 1); + cl_assert(exp.at_least_one_of_them_is_binary == false); cl_assert(exp.hunks == 2); cl_assert(exp.lines == 14); @@ -86,6 +114,141 @@ void test_diff_blob__0(void) git_blob_free(a); git_blob_free(b); git_blob_free(c); - git_blob_free(d); } +void test_diff_blob__can_compare_against_null_blobs(void) +{ + git_blob *e = NULL; + + cl_git_pass(git_diff_blobs( + d, e, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + cl_assert(exp.files == 1); + cl_assert(exp.file_dels == 1); + cl_assert(exp.at_least_one_of_them_is_binary == false); + + cl_assert(exp.hunks == 1); + cl_assert(exp.hunk_old_lines == 14); + cl_assert(exp.lines == 14); + cl_assert(exp.line_dels == 14); + + opts.flags |= GIT_DIFF_REVERSE; + memset(&exp, 0, sizeof(exp)); + + cl_git_pass(git_diff_blobs( + d, e, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + cl_assert(exp.files == 1); + cl_assert(exp.file_adds == 1); + cl_assert(exp.at_least_one_of_them_is_binary == false); + + cl_assert(exp.hunks == 1); + cl_assert(exp.hunk_new_lines == 14); + cl_assert(exp.lines == 14); + cl_assert(exp.line_adds == 14); + + opts.flags ^= GIT_DIFF_REVERSE; + memset(&exp, 0, sizeof(exp)); + + cl_git_pass(git_diff_blobs( + alien, NULL, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + cl_assert(exp.at_least_one_of_them_is_binary == true); + + cl_assert(exp.files == 1); + cl_assert(exp.file_dels == 1); + cl_assert(exp.hunks == 0); + cl_assert(exp.lines == 0); + + memset(&exp, 0, sizeof(exp)); + + cl_git_pass(git_diff_blobs( + NULL, alien, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + cl_assert(exp.at_least_one_of_them_is_binary == true); + + cl_assert(exp.files == 1); + cl_assert(exp.file_adds == 1); + cl_assert(exp.hunks == 0); + cl_assert(exp.lines == 0); +} + +void assert_identical_blobs_comparison(diff_expects exp) +{ + cl_assert(exp.files == 1); + cl_assert(exp.file_unmodified == 1); + cl_assert(exp.hunks == 0); + cl_assert(exp.lines == 0); +} + +void test_diff_blob__can_compare_identical_blobs(void) +{ + cl_git_pass(git_diff_blobs( + d, d, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + cl_assert(exp.at_least_one_of_them_is_binary == false); + assert_identical_blobs_comparison(exp); + + memset(&exp, 0, sizeof(exp)); + cl_git_pass(git_diff_blobs( + NULL, NULL, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + cl_assert(exp.at_least_one_of_them_is_binary == false); + assert_identical_blobs_comparison(exp); + + memset(&exp, 0, sizeof(exp)); + cl_git_pass(git_diff_blobs( + alien, alien, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + cl_assert(exp.at_least_one_of_them_is_binary == true); + assert_identical_blobs_comparison(exp); +} + +void assert_binary_blobs_comparison(diff_expects exp) +{ + cl_assert(exp.at_least_one_of_them_is_binary == true); + + cl_assert(exp.files == 1); + cl_assert(exp.file_mods == 1); + cl_assert(exp.hunks == 0); + cl_assert(exp.lines == 0); +} + +void test_diff_blob__can_compare_two_binary_blobs(void) +{ + git_blob *heart; + git_oid h_oid; + + /* heart.png */ + cl_git_pass(git_oid_fromstrn(&h_oid, "de863bff", 8)); + cl_git_pass(git_blob_lookup_prefix(&heart, g_repo, &h_oid, 4)); + + cl_git_pass(git_diff_blobs( + alien, heart, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + assert_binary_blobs_comparison(exp); + + memset(&exp, 0, sizeof(exp)); + + cl_git_pass(git_diff_blobs( + heart, alien, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + assert_binary_blobs_comparison(exp); + + git_blob_free(heart); +} + +void test_diff_blob__can_compare_a_binary_blob_and_a_text_blob(void) +{ + cl_git_pass(git_diff_blobs( + alien, d, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + assert_binary_blobs_comparison(exp); + + memset(&exp, 0, sizeof(exp)); + + cl_git_pass(git_diff_blobs( + d, alien, &opts, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn)); + + assert_binary_blobs_comparison(exp); +} |