]> git.ipfire.org Git - thirdparty/git.git/blame - t/helper/test-reach.c
The sixth batch
[thirdparty/git.git] / t / helper / test-reach.c
CommitLineData
ab176ac4 1#include "test-tool.h"
ab176ac4
DS
2#include "commit.h"
3#include "commit-reach.h"
f394e093 4#include "gettext.h"
41771fa4 5#include "hex.h"
dabab1d6 6#include "object-name.h"
1fee1242 7#include "ref-filter.h"
e38da487 8#include "setup.h"
324dec01 9#include "string-list.h"
ab176ac4
DS
10#include "tag.h"
11
324dec01
DS
12static void print_sorted_commit_ids(struct commit_list *list)
13{
14 int i;
15 struct string_list s = STRING_LIST_INIT_DUP;
16
17 while (list) {
18 string_list_append(&s, oid_to_hex(&list->item->object.oid));
19 list = list->next;
20 }
21
22 string_list_sort(&s);
23
24 for (i = 0; i < s.nr; i++)
25 printf("%s\n", s.items[i].string);
26
27 string_list_clear(&s, 0);
28}
29
ab176ac4
DS
30int cmd__reach(int ac, const char **av)
31{
32 struct object_id oid_A, oid_B;
5cd52de3 33 struct commit *A, *B;
1792bc12 34 struct commit_list *X, *Y;
b67f6b26 35 struct object_array X_obj = OBJECT_ARRAY_INIT;
4c7bb452
DS
36 struct commit **X_array, **Y_array;
37 int X_nr, X_alloc, Y_nr, Y_alloc;
ab176ac4
DS
38 struct strbuf buf = STRBUF_INIT;
39 struct repository *r = the_repository;
40
41 setup_git_directory();
42
43 if (ac < 2)
44 exit(1);
45
5cd52de3 46 A = B = NULL;
1792bc12 47 X = Y = NULL;
4c7bb452
DS
48 X_nr = Y_nr = 0;
49 X_alloc = Y_alloc = 16;
324dec01 50 ALLOC_ARRAY(X_array, X_alloc);
4c7bb452 51 ALLOC_ARRAY(Y_array, Y_alloc);
ab176ac4
DS
52
53 while (strbuf_getline(&buf, stdin) != EOF) {
54 struct object_id oid;
b67f6b26
DS
55 struct object *orig;
56 struct object *peeled;
ab176ac4
DS
57 struct commit *c;
58 if (buf.len < 3)
59 continue;
60
d850b7a5 61 if (repo_get_oid_committish(the_repository, buf.buf + 2, &oid))
ab176ac4
DS
62 die("failed to resolve %s", buf.buf + 2);
63
b67f6b26
DS
64 orig = parse_object(r, &oid);
65 peeled = deref_tag_noverify(orig);
ab176ac4 66
b67f6b26 67 if (!peeled)
ab176ac4
DS
68 die("failed to load commit for input %s resulting in oid %s\n",
69 buf.buf, oid_to_hex(&oid));
70
6da43d93 71 c = object_as_type(peeled, OBJ_COMMIT, 0);
ab176ac4
DS
72
73 if (!c)
74 die("failed to load commit for input %s resulting in oid %s\n",
75 buf.buf, oid_to_hex(&oid));
76
77 switch (buf.buf[0]) {
78 case 'A':
79 oidcpy(&oid_A, &oid);
5cd52de3 80 A = c;
ab176ac4
DS
81 break;
82
83 case 'B':
84 oidcpy(&oid_B, &oid);
5cd52de3 85 B = c;
ab176ac4
DS
86 break;
87
6255232e
DS
88 case 'X':
89 commit_list_insert(c, &X);
324dec01
DS
90 ALLOC_GROW(X_array, X_nr + 1, X_alloc);
91 X_array[X_nr++] = c;
b67f6b26 92 add_object_array(orig, NULL, &X_obj);
6255232e
DS
93 break;
94
1792bc12
DS
95 case 'Y':
96 commit_list_insert(c, &Y);
4c7bb452
DS
97 ALLOC_GROW(Y_array, Y_nr + 1, Y_alloc);
98 Y_array[Y_nr++] = c;
1792bc12
DS
99 break;
100
ab176ac4
DS
101 default:
102 die("unexpected start of line: %c", buf.buf[0]);
103 }
104 }
105 strbuf_release(&buf);
106
107 if (!strcmp(av[1], "ref_newer"))
108 printf("%s(A,B):%d\n", av[1], ref_newer(&oid_A, &oid_B));
5cd52de3 109 else if (!strcmp(av[1], "in_merge_bases"))
cb338c23
ÆAB
110 printf("%s(A,B):%d\n", av[1],
111 repo_in_merge_bases(the_repository, A, B));
8791bf18 112 else if (!strcmp(av[1], "in_merge_bases_many"))
cb338c23 113 printf("%s(A,X):%d\n", av[1],
207c40e1 114 repo_in_merge_bases_many(the_repository, A, X_nr, X_array, 0));
6255232e 115 else if (!strcmp(av[1], "is_descendant_of"))
c1ea625f 116 printf("%s(A,X):%d\n", av[1], repo_is_descendant_of(r, A, X));
324dec01 117 else if (!strcmp(av[1], "get_merge_bases_many")) {
53173805
JS
118 struct commit_list *list = NULL;
119 if (repo_get_merge_bases_many(the_repository,
120 A, X_nr,
121 X_array,
122 &list) < 0)
123 exit(128);
324dec01
DS
124 printf("%s(A,X):\n", av[1]);
125 print_sorted_commit_ids(list);
0c89f715
DS
126 } else if (!strcmp(av[1], "reduce_heads")) {
127 struct commit_list *list = reduce_heads(X);
128 printf("%s(X):\n", av[1]);
129 print_sorted_commit_ids(list);
1792bc12
DS
130 } else if (!strcmp(av[1], "can_all_from_reach")) {
131 printf("%s(X,Y):%d\n", av[1], can_all_from_reach(X, Y, 1));
b67f6b26
DS
132 } else if (!strcmp(av[1], "can_all_from_reach_with_flag")) {
133 struct commit_list *iter = Y;
134
135 while (iter) {
136 iter->item->object.flags |= 2;
137 iter = iter->next;
138 }
139
140 printf("%s(X,_,_,0,0):%d\n", av[1], can_all_from_reach_with_flag(&X_obj, 2, 4, 0, 0));
1fee1242 141 } else if (!strcmp(av[1], "commit_contains")) {
b9f7daa6 142 struct ref_filter filter = REF_FILTER_INIT;
1fee1242
DS
143 struct contains_cache cache;
144 init_contains_cache(&cache);
145
146 if (ac > 2 && !strcmp(av[2], "--tag"))
147 filter.with_commit_tag_algo = 1;
148 else
149 filter.with_commit_tag_algo = 0;
150
151 printf("%s(_,A,X,_):%d\n", av[1], commit_contains(&filter, A, X, &cache));
4c7bb452
DS
152 } else if (!strcmp(av[1], "get_reachable_subset")) {
153 const int reachable_flag = 1;
154 int i, count = 0;
155 struct commit_list *current;
156 struct commit_list *list = get_reachable_subset(X_array, X_nr,
157 Y_array, Y_nr,
158 reachable_flag);
159 printf("get_reachable_subset(X,Y)\n");
160 for (current = list; current; current = current->next) {
161 if (!(list->item->object.flags & reachable_flag))
162 die(_("commit %s is not marked reachable"),
163 oid_to_hex(&list->item->object.oid));
164 count++;
165 }
166 for (i = 0; i < Y_nr; i++) {
167 if (Y_array[i]->object.flags & reachable_flag)
168 count--;
169 }
170
171 if (count < 0)
172 die(_("too many commits marked reachable"));
173
174 print_sorted_commit_ids(list);
324dec01 175 }
ab176ac4 176
338abb0f 177 return 0;
ab176ac4 178}