commitgraph.c 4.94 KB
Newer Older
1 2 3
#include "clar_libgit2.h"

#include <git2.h>
4
#include <git2/sys/commit_graph.h>
5 6

#include "commit_graph.h"
7
#include "futils.h"
8

9
void test_graph_commitgraph__parse(void)
10 11
{
	git_repository *repo;
12
	struct git_commit_graph_file *file;
13 14
	struct git_commit_graph_entry e, parent;
	git_oid id;
15
	git_str commit_graph_path = GIT_STR_INIT;
16 17

	cl_git_pass(git_repository_open(&repo, cl_fixture("testrepo.git")));
18 19 20
	cl_git_pass(git_str_joinpath(&commit_graph_path, git_repository_path(repo), "objects/info/commit-graph"));
	cl_git_pass(git_commit_graph_file_open(&file, git_str_cstr(&commit_graph_path)));
	cl_assert_equal_i(git_commit_graph_file_needs_refresh(file, git_str_cstr(&commit_graph_path)), 0);
21

22
	cl_git_pass(git_oid_fromstr(&id, "5001298e0c09ad9c34e4249bc5801c75e9754fa5"));
23
	cl_git_pass(git_commit_graph_entry_find(&e, file, &id, GIT_OID_HEXSZ));
24 25 26 27
	cl_assert_equal_oid(&e.sha1, &id);
	cl_git_pass(git_oid_fromstr(&id, "418382dff1ffb8bdfba833f4d8bbcde58b1e7f47"));
	cl_assert_equal_oid(&e.tree_oid, &id);
	cl_assert_equal_i(e.generation, 1);
28
	cl_assert_equal_i(e.commit_time, UINT64_C(1273610423));
29 30 31
	cl_assert_equal_i(e.parent_count, 0);

	cl_git_pass(git_oid_fromstr(&id, "be3563ae3f795b2b4353bcce3a527ad0a4f7f644"));
32
	cl_git_pass(git_commit_graph_entry_find(&e, file, &id, GIT_OID_HEXSZ));
33 34
	cl_assert_equal_oid(&e.sha1, &id);
	cl_assert_equal_i(e.generation, 5);
35
	cl_assert_equal_i(e.commit_time, UINT64_C(1274813907));
36 37 38
	cl_assert_equal_i(e.parent_count, 2);

	cl_git_pass(git_oid_fromstr(&id, "9fd738e8f7967c078dceed8190330fc8648ee56a"));
39
	cl_git_pass(git_commit_graph_entry_parent(&parent, file, &e, 0));
40 41 42 43
	cl_assert_equal_oid(&parent.sha1, &id);
	cl_assert_equal_i(parent.generation, 4);

	cl_git_pass(git_oid_fromstr(&id, "c47800c7266a2be04c571c04d5a6614691ea99bd"));
44
	cl_git_pass(git_commit_graph_entry_parent(&parent, file, &e, 1));
45 46 47
	cl_assert_equal_oid(&parent.sha1, &id);
	cl_assert_equal_i(parent.generation, 3);

48
	git_commit_graph_file_free(file);
49
	git_repository_free(repo);
50
	git_str_dispose(&commit_graph_path);
51 52
}

53
void test_graph_commitgraph__parse_octopus_merge(void)
54 55
{
	git_repository *repo;
56
	struct git_commit_graph_file *file;
57 58
	struct git_commit_graph_entry e, parent;
	git_oid id;
59
	git_str commit_graph_path = GIT_STR_INIT;
60 61

	cl_git_pass(git_repository_open(&repo, cl_fixture("merge-recursive/.gitted")));
62 63
	cl_git_pass(git_str_joinpath(&commit_graph_path, git_repository_path(repo), "objects/info/commit-graph"));
	cl_git_pass(git_commit_graph_file_open(&file, git_str_cstr(&commit_graph_path)));
64 65

	cl_git_pass(git_oid_fromstr(&id, "d71c24b3b113fd1d1909998c5bfe33b86a65ee03"));
66
	cl_git_pass(git_commit_graph_entry_find(&e, file, &id, GIT_OID_HEXSZ));
67 68 69 70
	cl_assert_equal_oid(&e.sha1, &id);
	cl_git_pass(git_oid_fromstr(&id, "348f16ffaeb73f319a75cec5b16a0a47d2d5e27c"));
	cl_assert_equal_oid(&e.tree_oid, &id);
	cl_assert_equal_i(e.generation, 7);
71
	cl_assert_equal_i(e.commit_time, UINT64_C(1447083009));
72 73 74
	cl_assert_equal_i(e.parent_count, 3);

	cl_git_pass(git_oid_fromstr(&id, "ad2ace9e15f66b3d1138922e6ffdc3ea3f967fa6"));
75
	cl_git_pass(git_commit_graph_entry_parent(&parent, file, &e, 0));
76 77 78 79
	cl_assert_equal_oid(&parent.sha1, &id);
	cl_assert_equal_i(parent.generation, 6);

	cl_git_pass(git_oid_fromstr(&id, "483065df53c0f4a02cdc6b2910b05d388fc17ffb"));
80
	cl_git_pass(git_commit_graph_entry_parent(&parent, file, &e, 1));
81 82 83 84
	cl_assert_equal_oid(&parent.sha1, &id);
	cl_assert_equal_i(parent.generation, 2);

	cl_git_pass(git_oid_fromstr(&id, "815b5a1c80ca749d705c7aa0cb294a00cbedd340"));
85
	cl_git_pass(git_commit_graph_entry_parent(&parent, file, &e, 2));
86 87 88
	cl_assert_equal_oid(&parent.sha1, &id);
	cl_assert_equal_i(parent.generation, 6);

89
	git_commit_graph_file_free(file);
90
	git_repository_free(repo);
91
	git_str_dispose(&commit_graph_path);
92
}
93

94
void test_graph_commitgraph__writer(void)
95 96 97 98 99
{
	git_repository *repo;
	git_commit_graph_writer *w = NULL;
	git_revwalk *walk;
	git_commit_graph_writer_options opts = GIT_COMMIT_GRAPH_WRITER_OPTIONS_INIT;
100 101
	git_buf cgraph = GIT_BUF_INIT;
	git_str expected_cgraph = GIT_STR_INIT, path = GIT_STR_INIT;
102 103 104

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

105 106
	cl_git_pass(git_str_joinpath(&path, git_repository_path(repo), "objects/info"));
	cl_git_pass(git_commit_graph_writer_new(&w, git_str_cstr(&path)));
107 108 109 110 111 112 113 114

	/* This is equivalent to `git commit-graph write --reachable`. */
	cl_git_pass(git_revwalk_new(&walk, repo));
	cl_git_pass(git_revwalk_push_glob(walk, "refs/*"));
	cl_git_pass(git_commit_graph_writer_add_revwalk(w, walk));
	git_revwalk_free(walk);

	cl_git_pass(git_commit_graph_writer_dump(&cgraph, w, &opts));
115 116
	cl_git_pass(git_str_joinpath(&path, git_repository_path(repo), "objects/info/commit-graph"));
	cl_git_pass(git_futils_readbuffer(&expected_cgraph, git_str_cstr(&path)));
117

118 119
	cl_assert_equal_i(cgraph.size, git_str_len(&expected_cgraph));
	cl_assert_equal_i(memcmp(cgraph.ptr, git_str_cstr(&expected_cgraph), cgraph.size), 0);
120 121

	git_buf_dispose(&cgraph);
122 123
	git_str_dispose(&expected_cgraph);
	git_str_dispose(&path);
124 125 126
	git_commit_graph_writer_free(w);
	git_repository_free(repo);
}