Blame


1 ddb547b4 2018-06-04 stsp /*
2 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
3 ddb547b4 2018-06-04 stsp *
4 ddb547b4 2018-06-04 stsp * Permission to use, copy, modify, and distribute this software for any
5 ddb547b4 2018-06-04 stsp * purpose with or without fee is hereby granted, provided that the above
6 ddb547b4 2018-06-04 stsp * copyright notice and this permission notice appear in all copies.
7 ddb547b4 2018-06-04 stsp *
8 ddb547b4 2018-06-04 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 ddb547b4 2018-06-04 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 ddb547b4 2018-06-04 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 ddb547b4 2018-06-04 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 ddb547b4 2018-06-04 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 ddb547b4 2018-06-04 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 ddb547b4 2018-06-04 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 ddb547b4 2018-06-04 stsp */
16 ddb547b4 2018-06-04 stsp
17 ddb547b4 2018-06-04 stsp
18 56e0773d 2019-11-28 stsp #include <limits.h>
19 ddb547b4 2018-06-04 stsp #include <stdarg.h>
20 ddb547b4 2018-06-04 stsp #include <stdlib.h>
21 ddb547b4 2018-06-04 stsp #include <stdio.h>
22 ddb547b4 2018-06-04 stsp #include <unistd.h>
23 ddb547b4 2018-06-04 stsp #include <err.h>
24 ddb547b4 2018-06-04 stsp #include <sha1.h>
25 ddb547b4 2018-06-04 stsp #include <zlib.h>
26 788c352e 2018-06-16 stsp #include <time.h>
27 ddb547b4 2018-06-04 stsp
28 ddb547b4 2018-06-04 stsp #include "got_error.h"
29 ddb547b4 2018-06-04 stsp #include "got_object.h"
30 ddb547b4 2018-06-04 stsp
31 ddb547b4 2018-06-04 stsp #include "got_lib_object_idset.h"
32 ddb547b4 2018-06-04 stsp #include "got_lib_sha1.h"
33 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
34 ddb547b4 2018-06-04 stsp #include "got_lib_delta.h"
35 ddb547b4 2018-06-04 stsp #include "got_lib_object.h"
36 ddb547b4 2018-06-04 stsp
37 ddb547b4 2018-06-04 stsp static int verbose;
38 7fb414ae 2020-08-08 stsp static int quiet;
39 ddb547b4 2018-06-04 stsp
40 ddb547b4 2018-06-04 stsp void
41 ddb547b4 2018-06-04 stsp test_printf(char *fmt, ...)
42 ddb547b4 2018-06-04 stsp {
43 ddb547b4 2018-06-04 stsp va_list ap;
44 ddb547b4 2018-06-04 stsp
45 ddb547b4 2018-06-04 stsp if (!verbose)
46 ddb547b4 2018-06-04 stsp return;
47 ddb547b4 2018-06-04 stsp
48 ddb547b4 2018-06-04 stsp va_start(ap, fmt);
49 ddb547b4 2018-06-04 stsp vprintf(fmt, ap);
50 ddb547b4 2018-06-04 stsp va_end(ap);
51 ddb547b4 2018-06-04 stsp }
52 ddb547b4 2018-06-04 stsp
53 ddb547b4 2018-06-04 stsp static const char *id_str1 = "1111111111111111111111111111111111111111";
54 ddb547b4 2018-06-04 stsp static const char *id_str2 = "2222222222222222222222222222222222222222";
55 ddb547b4 2018-06-04 stsp static const char *id_str3 = "ffffffffffffffffffffffffffffffffffffffff";
56 ddb547b4 2018-06-04 stsp static struct got_object_id id1, id2, id3;
57 ddb547b4 2018-06-04 stsp static const char *data1 = "data1", *data2 = "data2", *data3 = "data3";
58 ddb547b4 2018-06-04 stsp
59 cb103d04 2018-11-07 stsp static const struct got_error *
60 917bfd05 2018-06-10 stsp idset_cb(struct got_object_id *id, void *data, void *arg) {
61 b36429ab 2018-11-05 stsp if ((got_object_id_cmp(id, &id1) == 0 && data == (void *)data1) ||
62 b36429ab 2018-11-05 stsp (got_object_id_cmp(id, &id3) == 0 && data == (void *)data3))
63 cb103d04 2018-11-07 stsp return NULL;
64 b36429ab 2018-11-05 stsp abort();
65 cb103d04 2018-11-07 stsp return NULL; /* not reached */
66 ddb547b4 2018-06-04 stsp }
67 ddb547b4 2018-06-04 stsp
68 ddb547b4 2018-06-04 stsp static int
69 ddb547b4 2018-06-04 stsp idset_add_remove_iter(void)
70 ddb547b4 2018-06-04 stsp {
71 ddb547b4 2018-06-04 stsp const struct got_error *err = NULL;
72 ddb547b4 2018-06-04 stsp struct got_object_idset *set;
73 ddb547b4 2018-06-04 stsp
74 ddb547b4 2018-06-04 stsp set = got_object_idset_alloc();
75 ddb547b4 2018-06-04 stsp if (set == NULL) {
76 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_idset_alloc");
77 ddb547b4 2018-06-04 stsp goto done;
78 ddb547b4 2018-06-04 stsp }
79 c6f420bf 2018-06-04 stsp if (got_object_idset_num_elements(set) != 0) {
80 c6f420bf 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
81 c6f420bf 2018-06-04 stsp goto done;
82 c6f420bf 2018-06-04 stsp }
83 ddb547b4 2018-06-04 stsp
84 ddb547b4 2018-06-04 stsp if (!got_parse_sha1_digest(id1.sha1, id_str1)) {
85 ddb547b4 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_ID_STR);
86 ddb547b4 2018-06-04 stsp goto done;
87 ddb547b4 2018-06-04 stsp }
88 ddb547b4 2018-06-04 stsp if (!got_parse_sha1_digest(id2.sha1, id_str2)) {
89 ddb547b4 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_ID_STR);
90 ddb547b4 2018-06-04 stsp goto done;
91 ddb547b4 2018-06-04 stsp }
92 ddb547b4 2018-06-04 stsp if (!got_parse_sha1_digest(id3.sha1, id_str3)) {
93 ddb547b4 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_ID_STR);
94 ddb547b4 2018-06-04 stsp goto done;
95 ddb547b4 2018-06-04 stsp }
96 ddb547b4 2018-06-04 stsp
97 b36429ab 2018-11-05 stsp err = got_object_idset_add(set, &id1, (void *)data1);
98 ddb547b4 2018-06-04 stsp if (err)
99 ddb547b4 2018-06-04 stsp goto done;
100 c6f420bf 2018-06-04 stsp if (got_object_idset_num_elements(set) != 1) {
101 c6f420bf 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
102 c6f420bf 2018-06-04 stsp goto done;
103 c6f420bf 2018-06-04 stsp }
104 ddb547b4 2018-06-04 stsp
105 ddb547b4 2018-06-04 stsp if (!got_object_idset_contains(set, &id1)) {
106 ddb547b4 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
107 ddb547b4 2018-06-04 stsp goto done;
108 ddb547b4 2018-06-04 stsp }
109 ddb547b4 2018-06-04 stsp
110 b36429ab 2018-11-05 stsp err = got_object_idset_add(set, &id2, (void *)data2);
111 ddb547b4 2018-06-04 stsp if (err)
112 ddb547b4 2018-06-04 stsp goto done;
113 ddb547b4 2018-06-04 stsp
114 ddb547b4 2018-06-04 stsp if (!got_object_idset_contains(set, &id1)) {
115 ddb547b4 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
116 ddb547b4 2018-06-04 stsp goto done;
117 ddb547b4 2018-06-04 stsp }
118 ddb547b4 2018-06-04 stsp if (!got_object_idset_contains(set, &id2)) {
119 ddb547b4 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
120 ddb547b4 2018-06-04 stsp goto done;
121 ddb547b4 2018-06-04 stsp }
122 c6f420bf 2018-06-04 stsp if (got_object_idset_num_elements(set) != 2) {
123 c6f420bf 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
124 c6f420bf 2018-06-04 stsp goto done;
125 c6f420bf 2018-06-04 stsp }
126 ddb547b4 2018-06-04 stsp
127 b36429ab 2018-11-05 stsp err = got_object_idset_add(set, &id3, (void *)data3);
128 ddb547b4 2018-06-04 stsp if (err)
129 ddb547b4 2018-06-04 stsp goto done;
130 ddb547b4 2018-06-04 stsp
131 45b73774 2018-06-04 stsp if (got_object_idset_get(set, &id1) != (void *)data1) {
132 ddb547b4 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
133 ddb547b4 2018-06-04 stsp goto done;
134 ddb547b4 2018-06-04 stsp }
135 45b73774 2018-06-04 stsp if (got_object_idset_get(set, &id2) != (void *)data2) {
136 ddb547b4 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
137 ddb547b4 2018-06-04 stsp goto done;
138 ddb547b4 2018-06-04 stsp }
139 45b73774 2018-06-04 stsp if (got_object_idset_get(set, &id3) != (void *)data3) {
140 ddb547b4 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
141 ddb547b4 2018-06-04 stsp goto done;
142 ddb547b4 2018-06-04 stsp }
143 c6f420bf 2018-06-04 stsp if (got_object_idset_num_elements(set) != 3) {
144 c6f420bf 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
145 c6f420bf 2018-06-04 stsp goto done;
146 c6f420bf 2018-06-04 stsp }
147 ddb547b4 2018-06-04 stsp
148 50bc349d 2018-06-22 stsp err = got_object_idset_remove(NULL, set, &id2);
149 ddb547b4 2018-06-04 stsp if (err)
150 ddb547b4 2018-06-04 stsp goto done;
151 c6f420bf 2018-06-04 stsp if (got_object_idset_num_elements(set) != 2) {
152 c6f420bf 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
153 c6f420bf 2018-06-04 stsp goto done;
154 c6f420bf 2018-06-04 stsp }
155 ddb547b4 2018-06-04 stsp if (got_object_idset_contains(set, &id2)) {
156 ddb547b4 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
157 ddb547b4 2018-06-04 stsp goto done;
158 ddb547b4 2018-06-04 stsp }
159 45b73774 2018-06-04 stsp if (got_object_idset_get(set, &id2) != NULL) {
160 ddb547b4 2018-06-04 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
161 ddb547b4 2018-06-04 stsp goto done;
162 ddb547b4 2018-06-04 stsp }
163 ddb547b4 2018-06-04 stsp
164 917bfd05 2018-06-10 stsp got_object_idset_for_each(set, idset_cb, NULL);
165 ddb547b4 2018-06-04 stsp done:
166 c6f420bf 2018-06-04 stsp got_object_idset_free(set);
167 ddb547b4 2018-06-04 stsp return (err == NULL);
168 ddb547b4 2018-06-04 stsp }
169 ddb547b4 2018-06-04 stsp
170 ddb547b4 2018-06-04 stsp #define RUN_TEST(expr, name) \
171 ddb547b4 2018-06-04 stsp { test_ok = (expr); \
172 7fb414ae 2020-08-08 stsp if (!quiet) printf("test_%s %s\n", (name), test_ok ? "ok" : "failed"); \
173 ddb547b4 2018-06-04 stsp failure = (failure || !test_ok); }
174 ddb547b4 2018-06-04 stsp
175 ddb547b4 2018-06-04 stsp void
176 ddb547b4 2018-06-04 stsp usage(void)
177 ddb547b4 2018-06-04 stsp {
178 7fb414ae 2020-08-08 stsp fprintf(stderr, "usage: id_test [-v] [-q]\n");
179 ddb547b4 2018-06-04 stsp }
180 ddb547b4 2018-06-04 stsp
181 ddb547b4 2018-06-04 stsp int
182 ddb547b4 2018-06-04 stsp main(int argc, char *argv[])
183 ddb547b4 2018-06-04 stsp {
184 ddb547b4 2018-06-04 stsp int test_ok = 0, failure = 0;
185 ddb547b4 2018-06-04 stsp int ch;
186 ddb547b4 2018-06-04 stsp
187 2ff12563 2018-09-15 stsp #ifndef PROFILE
188 ddb547b4 2018-06-04 stsp if (pledge("stdio", NULL) == -1)
189 ddb547b4 2018-06-04 stsp err(1, "pledge");
190 2ff12563 2018-09-15 stsp #endif
191 ddb547b4 2018-06-04 stsp
192 7fb414ae 2020-08-08 stsp while ((ch = getopt(argc, argv, "vq")) != -1) {
193 ddb547b4 2018-06-04 stsp switch (ch) {
194 ddb547b4 2018-06-04 stsp case 'v':
195 ddb547b4 2018-06-04 stsp verbose = 1;
196 7fb414ae 2020-08-08 stsp quiet = 0;
197 ddb547b4 2018-06-04 stsp break;
198 7fb414ae 2020-08-08 stsp case 'q':
199 7fb414ae 2020-08-08 stsp quiet = 1;
200 7fb414ae 2020-08-08 stsp verbose = 0;
201 7fb414ae 2020-08-08 stsp break;
202 ddb547b4 2018-06-04 stsp default:
203 ddb547b4 2018-06-04 stsp usage();
204 ddb547b4 2018-06-04 stsp return 1;
205 ddb547b4 2018-06-04 stsp }
206 ddb547b4 2018-06-04 stsp }
207 ddb547b4 2018-06-04 stsp argc -= optind;
208 ddb547b4 2018-06-04 stsp argv += optind;
209 ddb547b4 2018-06-04 stsp
210 ddb547b4 2018-06-04 stsp RUN_TEST(idset_add_remove_iter(), "idset_add_remove_iter");
211 ddb547b4 2018-06-04 stsp
212 ddb547b4 2018-06-04 stsp return failure ? 1 : 0;
213 ddb547b4 2018-06-04 stsp }