]> git.proxmox.com Git - libgit2.git/blob - tests/apply/tree.c
New upstream version 0.28.1+dfsg.1
[libgit2.git] / tests / apply / tree.c
1 #include "clar_libgit2.h"
2 #include "../merge/merge_helpers.h"
3
4 static git_repository *repo;
5
6 #define TEST_REPO_PATH "merge-recursive"
7
8
9 void test_apply_tree__initialize(void)
10 {
11 repo = cl_git_sandbox_init(TEST_REPO_PATH);
12 }
13
14 void test_apply_tree__cleanup(void)
15 {
16 cl_git_sandbox_cleanup();
17 }
18
19 void test_apply_tree__one(void)
20 {
21 git_oid a_oid, b_oid;
22 git_commit *a_commit, *b_commit;
23 git_tree *a_tree, *b_tree;
24 git_diff *diff;
25 git_index *index = NULL;
26 git_diff_options opts = GIT_DIFF_OPTIONS_INIT;
27
28 struct merge_index_entry expected[] = {
29 { 0100644, "ffb36e513f5fdf8a6ba850a20142676a2ac4807d", 0, "asparagus.txt" },
30 { 0100644, "68f6182f4c85d39e1309d97c7e456156dc9c0096", 0, "beef.txt" },
31 { 0100644, "4b7c5650008b2e747fe1809eeb5a1dde0e80850a", 0, "bouilli.txt" },
32 { 0100644, "c4e6cca3ec6ae0148ed231f97257df8c311e015f", 0, "gravy.txt" },
33 { 0100644, "68af1fc7407fd9addf1701a87eb1c95c7494c598", 0, "oyster.txt" },
34 { 0100644, "a7b066537e6be7109abfe4ff97b675d4e077da20", 0, "veal.txt" },
35 };
36
37 git_oid_fromstr(&a_oid, "539bd011c4822c560c1d17cab095006b7a10f707");
38 git_oid_fromstr(&b_oid, "7c7bf85e978f1d18c0566f702d2cb7766b9c8d4f");
39
40 cl_git_pass(git_commit_lookup(&a_commit, repo, &a_oid));
41 cl_git_pass(git_commit_lookup(&b_commit, repo, &b_oid));
42
43 cl_git_pass(git_commit_tree(&a_tree, a_commit));
44 cl_git_pass(git_commit_tree(&b_tree, b_commit));
45
46 cl_git_pass(git_diff_tree_to_tree(&diff, repo, a_tree, b_tree, &opts));
47
48 cl_git_pass(git_apply_to_tree(&index, repo, a_tree, diff, NULL));
49 merge_test_index(index, expected, 6);
50
51 git_index_free(index);
52 git_diff_free(diff);
53 git_tree_free(a_tree);
54 git_tree_free(b_tree);
55 git_commit_free(a_commit);
56 git_commit_free(b_commit);
57 }
58