pathspec.c 3.05 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#include "clar_libgit2.h"
#include "diff_helpers.h"

static git_repository *g_repo = NULL;

void test_diff_pathspec__initialize(void)
{
	g_repo = cl_git_sandbox_init("status");
}

void test_diff_pathspec__cleanup(void)
{
	cl_git_sandbox_cleanup();
}

void test_diff_pathspec__0(void)
{
	const char *a_commit = "26a125ee"; /* the current HEAD */
	const char *b_commit = "0017bd4a"; /* the start */
	git_tree *a = resolve_commit_oid_to_tree(g_repo, a_commit);
	git_tree *b = resolve_commit_oid_to_tree(g_repo, b_commit);
	git_diff_options opts = GIT_DIFF_OPTIONS_INIT;
23
	git_diff *diff = NULL;
24 25 26 27 28 29 30 31 32 33 34 35 36
	git_strarray paths = { NULL, 1 };
	char *path;
	git_pathspec *ps;
	git_pathspec_match_list *matches;

	cl_assert(a);
	cl_assert(b);

	path = "*_file";
	paths.strings = &path;
	cl_git_pass(git_pathspec_new(&ps, &paths));

	cl_git_pass(git_pathspec_match_tree(&matches, a, GIT_PATHSPEC_DEFAULT, ps));
Russell Belfer committed
37
	cl_assert_equal_i(7, (int)git_pathspec_match_list_entrycount(matches));
38 39 40 41 42 43 44 45
	cl_assert_equal_s("current_file", git_pathspec_match_list_entry(matches,0));
	cl_assert(git_pathspec_match_list_diff_entry(matches,0) == NULL);
	git_pathspec_match_list_free(matches);

	cl_git_pass(git_diff_tree_to_tree(&diff, g_repo, NULL, a, &opts));

	cl_git_pass(git_pathspec_match_diff(
		&matches, diff, GIT_PATHSPEC_DEFAULT, ps));
Russell Belfer committed
46
	cl_assert_equal_i(7, (int)git_pathspec_match_list_entrycount(matches));
47 48 49 50 51
	cl_assert(git_pathspec_match_list_diff_entry(matches, 0) != NULL);
	cl_assert(git_pathspec_match_list_entry(matches, 0) == NULL);
	cl_assert_equal_s("current_file",
		git_pathspec_match_list_diff_entry(matches,0)->new_file.path);
	cl_assert_equal_i(GIT_DELTA_ADDED,
Russell Belfer committed
52
		(int)git_pathspec_match_list_diff_entry(matches,0)->status);
53 54
	git_pathspec_match_list_free(matches);

55
	git_diff_free(diff);
56 57 58 59 60 61
	diff = NULL;

	cl_git_pass(git_diff_tree_to_tree(&diff, g_repo, a, b, &opts));

	cl_git_pass(git_pathspec_match_diff(
		&matches, diff, GIT_PATHSPEC_DEFAULT, ps));
Russell Belfer committed
62
	cl_assert_equal_i(3, (int)git_pathspec_match_list_entrycount(matches));
63 64 65 66 67
	cl_assert(git_pathspec_match_list_diff_entry(matches, 0) != NULL);
	cl_assert(git_pathspec_match_list_entry(matches, 0) == NULL);
	cl_assert_equal_s("subdir/current_file",
		git_pathspec_match_list_diff_entry(matches,0)->new_file.path);
	cl_assert_equal_i(GIT_DELTA_DELETED,
Russell Belfer committed
68
		(int)git_pathspec_match_list_diff_entry(matches,0)->status);
69 70
	git_pathspec_match_list_free(matches);

71
	git_diff_free(diff);
72 73 74 75 76 77
	diff = NULL;

	cl_git_pass(git_diff_tree_to_workdir(&diff, g_repo, a, &opts));

	cl_git_pass(git_pathspec_match_diff(
		&matches, diff, GIT_PATHSPEC_DEFAULT, ps));
Russell Belfer committed
78
	cl_assert_equal_i(4, (int)git_pathspec_match_list_entrycount(matches));
79 80 81 82 83
	cl_assert(git_pathspec_match_list_diff_entry(matches, 0) != NULL);
	cl_assert(git_pathspec_match_list_entry(matches, 0) == NULL);
	cl_assert_equal_s("modified_file",
		git_pathspec_match_list_diff_entry(matches,0)->new_file.path);
	cl_assert_equal_i(GIT_DELTA_MODIFIED,
Russell Belfer committed
84
		(int)git_pathspec_match_list_diff_entry(matches,0)->status);
85 86
	git_pathspec_match_list_free(matches);

87
	git_diff_free(diff);
88 89 90 91
	diff = NULL;

	git_tree_free(a);
	git_tree_free(b);
nulltoken committed
92
	git_pathspec_free(ps);
93
}