summaryrefslogtreecommitdiff
path: root/tests-clar/diff/blob.c
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2012-05-03 17:19:06 +0200
committernulltoken <emeric.fermas@gmail.com>2012-05-07 12:18:31 +0200
commit4f80676182dfd93992cc701072a71651dd5613ee (patch)
tree264f3a424a0a33586ad3ef6c8a0fdaa65d3d9096 /tests-clar/diff/blob.c
parent245c5eaec553ca1793b2a83c288fd2595f70c6a5 (diff)
downloadlibgit2-4f80676182dfd93992cc701072a71651dd5613ee.tar.gz
diff: fix the diffing of a concrete blob against a null one
Diffstat (limited to 'tests-clar/diff/blob.c')
-rw-r--r--tests-clar/diff/blob.c55
1 files changed, 42 insertions, 13 deletions
diff --git a/tests-clar/diff/blob.c b/tests-clar/diff/blob.c
index 65b35000..9364bdc6 100644
--- a/tests-clar/diff/blob.c
+++ b/tests-clar/diff/blob.c
@@ -2,23 +2,38 @@
#include "diff_helpers.h"
static git_repository *g_repo = NULL;
+static diff_expects exp;
+static git_diff_options opts;
+static git_blob *d;
void test_diff_blob__initialize(void)
{
+ git_oid d_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(&d_oid, "fe773770c5a6", 12));
+ cl_git_pass(git_blob_lookup_prefix(&d, g_repo, &d_oid, 6));
}
void test_diff_blob__cleanup(void)
{
+ git_blob_free(d);
+
cl_git_sandbox_cleanup();
}
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,16 +47,8 @@ void test_diff_blob__can_compare_text_blobs(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));
@@ -86,6 +93,28 @@ void test_diff_blob__can_compare_text_blobs(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_hunk_fn, diff_line_fn));
+
+ 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_hunk_fn, diff_line_fn));
+
+ cl_assert(exp.hunks == 1);
+ cl_assert(exp.hunk_new_lines == 14);
+ cl_assert(exp.lines == 14);
+ cl_assert(exp.line_adds == 14);
+}