|
1 | 1 | #include "clar_libgit2.h" |
2 | 2 | #include "posix.h" |
3 | 3 | #include "index.h" |
| 4 | +#include "conflicts.h" |
4 | 5 |
|
5 | 6 | static git_repository *_repo; |
6 | 7 | static git_index *_index; |
@@ -126,3 +127,106 @@ void test_index_read_index__read_and_writes(void) |
126 | 127 | git_index_free(tree_index); |
127 | 128 | git_index_free(new_index); |
128 | 129 | } |
| 130 | + |
| 131 | +static void add_conflicts(git_index *index, const char *filename) |
| 132 | +{ |
| 133 | + git_index_entry ancestor_entry, our_entry, their_entry; |
| 134 | + static int conflict_idx = 0; |
| 135 | + char *ancestor_ids[] = |
| 136 | + { CONFLICTS_ONE_ANCESTOR_OID, CONFLICTS_TWO_ANCESTOR_OID }; |
| 137 | + char *our_ids[] = |
| 138 | + { CONFLICTS_ONE_OUR_OID, CONFLICTS_TWO_OUR_OID }; |
| 139 | + char *their_ids[] = |
| 140 | + { CONFLICTS_ONE_THEIR_OID, CONFLICTS_TWO_THEIR_OID }; |
| 141 | + |
| 142 | + conflict_idx = (conflict_idx + 1) % 2; |
| 143 | + |
| 144 | + memset(&ancestor_entry, 0x0, sizeof(git_index_entry)); |
| 145 | + memset(&our_entry, 0x0, sizeof(git_index_entry)); |
| 146 | + memset(&their_entry, 0x0, sizeof(git_index_entry)); |
| 147 | + |
| 148 | + ancestor_entry.path = filename; |
| 149 | + ancestor_entry.mode = 0100644; |
| 150 | + GIT_IDXENTRY_STAGE_SET(&ancestor_entry, 1); |
| 151 | + git_oid_fromstr(&ancestor_entry.id, ancestor_ids[conflict_idx]); |
| 152 | + |
| 153 | + our_entry.path = filename; |
| 154 | + our_entry.mode = 0100644; |
| 155 | + GIT_IDXENTRY_STAGE_SET(&our_entry, 2); |
| 156 | + git_oid_fromstr(&our_entry.id, our_ids[conflict_idx]); |
| 157 | + |
| 158 | + their_entry.path = filename; |
| 159 | + their_entry.mode = 0100644; |
| 160 | + GIT_IDXENTRY_STAGE_SET(&ancestor_entry, 2); |
| 161 | + git_oid_fromstr(&their_entry.id, their_ids[conflict_idx]); |
| 162 | + |
| 163 | + cl_git_pass(git_index_conflict_add(index, &ancestor_entry, |
| 164 | + &our_entry, &their_entry)); |
| 165 | +} |
| 166 | + |
| 167 | +void test_index_read_index__handles_conflicts(void) |
| 168 | +{ |
| 169 | + git_oid tree_id; |
| 170 | + git_tree *tree; |
| 171 | + git_index *index, *new_index; |
| 172 | + git_index_conflict_iterator *conflict_iterator; |
| 173 | + const git_index_entry *ancestor, *ours, *theirs; |
| 174 | + |
| 175 | + cl_git_pass(git_oid_fromstr(&tree_id, "ae90f12eea699729ed24555e40b9fd669da12a12")); |
| 176 | + cl_git_pass(git_tree_lookup(&tree, _repo, &tree_id)); |
| 177 | + cl_git_pass(git_index_new(&index)); |
| 178 | + cl_git_pass(git_index_new(&new_index)); |
| 179 | + cl_git_pass(git_index_read_tree(index, tree)); |
| 180 | + cl_git_pass(git_index_read_tree(new_index, tree)); |
| 181 | + |
| 182 | + /* put some conflicts in only the old side, these should be removed */ |
| 183 | + add_conflicts(index, "orig_side-1.txt"); |
| 184 | + add_conflicts(index, "orig_side-2.txt"); |
| 185 | + |
| 186 | + /* put some conflicts in both indexes, these should be unchanged */ |
| 187 | + add_conflicts(index, "both_sides-1.txt"); |
| 188 | + add_conflicts(new_index, "both_sides-1.txt"); |
| 189 | + add_conflicts(index, "both_sides-2.txt"); |
| 190 | + add_conflicts(new_index, "both_sides-2.txt"); |
| 191 | + |
| 192 | + /* put some conflicts in the new index, these should be added */ |
| 193 | + add_conflicts(new_index, "new_side-1.txt"); |
| 194 | + add_conflicts(new_index, "new_side-2.txt"); |
| 195 | + |
| 196 | + cl_git_pass(git_index_read_index(index, new_index)); |
| 197 | + cl_git_pass(git_index_conflict_iterator_new(&conflict_iterator, index)); |
| 198 | + |
| 199 | + cl_git_pass(git_index_conflict_next( |
| 200 | + &ancestor, &ours, &theirs, conflict_iterator)); |
| 201 | + cl_assert_equal_s("both_sides-1.txt", ancestor->path); |
| 202 | + cl_assert_equal_s("both_sides-1.txt", ours->path); |
| 203 | + cl_assert_equal_s("both_sides-1.txt", theirs->path); |
| 204 | + |
| 205 | + cl_git_pass(git_index_conflict_next( |
| 206 | + &ancestor, &ours, &theirs, conflict_iterator)); |
| 207 | + cl_assert_equal_s("both_sides-2.txt", ancestor->path); |
| 208 | + cl_assert_equal_s("both_sides-2.txt", ours->path); |
| 209 | + cl_assert_equal_s("both_sides-2.txt", theirs->path); |
| 210 | + |
| 211 | + cl_git_pass(git_index_conflict_next( |
| 212 | + &ancestor, &ours, &theirs, conflict_iterator)); |
| 213 | + cl_assert_equal_s("new_side-1.txt", ancestor->path); |
| 214 | + cl_assert_equal_s("new_side-1.txt", ours->path); |
| 215 | + cl_assert_equal_s("new_side-1.txt", theirs->path); |
| 216 | + |
| 217 | + cl_git_pass(git_index_conflict_next( |
| 218 | + &ancestor, &ours, &theirs, conflict_iterator)); |
| 219 | + cl_assert_equal_s("new_side-2.txt", ancestor->path); |
| 220 | + cl_assert_equal_s("new_side-2.txt", ours->path); |
| 221 | + cl_assert_equal_s("new_side-2.txt", theirs->path); |
| 222 | + |
| 223 | + |
| 224 | + cl_git_fail_with(GIT_ITEROVER, git_index_conflict_next( |
| 225 | + &ancestor, &ours, &theirs, conflict_iterator)); |
| 226 | + |
| 227 | + git_index_conflict_iterator_free(conflict_iterator); |
| 228 | + |
| 229 | + git_tree_free(tree); |
| 230 | + git_index_free(new_index); |
| 231 | + git_index_free(index); |
| 232 | +} |
0 commit comments