summaryrefslogtreecommitdiff
path: root/tests/clone/shallow.c
blob: b3e8f161716e31d0fa3aa83414d68126d3f40859 (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
#include "clar_libgit2.h"
#include "futils.h"
#include "repository.h"

void test_clone_shallow__initialize(void)
{

}

void test_clone_shallow__cleanup(void)
{
	cl_git_sandbox_cleanup();
}


#define CLONE_DEPTH 5

static int remote_single_branch(git_remote **out, git_repository *repo, const char *name, const char *url, void *payload)
{
	GIT_UNUSED(payload);

	cl_git_pass(git_remote_create_with_fetchspec(out, repo, name, url, "+refs/heads/master:refs/remotes/origin/master"));

	return 0;
}

void test_clone_shallow__clone_depth(void)
{
	git_buf path = GIT_BUF_INIT;
	git_repository *repo;
	git_revwalk *walk;
	git_clone_options clone_opts = GIT_CLONE_OPTIONS_INIT;
	git_oid oid;
	git_oidarray roots;
	size_t depth = 0;
	int error = 0;

	clone_opts.fetch_opts.depth = CLONE_DEPTH;
	clone_opts.remote_cb = remote_single_branch;

	git_buf_joinpath(&path, clar_sandbox_path(), "shallowclone");

	cl_git_pass(git_clone(&repo, "https://github.com/libgit2/TestGitRepository", git_buf_cstr(&path), &clone_opts));

	cl_assert_equal_b(true, git_repository_is_shallow(repo));

	cl_git_pass(git_repository_shallow_roots(&roots, repo));
	cl_assert_equal_i(3, roots.count);
	cl_assert_equal_s("c070ad8c08840c8116da865b2d65593a6bb9cd2a", git_oid_tostr_s(&roots.ids[0]));
	cl_assert_equal_s("0966a434eb1a025db6b71485ab63a3bfbea520b6", git_oid_tostr_s(&roots.ids[1]));
	cl_assert_equal_s("83834a7afdaa1a1260568567f6ad90020389f664", git_oid_tostr_s(&roots.ids[2]));

	git_revwalk_new(&walk, repo);

	git_revwalk_push_head(walk);

	while ((error = git_revwalk_next(&oid, walk)) == GIT_OK) {
		if (depth + 1 > CLONE_DEPTH)
			cl_fail("expected depth mismatch");
	}

	cl_git_pass(error);

	git_buf_dispose(&path);
	git_revwalk_free(walk);
	git_repository_free(repo);
}