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

move.c « branches « refs « tests-clar - github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 242e5cd01877931493b2f5fb0ae10822bbb78ece (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
#include "clar_libgit2.h"
#include "branch.h"

static git_repository *repo;

void test_refs_branches_move__initialize(void)
{
	cl_fixture_sandbox("testrepo.git");
	cl_git_pass(git_repository_open(&repo, "testrepo.git"));
}

void test_refs_branches_move__cleanup(void)
{
	git_repository_free(repo);

	cl_fixture_cleanup("testrepo.git");
}

#define NEW_BRANCH_NAME "new-branch-on-the-block"

void test_refs_branches_move__can_move_a_local_branch(void)
{
	cl_git_pass(git_branch_move(repo, "br2", NEW_BRANCH_NAME, 0));
}

void test_refs_branches_move__can_move_a_local_branch_to_a_different_namespace(void)
{
	/* Downward */
	cl_git_pass(git_branch_move(repo, "br2", "somewhere/" NEW_BRANCH_NAME, 0));

	/* Upward */
	cl_git_pass(git_branch_move(repo, "somewhere/" NEW_BRANCH_NAME, "br2", 0));
}

void test_refs_branches_move__can_move_a_local_branch_to_a_partially_colliding_namespace(void)
{
	/* Downward */
	cl_git_pass(git_branch_move(repo, "br2", "br2/" NEW_BRANCH_NAME, 0));

	/* Upward */
	cl_git_pass(git_branch_move(repo, "br2/" NEW_BRANCH_NAME, "br2", 0));
}

void test_refs_branches_move__can_not_move_a_branch_if_its_destination_name_collide_with_an_existing_one(void)
{
	cl_git_fail(git_branch_move(repo, "br2", "master", 0));
}

void test_refs_branches_move__can_not_move_a_non_existing_branch(void)
{
	cl_git_fail(git_branch_move(repo, "i-am-no-branch", NEW_BRANCH_NAME, 0));
}

void test_refs_branches_move__can_force_move_over_an_existing_branch(void)
{
	cl_git_pass(git_branch_move(repo, "br2", "master", 1));
}

void test_refs_branches_move__can_not_move_a_branch_through_its_canonical_name(void)
{
	cl_git_fail(git_branch_move(repo, "refs/heads/br2", NEW_BRANCH_NAME, 1));
}

void test_refs_branches_move__moving_a_non_exisiting_branch_returns_ENOTFOUND(void)
{
	int error;

	error = git_branch_move(repo, "where/am/I", NEW_BRANCH_NAME, 0);
	cl_git_fail(error);

	cl_assert_equal_i(GIT_ENOTFOUND, error);
}