empty.c 2.45 KB
Newer Older
1 2 3 4 5 6 7
#include "clar_libgit2.h"

#include "git2/clone.h"
#include "repository.h"

static git_clone_options g_options;
static git_repository *g_repo;
8
static git_repository *g_repo_cloned;
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

void test_clone_empty__initialize(void)
{
	git_repository *sandbox = cl_git_sandbox_init("empty_bare.git");
	cl_git_remove_placeholders(git_repository_path(sandbox), "dummy-marker.txt");

	g_repo = NULL;

	memset(&g_options, 0, sizeof(git_clone_options));
	g_options.version = GIT_CLONE_OPTIONS_VERSION;
}

void test_clone_empty__cleanup(void)
{
	cl_git_sandbox_cleanup();
}

static void cleanup_repository(void *path)
{
	cl_fixture_cleanup((const char *)path);
29 30 31

	git_repository_free(g_repo_cloned);
	g_repo_cloned = NULL;
32 33 34 35
}

void test_clone_empty__can_clone_an_empty_local_repo_barely(void)
{
36
	char *local_name = "refs/heads/master";
37 38 39
	const char *expected_tracked_branch_name = "refs/remotes/origin/master";
	const char *expected_remote_name = "origin";
	char buffer[1024];
40 41
	git_reference *ref;

42 43 44
	cl_set_cleanup(&cleanup_repository, "./empty");

	g_options.bare = true;
45
	cl_git_pass(git_clone(&g_repo_cloned, "./empty_bare.git", "./empty", &g_options));
46

47
	/* Although the HEAD is unborn... */
48 49 50
	cl_assert_equal_i(GIT_ENOTFOUND, git_reference_lookup(&ref, g_repo_cloned, local_name));

	/* ...one can still retrieve the name of the remote tracking reference */
nulltoken committed
51
	cl_assert_equal_i((int)strlen(expected_tracked_branch_name) + 1,
52
		git_branch_upstream_name(buffer, 1024, g_repo_cloned, local_name));
53 54 55 56

	cl_assert_equal_s(expected_tracked_branch_name, buffer);

	/* ...and the name of the remote... */
nulltoken committed
57
	cl_assert_equal_i((int)strlen(expected_remote_name) + 1,
58 59 60 61
		git_branch_remote_name(buffer, 1024, g_repo_cloned, expected_tracked_branch_name));

	cl_assert_equal_s(expected_remote_name, buffer);

62
	/* ...even when the remote HEAD is unborn as well */
63 64
	cl_assert_equal_i(GIT_ENOTFOUND, git_reference_lookup(&ref, g_repo_cloned,
		expected_tracked_branch_name));
65 66 67 68 69 70
}

void test_clone_empty__can_clone_an_empty_local_repo(void)
{
	cl_set_cleanup(&cleanup_repository, "./empty");

71
	cl_git_pass(git_clone(&g_repo_cloned, "./empty_bare.git", "./empty", &g_options));
72 73 74 75 76 77 78 79 80 81
}

void test_clone_empty__can_clone_an_empty_standard_repo(void)
{
	cl_git_sandbox_cleanup();
	g_repo = cl_git_sandbox_init("empty_standard_repo");
	cl_git_remove_placeholders(git_repository_path(g_repo), "dummy-marker.txt");

	cl_set_cleanup(&cleanup_repository, "./empty");

82
	cl_git_pass(git_clone(&g_repo_cloned, "./empty_standard_repo", "./empty", &g_options));
83
}