Blame


1 7b19e0f1 2017-11-05 stsp /*
2 7b19e0f1 2017-11-05 stsp * Copyright (c) 2017 Stefan Sperling <stsp@openbsd.org>
3 7b19e0f1 2017-11-05 stsp *
4 7b19e0f1 2017-11-05 stsp * Permission to use, copy, modify, and distribute this software for any
5 7b19e0f1 2017-11-05 stsp * purpose with or without fee is hereby granted, provided that the above
6 7b19e0f1 2017-11-05 stsp * copyright notice and this permission notice appear in all copies.
7 7b19e0f1 2017-11-05 stsp *
8 7b19e0f1 2017-11-05 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 7b19e0f1 2017-11-05 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 7b19e0f1 2017-11-05 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 7b19e0f1 2017-11-05 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 7b19e0f1 2017-11-05 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 7b19e0f1 2017-11-05 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 7b19e0f1 2017-11-05 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 7b19e0f1 2017-11-05 stsp */
16 7b19e0f1 2017-11-05 stsp
17 0ffeb3c2 2017-11-26 stsp #include <sys/stat.h>
18 d1cda826 2017-11-06 stsp #include <sys/queue.h>
19 d1cda826 2017-11-06 stsp
20 82f2fb69 2018-01-26 stsp #include <stdarg.h>
21 4027f31a 2017-11-04 stsp #include <stdio.h>
22 5a83d54e 2018-04-01 stsp #include <util.h>
23 4027f31a 2017-11-04 stsp #include <stdlib.h>
24 82f2fb69 2018-01-26 stsp #include <string.h>
25 f8352b2a 2018-03-12 stsp #include <unistd.h>
26 f8352b2a 2018-03-12 stsp #include <err.h>
27 59ece79d 2018-02-12 stsp #include <unistd.h>
28 4027f31a 2017-11-04 stsp
29 4027f31a 2017-11-04 stsp #include "got_error.h"
30 11995603 2017-11-05 stsp #include "got_object.h"
31 5261c201 2018-04-01 stsp #include "got_reference.h"
32 4027f31a 2017-11-04 stsp #include "got_repository.h"
33 f78b0693 2017-11-29 stsp #include "got_diff.h"
34 511a516b 2018-05-19 stsp #include "got_opentemp.h"
35 4027f31a 2017-11-04 stsp
36 5a83d54e 2018-04-01 stsp #include "got_lib_path.h"
37 5a83d54e 2018-04-01 stsp
38 5a83d54e 2018-04-01 stsp #ifndef nitems
39 5a83d54e 2018-04-01 stsp #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
40 5a83d54e 2018-04-01 stsp #endif
41 5a83d54e 2018-04-01 stsp
42 4027f31a 2017-11-04 stsp #define GOT_REPO_PATH "../../../"
43 4027f31a 2017-11-04 stsp
44 14545512 2018-01-26 stsp static int verbose;
45 82f2fb69 2018-01-26 stsp
46 82f2fb69 2018-01-26 stsp void
47 82f2fb69 2018-01-26 stsp test_printf(char *fmt, ...)
48 82f2fb69 2018-01-26 stsp {
49 82f2fb69 2018-01-26 stsp va_list ap;
50 82f2fb69 2018-01-26 stsp
51 82f2fb69 2018-01-26 stsp if (!verbose)
52 82f2fb69 2018-01-26 stsp return;
53 82f2fb69 2018-01-26 stsp
54 82f2fb69 2018-01-26 stsp va_start(ap, fmt);
55 82f2fb69 2018-01-26 stsp vprintf(fmt, ap);
56 82f2fb69 2018-01-26 stsp va_end(ap);
57 82f2fb69 2018-01-26 stsp }
58 82f2fb69 2018-01-26 stsp
59 bfab4d9a 2017-11-12 stsp static const struct got_error *
60 bfab4d9a 2017-11-12 stsp print_commit_object(struct got_object *, struct got_repository *);
61 1c852fbe 2017-11-12 stsp
62 1c852fbe 2017-11-12 stsp static const struct got_error *
63 bfab4d9a 2017-11-12 stsp print_parent_commits(struct got_commit_object *commit,
64 bfab4d9a 2017-11-12 stsp struct got_repository *repo)
65 bfab4d9a 2017-11-12 stsp {
66 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
67 a37d050f 2018-01-26 stsp const struct got_error *err = NULL;
68 bfab4d9a 2017-11-12 stsp struct got_object *obj;
69 bfab4d9a 2017-11-12 stsp
70 79f35eb3 2018-06-11 stsp SIMPLEQ_FOREACH(qid, &commit->parent_ids, entry) {
71 79f35eb3 2018-06-11 stsp err = got_object_open(&obj, repo, qid->id);
72 bfab4d9a 2017-11-12 stsp if (err != NULL)
73 bfab4d9a 2017-11-12 stsp return err;
74 b107e67f 2018-01-19 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT)
75 2178c42e 2018-04-22 stsp err = got_error(GOT_ERR_OBJ_TYPE);
76 2178c42e 2018-04-22 stsp else
77 2178c42e 2018-04-22 stsp err = print_commit_object(obj, repo);
78 bfab4d9a 2017-11-12 stsp got_object_close(obj);
79 2178c42e 2018-04-22 stsp if (err)
80 2178c42e 2018-04-22 stsp break;
81 bfab4d9a 2017-11-12 stsp }
82 bfab4d9a 2017-11-12 stsp
83 a37d050f 2018-01-26 stsp return err;
84 bfab4d9a 2017-11-12 stsp }
85 bfab4d9a 2017-11-12 stsp
86 bfab4d9a 2017-11-12 stsp static const struct got_error *
87 f715ca7f 2017-11-27 stsp print_tree_object(struct got_object *obj, char *parent,
88 f715ca7f 2017-11-27 stsp struct got_repository *repo)
89 0ffeb3c2 2017-11-26 stsp {
90 0ffeb3c2 2017-11-26 stsp struct got_tree_object *tree;
91 f715ca7f 2017-11-27 stsp struct got_tree_entry *te;
92 0ffeb3c2 2017-11-26 stsp const struct got_error *err;
93 0ffeb3c2 2017-11-26 stsp
94 0ffeb3c2 2017-11-26 stsp err = got_object_tree_open(&tree, repo, obj);
95 0ffeb3c2 2017-11-26 stsp if (err != NULL)
96 0ffeb3c2 2017-11-26 stsp return err;
97 0ffeb3c2 2017-11-26 stsp
98 f715ca7f 2017-11-27 stsp SIMPLEQ_FOREACH(te, &tree->entries, entry) {
99 f715ca7f 2017-11-27 stsp struct got_object *treeobj;
100 f715ca7f 2017-11-27 stsp char *next_parent;
101 ef0981d5 2018-02-12 stsp char *hex;
102 f715ca7f 2017-11-27 stsp
103 ef0981d5 2018-02-12 stsp err = got_object_id_str(&hex, te->id);
104 ef0981d5 2018-02-12 stsp if (err)
105 ef0981d5 2018-02-12 stsp break;
106 ef0981d5 2018-02-12 stsp
107 f715ca7f 2017-11-27 stsp if (!S_ISDIR(te->mode)) {
108 ef0981d5 2018-02-12 stsp test_printf("%s %s/%s\n", hex, parent, te->name);
109 f78ec441 2018-03-17 stsp free(hex);
110 f715ca7f 2017-11-27 stsp continue;
111 f715ca7f 2017-11-27 stsp }
112 ef0981d5 2018-02-12 stsp test_printf("%s %s/%s\n", hex, parent, te->name);
113 ef0981d5 2018-02-12 stsp free(hex);
114 f715ca7f 2017-11-27 stsp
115 59ece79d 2018-02-12 stsp err = got_object_open(&treeobj, repo, te->id);
116 f715ca7f 2017-11-27 stsp if (err != NULL)
117 f715ca7f 2017-11-27 stsp break;
118 f715ca7f 2017-11-27 stsp
119 b107e67f 2018-01-19 stsp if (got_object_get_type(treeobj) != GOT_OBJ_TYPE_TREE) {
120 f715ca7f 2017-11-27 stsp err = got_error(GOT_ERR_OBJ_TYPE);
121 f715ca7f 2017-11-27 stsp got_object_close(treeobj);
122 f715ca7f 2017-11-27 stsp break;
123 f715ca7f 2017-11-27 stsp }
124 f715ca7f 2017-11-27 stsp
125 f715ca7f 2017-11-27 stsp if (asprintf(&next_parent, "%s/%s", parent, te->name) == -1) {
126 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
127 f715ca7f 2017-11-27 stsp got_object_close(treeobj);
128 f715ca7f 2017-11-27 stsp break;
129 f715ca7f 2017-11-27 stsp }
130 f715ca7f 2017-11-27 stsp
131 f715ca7f 2017-11-27 stsp err = print_tree_object(treeobj, next_parent, repo);
132 f715ca7f 2017-11-27 stsp free(next_parent);
133 f715ca7f 2017-11-27 stsp if (err) {
134 f715ca7f 2017-11-27 stsp got_object_close(treeobj);
135 f715ca7f 2017-11-27 stsp break;
136 f715ca7f 2017-11-27 stsp }
137 f715ca7f 2017-11-27 stsp
138 f715ca7f 2017-11-27 stsp got_object_close(treeobj);
139 f715ca7f 2017-11-27 stsp }
140 f715ca7f 2017-11-27 stsp
141 0ffeb3c2 2017-11-26 stsp got_object_tree_close(tree);
142 f715ca7f 2017-11-27 stsp return err;
143 0ffeb3c2 2017-11-26 stsp }
144 0ffeb3c2 2017-11-26 stsp
145 0ffeb3c2 2017-11-26 stsp static const struct got_error *
146 1c852fbe 2017-11-12 stsp print_commit_object(struct got_object *obj, struct got_repository *repo)
147 1c852fbe 2017-11-12 stsp {
148 1c852fbe 2017-11-12 stsp struct got_commit_object *commit;
149 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
150 ef0981d5 2018-02-12 stsp char *buf;
151 1c852fbe 2017-11-12 stsp const struct got_error *err;
152 0ffeb3c2 2017-11-26 stsp struct got_object* treeobj;
153 1c852fbe 2017-11-12 stsp
154 1c852fbe 2017-11-12 stsp err = got_object_commit_open(&commit, repo, obj);
155 ef0981d5 2018-02-12 stsp if (err)
156 1c852fbe 2017-11-12 stsp return err;
157 1c852fbe 2017-11-12 stsp
158 ef0981d5 2018-02-12 stsp err = got_object_id_str(&buf, commit->tree_id);
159 ef0981d5 2018-02-12 stsp if (err)
160 ef0981d5 2018-02-12 stsp return err;
161 ef0981d5 2018-02-12 stsp test_printf("tree: %s\n", buf);
162 ef0981d5 2018-02-12 stsp free(buf);
163 82f2fb69 2018-01-26 stsp test_printf("parent%s: ", (commit->nparents == 1) ? "" : "s");
164 79f35eb3 2018-06-11 stsp SIMPLEQ_FOREACH(qid, &commit->parent_ids, entry) {
165 79f35eb3 2018-06-11 stsp err = got_object_id_str(&buf, qid->id);
166 ef0981d5 2018-02-12 stsp if (err)
167 ef0981d5 2018-02-12 stsp return err;
168 ef0981d5 2018-02-12 stsp test_printf("%s\n", buf);
169 ef0981d5 2018-02-12 stsp free(buf);
170 1c852fbe 2017-11-12 stsp }
171 82f2fb69 2018-01-26 stsp test_printf("author: %s\n", commit->author);
172 82f2fb69 2018-01-26 stsp test_printf("committer: %s\n", commit->committer);
173 82f2fb69 2018-01-26 stsp test_printf("log: %s\n", commit->logmsg);
174 bfab4d9a 2017-11-12 stsp
175 59ece79d 2018-02-12 stsp err = got_object_open(&treeobj, repo, commit->tree_id);
176 0ffeb3c2 2017-11-26 stsp if (err != NULL)
177 0ffeb3c2 2017-11-26 stsp return err;
178 b107e67f 2018-01-19 stsp if (got_object_get_type(treeobj) == GOT_OBJ_TYPE_TREE) {
179 f715ca7f 2017-11-27 stsp print_tree_object(treeobj, "", repo);
180 82f2fb69 2018-01-26 stsp test_printf("\n");
181 f715ca7f 2017-11-27 stsp }
182 0ffeb3c2 2017-11-26 stsp got_object_close(treeobj);
183 0ffeb3c2 2017-11-26 stsp
184 bfab4d9a 2017-11-12 stsp err = print_parent_commits(commit, repo);
185 1c852fbe 2017-11-12 stsp got_object_commit_close(commit);
186 1c852fbe 2017-11-12 stsp
187 bfab4d9a 2017-11-12 stsp return err;
188 1c852fbe 2017-11-12 stsp }
189 1c852fbe 2017-11-12 stsp
190 4027f31a 2017-11-04 stsp static int
191 bfab4d9a 2017-11-12 stsp repo_read_log(const char *repo_path)
192 11995603 2017-11-05 stsp {
193 11995603 2017-11-05 stsp const struct got_error *err;
194 11995603 2017-11-05 stsp struct got_repository *repo;
195 11995603 2017-11-05 stsp struct got_reference *head_ref;
196 11995603 2017-11-05 stsp struct got_object_id *id;
197 ab9a70b2 2017-11-06 stsp struct got_object *obj;
198 ef0981d5 2018-02-12 stsp char *buf;
199 11995603 2017-11-05 stsp
200 11995603 2017-11-05 stsp err = got_repo_open(&repo, repo_path);
201 11995603 2017-11-05 stsp if (err != NULL || repo == NULL)
202 11995603 2017-11-05 stsp return 0;
203 11995603 2017-11-05 stsp err = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
204 11995603 2017-11-05 stsp if (err != NULL || head_ref == NULL)
205 11995603 2017-11-05 stsp return 0;
206 11995603 2017-11-05 stsp err = got_ref_resolve(&id, repo, head_ref);
207 11995603 2017-11-05 stsp if (err != NULL || head_ref == NULL)
208 11995603 2017-11-05 stsp return 0;
209 ef0981d5 2018-02-12 stsp err = got_object_id_str(&buf, id);
210 ef0981d5 2018-02-12 stsp if (err != NULL)
211 ef0981d5 2018-02-12 stsp return 0;
212 ef0981d5 2018-02-12 stsp test_printf("HEAD is at %s\n", buf);
213 ef0981d5 2018-02-12 stsp free(buf);
214 ab9a70b2 2017-11-06 stsp err = got_object_open(&obj, repo, id);
215 ab9a70b2 2017-11-06 stsp if (err != NULL || obj == NULL)
216 ab9a70b2 2017-11-06 stsp return 0;
217 a37d050f 2018-01-26 stsp if (got_object_get_type(obj) == GOT_OBJ_TYPE_COMMIT) {
218 a37d050f 2018-01-26 stsp err = print_commit_object(obj, repo);
219 a37d050f 2018-01-26 stsp if (err)
220 a37d050f 2018-01-26 stsp return 0;
221 a37d050f 2018-01-26 stsp } else
222 a37d050f 2018-01-26 stsp return 0;
223 ab9a70b2 2017-11-06 stsp got_object_close(obj);
224 11995603 2017-11-05 stsp free(id);
225 11995603 2017-11-05 stsp got_ref_close(head_ref);
226 11995603 2017-11-05 stsp got_repo_close(repo);
227 11995603 2017-11-05 stsp return 1;
228 11995603 2017-11-05 stsp }
229 044e7393 2018-02-11 stsp
230 044e7393 2018-02-11 stsp static int
231 044e7393 2018-02-11 stsp repo_read_tree(const char *repo_path)
232 044e7393 2018-02-11 stsp {
233 044e7393 2018-02-11 stsp const char *tree_sha1 = "6cc96e0e093fb30630ba7f199d0a008b24c6a690";
234 044e7393 2018-02-11 stsp const struct got_error *err;
235 044e7393 2018-02-11 stsp struct got_repository *repo;
236 044e7393 2018-02-11 stsp struct got_object *obj;
237 044e7393 2018-02-11 stsp
238 044e7393 2018-02-11 stsp err = got_repo_open(&repo, repo_path);
239 044e7393 2018-02-11 stsp if (err != NULL || repo == NULL)
240 044e7393 2018-02-11 stsp return 0;
241 6dfa2fd3 2018-02-12 stsp err = got_object_open_by_id_str(&obj, repo, tree_sha1);
242 044e7393 2018-02-11 stsp if (err != NULL || obj == NULL)
243 044e7393 2018-02-11 stsp return 0;
244 044e7393 2018-02-11 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_TREE)
245 044e7393 2018-02-11 stsp return 0;
246 11995603 2017-11-05 stsp
247 044e7393 2018-02-11 stsp print_tree_object(obj, "", repo);
248 044e7393 2018-02-11 stsp test_printf("\n");
249 044e7393 2018-02-11 stsp
250 044e7393 2018-02-11 stsp got_object_close(obj);
251 044e7393 2018-02-11 stsp got_repo_close(repo);
252 044e7393 2018-02-11 stsp return (err == NULL);
253 044e7393 2018-02-11 stsp }
254 f78ec441 2018-03-17 stsp
255 68482ea3 2017-11-27 stsp static int
256 68482ea3 2017-11-27 stsp repo_read_blob(const char *repo_path)
257 68482ea3 2017-11-27 stsp {
258 68482ea3 2017-11-27 stsp const char *blob_sha1 = "141f5fdc96126c1f4195558560a3c915e3d9b4c3";
259 68482ea3 2017-11-27 stsp const struct got_error *err;
260 68482ea3 2017-11-27 stsp struct got_repository *repo;
261 68482ea3 2017-11-27 stsp struct got_object *obj;
262 68482ea3 2017-11-27 stsp struct got_blob_object *blob;
263 68482ea3 2017-11-27 stsp int i;
264 68482ea3 2017-11-27 stsp size_t len;
265 68482ea3 2017-11-27 stsp
266 68482ea3 2017-11-27 stsp err = got_repo_open(&repo, repo_path);
267 68482ea3 2017-11-27 stsp if (err != NULL || repo == NULL)
268 68482ea3 2017-11-27 stsp return 0;
269 6dfa2fd3 2018-02-12 stsp err = got_object_open_by_id_str(&obj, repo, blob_sha1);
270 68482ea3 2017-11-27 stsp if (err != NULL || obj == NULL)
271 68482ea3 2017-11-27 stsp return 0;
272 b107e67f 2018-01-19 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_BLOB)
273 68482ea3 2017-11-27 stsp return 0;
274 68482ea3 2017-11-27 stsp
275 68482ea3 2017-11-27 stsp err = got_object_blob_open(&blob, repo, obj, 64);
276 68482ea3 2017-11-27 stsp if (err != NULL)
277 68482ea3 2017-11-27 stsp return 0;
278 68482ea3 2017-11-27 stsp
279 82f2fb69 2018-01-26 stsp test_printf("\n");
280 68482ea3 2017-11-27 stsp do {
281 f934cf2c 2018-02-12 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
282 eb651edf 2018-02-11 stsp err = got_object_blob_read_block(&len, blob);
283 68482ea3 2017-11-27 stsp if (err)
284 68482ea3 2017-11-27 stsp break;
285 68482ea3 2017-11-27 stsp for (i = 0; i < len; i++)
286 f934cf2c 2018-02-12 stsp test_printf("%c", buf[i]);
287 68482ea3 2017-11-27 stsp } while (len != 0);
288 82f2fb69 2018-01-26 stsp test_printf("\n");
289 68482ea3 2017-11-27 stsp
290 68482ea3 2017-11-27 stsp got_object_blob_close(blob);
291 68482ea3 2017-11-27 stsp got_object_close(obj);
292 7d283eee 2017-11-29 stsp got_repo_close(repo);
293 7d283eee 2017-11-29 stsp return (err == NULL);
294 7d283eee 2017-11-29 stsp }
295 7d283eee 2017-11-29 stsp
296 7d283eee 2017-11-29 stsp static int
297 7d283eee 2017-11-29 stsp repo_diff_blob(const char *repo_path)
298 7d283eee 2017-11-29 stsp {
299 7d283eee 2017-11-29 stsp const char *blob1_sha1 = "141f5fdc96126c1f4195558560a3c915e3d9b4c3";
300 7d283eee 2017-11-29 stsp const char *blob2_sha1 = "de7eb21b21c7823a753261aadf7cba35c9580fbf";
301 7d283eee 2017-11-29 stsp const struct got_error *err;
302 7d283eee 2017-11-29 stsp struct got_repository *repo;
303 7d283eee 2017-11-29 stsp struct got_object *obj1;
304 7d283eee 2017-11-29 stsp struct got_object *obj2;
305 7d283eee 2017-11-29 stsp struct got_blob_object *blob1;
306 7d283eee 2017-11-29 stsp struct got_blob_object *blob2;
307 354a7e12 2018-02-11 stsp FILE *outfile;
308 5a83d54e 2018-04-01 stsp int i;
309 5a83d54e 2018-04-01 stsp char *line;
310 5a83d54e 2018-04-01 stsp size_t len;
311 5a83d54e 2018-04-01 stsp const char delim[3] = {'\0', '\0', '\0'};
312 5a83d54e 2018-04-01 stsp const char *expected_output[] = {
313 5a83d54e 2018-04-01 stsp "--- 141f5fdc96126c1f4195558560a3c915e3d9b4c3",
314 5a83d54e 2018-04-01 stsp "+++ de7eb21b21c7823a753261aadf7cba35c9580fbf",
315 5a83d54e 2018-04-01 stsp "@@ -1,10 +1,10 @@",
316 5a83d54e 2018-04-01 stsp " .PATH:${.CURDIR}/../../lib",
317 5a83d54e 2018-04-01 stsp " ",
318 5a83d54e 2018-04-01 stsp " PROG = repository_test",
319 5a83d54e 2018-04-01 stsp "-SRCS = path.c repository.c error.c refs.c repository_test.c",
320 5a83d54e 2018-04-01 stsp "+SRCS = path.c repository.c error.c refs.c object.c sha1.c repository_test.c",
321 5a83d54e 2018-04-01 stsp " ",
322 5a83d54e 2018-04-01 stsp " CPPFLAGS = -I${.CURDIR}/../../include",
323 5a83d54e 2018-04-01 stsp "-LDADD = -lutil",
324 5a83d54e 2018-04-01 stsp "+LDADD = -lutil -lz",
325 5a83d54e 2018-04-01 stsp " ",
326 5a83d54e 2018-04-01 stsp " NOMAN = yes"
327 5a83d54e 2018-04-01 stsp };
328 7d283eee 2017-11-29 stsp
329 7d283eee 2017-11-29 stsp err = got_repo_open(&repo, repo_path);
330 7d283eee 2017-11-29 stsp if (err != NULL || repo == NULL)
331 7d283eee 2017-11-29 stsp return 0;
332 7d283eee 2017-11-29 stsp
333 6dfa2fd3 2018-02-12 stsp err = got_object_open_by_id_str(&obj1, repo, blob1_sha1);
334 7d283eee 2017-11-29 stsp if (err != NULL || obj1 == NULL)
335 7d283eee 2017-11-29 stsp return 0;
336 eef6493a 2018-01-19 stsp if (got_object_get_type(obj1) != GOT_OBJ_TYPE_BLOB)
337 7d283eee 2017-11-29 stsp return 0;
338 6dfa2fd3 2018-02-12 stsp err = got_object_open_by_id_str(&obj2, repo, blob2_sha1);
339 7d283eee 2017-11-29 stsp if (err != NULL || obj2 == NULL)
340 7d283eee 2017-11-29 stsp return 0;
341 eef6493a 2018-01-19 stsp if (got_object_get_type(obj2) != GOT_OBJ_TYPE_BLOB)
342 7d283eee 2017-11-29 stsp return 0;
343 7d283eee 2017-11-29 stsp
344 7d283eee 2017-11-29 stsp err = got_object_blob_open(&blob1, repo, obj1, 512);
345 7d283eee 2017-11-29 stsp if (err != NULL)
346 7d283eee 2017-11-29 stsp return 0;
347 7d283eee 2017-11-29 stsp
348 7d283eee 2017-11-29 stsp err = got_object_blob_open(&blob2, repo, obj2, 512);
349 7d283eee 2017-11-29 stsp if (err != NULL)
350 7d283eee 2017-11-29 stsp return 0;
351 7d283eee 2017-11-29 stsp
352 82f2fb69 2018-01-26 stsp test_printf("\n");
353 5a83d54e 2018-04-01 stsp outfile = got_opentemp();
354 5a83d54e 2018-04-01 stsp if (outfile == NULL)
355 5a83d54e 2018-04-01 stsp return 0;
356 354a7e12 2018-02-11 stsp got_diff_blob(blob1, blob2, NULL, NULL, outfile);
357 5a83d54e 2018-04-01 stsp rewind(outfile);
358 5a83d54e 2018-04-01 stsp i = 0;
359 5a83d54e 2018-04-01 stsp while ((line = fparseln(outfile, &len, NULL, delim, 0)) != NULL) {
360 5a83d54e 2018-04-01 stsp test_printf(line);
361 5a83d54e 2018-04-01 stsp test_printf("\n");
362 5a83d54e 2018-04-01 stsp if (i < nitems(expected_output) &&
363 5a83d54e 2018-04-01 stsp strcmp(line, expected_output[i]) != 0) {
364 5a83d54e 2018-04-01 stsp test_printf("diff output mismatch; expected: '%s'\n",
365 5a83d54e 2018-04-01 stsp expected_output[i]);
366 5a83d54e 2018-04-01 stsp }
367 5a83d54e 2018-04-01 stsp i++;
368 5a83d54e 2018-04-01 stsp }
369 5a83d54e 2018-04-01 stsp fclose(outfile);
370 82f2fb69 2018-01-26 stsp test_printf("\n");
371 5a83d54e 2018-04-01 stsp if (i != nitems(expected_output) + 1) {
372 5a83d54e 2018-04-01 stsp test_printf("number of lines expected: %d; actual: %d\n",
373 5a83d54e 2018-04-01 stsp nitems(expected_output), i - 1);
374 5a83d54e 2018-04-01 stsp return 0;
375 5a83d54e 2018-04-01 stsp }
376 7d283eee 2017-11-29 stsp
377 7d283eee 2017-11-29 stsp got_object_blob_close(blob1);
378 7d283eee 2017-11-29 stsp got_object_blob_close(blob2);
379 98abbc84 2017-11-30 stsp got_object_close(obj1);
380 98abbc84 2017-11-30 stsp got_object_close(obj2);
381 98abbc84 2017-11-30 stsp got_repo_close(repo);
382 98abbc84 2017-11-30 stsp return (err == NULL);
383 98abbc84 2017-11-30 stsp }
384 98abbc84 2017-11-30 stsp
385 98abbc84 2017-11-30 stsp static int
386 98abbc84 2017-11-30 stsp repo_diff_tree(const char *repo_path)
387 98abbc84 2017-11-30 stsp {
388 4a0235dd 2017-11-30 stsp const char *tree1_sha1 = "1efc41caf761a0a1f119d0c5121eedcb2e7a88c3";
389 a3e2cbea 2017-12-01 stsp const char *tree2_sha1 = "4aa8f2933839ff8a8fb3f905a4c232d22c6ff5f3";
390 98abbc84 2017-11-30 stsp const struct got_error *err;
391 98abbc84 2017-11-30 stsp struct got_repository *repo;
392 98abbc84 2017-11-30 stsp struct got_object *obj1;
393 98abbc84 2017-11-30 stsp struct got_object *obj2;
394 98abbc84 2017-11-30 stsp struct got_tree_object *tree1;
395 98abbc84 2017-11-30 stsp struct got_tree_object *tree2;
396 354a7e12 2018-02-11 stsp FILE *outfile;
397 98abbc84 2017-11-30 stsp
398 98abbc84 2017-11-30 stsp err = got_repo_open(&repo, repo_path);
399 98abbc84 2017-11-30 stsp if (err != NULL || repo == NULL)
400 98abbc84 2017-11-30 stsp return 0;
401 98abbc84 2017-11-30 stsp
402 6dfa2fd3 2018-02-12 stsp err = got_object_open_by_id_str(&obj1, repo, tree1_sha1);
403 98abbc84 2017-11-30 stsp if (err != NULL || obj1 == NULL)
404 98abbc84 2017-11-30 stsp return 0;
405 eef6493a 2018-01-19 stsp if (got_object_get_type(obj1) != GOT_OBJ_TYPE_TREE)
406 98abbc84 2017-11-30 stsp return 0;
407 6dfa2fd3 2018-02-12 stsp err = got_object_open_by_id_str(&obj2, repo, tree2_sha1);
408 98abbc84 2017-11-30 stsp if (err != NULL || obj2 == NULL)
409 98abbc84 2017-11-30 stsp return 0;
410 eef6493a 2018-01-19 stsp if (got_object_get_type(obj2) != GOT_OBJ_TYPE_TREE)
411 98abbc84 2017-11-30 stsp return 0;
412 98abbc84 2017-11-30 stsp
413 98abbc84 2017-11-30 stsp err = got_object_tree_open(&tree1, repo, obj1);
414 98abbc84 2017-11-30 stsp if (err != NULL)
415 98abbc84 2017-11-30 stsp return 0;
416 98abbc84 2017-11-30 stsp
417 98abbc84 2017-11-30 stsp err = got_object_tree_open(&tree2, repo, obj2);
418 98abbc84 2017-11-30 stsp if (err != NULL)
419 98abbc84 2017-11-30 stsp return 0;
420 98abbc84 2017-11-30 stsp
421 354a7e12 2018-02-11 stsp if (!verbose) {
422 354a7e12 2018-02-11 stsp outfile = fopen("/dev/null", "w+");
423 354a7e12 2018-02-11 stsp if (outfile == NULL)
424 354a7e12 2018-02-11 stsp return 0;
425 354a7e12 2018-02-11 stsp } else
426 354a7e12 2018-02-11 stsp outfile = stdout;
427 82f2fb69 2018-01-26 stsp test_printf("\n");
428 354a7e12 2018-02-11 stsp got_diff_tree(tree1, tree2, repo, outfile);
429 82f2fb69 2018-01-26 stsp test_printf("\n");
430 98abbc84 2017-11-30 stsp
431 98abbc84 2017-11-30 stsp got_object_tree_close(tree1);
432 98abbc84 2017-11-30 stsp got_object_tree_close(tree2);
433 7d283eee 2017-11-29 stsp got_object_close(obj1);
434 7d283eee 2017-11-29 stsp got_object_close(obj2);
435 68482ea3 2017-11-27 stsp got_repo_close(repo);
436 68482ea3 2017-11-27 stsp return (err == NULL);
437 68482ea3 2017-11-27 stsp }
438 b08fe7be 2018-01-26 stsp
439 b08fe7be 2018-01-26 stsp #define RUN_TEST(expr, name) \
440 b08fe7be 2018-01-26 stsp { test_ok = (expr); \
441 b08fe7be 2018-01-26 stsp printf("test %s %s\n", (name), test_ok ? "ok" : "failed"); \
442 b08fe7be 2018-01-26 stsp failure = (failure || !test_ok); }
443 68482ea3 2017-11-27 stsp
444 82f2fb69 2018-01-26 stsp
445 82f2fb69 2018-01-26 stsp void
446 82f2fb69 2018-01-26 stsp usage(void)
447 82f2fb69 2018-01-26 stsp {
448 82f2fb69 2018-01-26 stsp fprintf(stderr, "usage: repository_test [-v] [REPO_PATH]\n");
449 82f2fb69 2018-01-26 stsp }
450 82f2fb69 2018-01-26 stsp
451 4027f31a 2017-11-04 stsp int
452 82f2fb69 2018-01-26 stsp main(int argc, char *argv[])
453 4027f31a 2017-11-04 stsp {
454 b08fe7be 2018-01-26 stsp int test_ok = 0, failure = 0;
455 4027f31a 2017-11-04 stsp const char *repo_path;
456 82f2fb69 2018-01-26 stsp int ch;
457 4027f31a 2017-11-04 stsp
458 2178c42e 2018-04-22 stsp if (pledge("stdio rpath wpath cpath proc", NULL) == -1)
459 f8352b2a 2018-03-12 stsp err(1, "pledge");
460 f8352b2a 2018-03-12 stsp
461 82f2fb69 2018-01-26 stsp while ((ch = getopt(argc, argv, "v")) != -1) {
462 82f2fb69 2018-01-26 stsp switch (ch) {
463 82f2fb69 2018-01-26 stsp case 'v':
464 82f2fb69 2018-01-26 stsp verbose = 1;
465 82f2fb69 2018-01-26 stsp break;
466 82f2fb69 2018-01-26 stsp default:
467 82f2fb69 2018-01-26 stsp usage();
468 82f2fb69 2018-01-26 stsp return 1;
469 82f2fb69 2018-01-26 stsp }
470 82f2fb69 2018-01-26 stsp }
471 82f2fb69 2018-01-26 stsp argc -= optind;
472 82f2fb69 2018-01-26 stsp argv += optind;
473 82f2fb69 2018-01-26 stsp
474 82f2fb69 2018-01-26 stsp if (argc == 0)
475 4027f31a 2017-11-04 stsp repo_path = GOT_REPO_PATH;
476 82f2fb69 2018-01-26 stsp else if (argc == 1)
477 ff3eb0f2 2018-03-09 stsp repo_path = argv[0];
478 4027f31a 2017-11-04 stsp else {
479 82f2fb69 2018-01-26 stsp usage();
480 4027f31a 2017-11-04 stsp return 1;
481 4027f31a 2017-11-04 stsp }
482 4027f31a 2017-11-04 stsp
483 044e7393 2018-02-11 stsp RUN_TEST(repo_read_tree(repo_path), "read_tree");
484 bfab4d9a 2017-11-12 stsp RUN_TEST(repo_read_log(repo_path), "read_log");
485 68482ea3 2017-11-27 stsp RUN_TEST(repo_read_blob(repo_path), "read_blob");
486 7d283eee 2017-11-29 stsp RUN_TEST(repo_diff_blob(repo_path), "diff_blob");
487 98abbc84 2017-11-30 stsp RUN_TEST(repo_diff_tree(repo_path), "diff_tree");
488 4027f31a 2017-11-04 stsp
489 4027f31a 2017-11-04 stsp return failure ? 1 : 0;
490 4027f31a 2017-11-04 stsp }