Welcome to mirror list, hosted at ThFree Co, Russian Federation.

listall.c « branches « refs « tests-clar - github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a5634fb475795eed7f381019ade873330833f29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include "clar_libgit2.h"
#include "refs.h"
#include "branch.h"

static git_repository *repo;
static git_strarray branch_list;
static git_reference *fake_remote;

void test_refs_branches_listall__initialize(void)
{
	git_oid id;

	cl_fixture_sandbox("testrepo.git");
	cl_git_pass(git_repository_open(&repo, "testrepo.git"));

	cl_git_pass(git_oid_fromstr(&id, "be3563ae3f795b2b4353bcce3a527ad0a4f7f644"));
	cl_git_pass(git_reference_create_oid(&fake_remote, repo, "refs/remotes/nulltoken/master", &id, 0));
}

void test_refs_branches_listall__cleanup(void)
{
	git_strarray_free(&branch_list);
	git_reference_free(fake_remote);
	git_repository_free(repo);

	cl_fixture_cleanup("testrepo.git");
}

static void assert_retrieval(unsigned int flags, unsigned int expected_count)
{
	cl_git_pass(git_branch_list(&branch_list, repo, flags));

	cl_assert_equal_i(expected_count, branch_list.count);
}

void test_refs_branches_listall__retrieve_all_branches(void)
{
	assert_retrieval(GIT_BRANCH_LOCAL | GIT_BRANCH_REMOTE, 6 + 1);
}

void test_refs_branches_listall__retrieve_remote_branches(void)
{
	assert_retrieval(GIT_BRANCH_REMOTE, 1);
}

void test_refs_branches_listall__retrieve_local_branches(void)
{
	assert_retrieval(GIT_BRANCH_LOCAL, 6);
}

static void assert_branch_list_contains(git_strarray *branches, const char* expected_branch_name)
{
	unsigned int i;

	for (i = 0; i < branches->count; i++) {
		if (strcmp(expected_branch_name, branches->strings[i]) == 0)
			return;
	}

	cl_fail("expected branch not found in list.");
}

/*
 * $ git branch -r
 *  nulltoken/HEAD -> nulltoken/master
 *  nulltoken/master
 */
void test_refs_branches_listall__retrieve_remote_symbolic_HEAD_when_present(void)
{
	git_reference_free(fake_remote);
	cl_git_pass(git_reference_create_symbolic(&fake_remote, repo, "refs/remotes/nulltoken/HEAD", "refs/remotes/nulltoken/master", 0));

	cl_git_pass(git_branch_list(&branch_list, repo, GIT_BRANCH_REMOTE));
	
	cl_assert_equal_i(2, branch_list.count);
	assert_branch_list_contains(&branch_list, "refs/remotes/nulltoken/HEAD");
	assert_branch_list_contains(&branch_list, "refs/remotes/nulltoken/master");
}