Blame


1 82ebf666 2020-03-18 stsp /*
2 82ebf666 2020-03-18 stsp * Copyright (c) 2020 Stefan Sperling <stsp@openbsd.org>
3 82ebf666 2020-03-18 stsp *
4 82ebf666 2020-03-18 stsp * Permission to use, copy, modify, and distribute this software for any
5 82ebf666 2020-03-18 stsp * purpose with or without fee is hereby granted, provided that the above
6 82ebf666 2020-03-18 stsp * copyright notice and this permission notice appear in all copies.
7 82ebf666 2020-03-18 stsp *
8 82ebf666 2020-03-18 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 82ebf666 2020-03-18 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 82ebf666 2020-03-18 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 82ebf666 2020-03-18 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 82ebf666 2020-03-18 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 82ebf666 2020-03-18 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 82ebf666 2020-03-18 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 82ebf666 2020-03-18 stsp */
16 82ebf666 2020-03-18 stsp
17 8b925c6c 2022-07-16 thomas #include <sys/queue.h>
18 82ebf666 2020-03-18 stsp
19 82ebf666 2020-03-18 stsp #include <limits.h>
20 82ebf666 2020-03-18 stsp #include <stdarg.h>
21 82ebf666 2020-03-18 stsp #include <stdlib.h>
22 82ebf666 2020-03-18 stsp #include <stdio.h>
23 82ebf666 2020-03-18 stsp #include <string.h>
24 82ebf666 2020-03-18 stsp #include <unistd.h>
25 82ebf666 2020-03-18 stsp #include <err.h>
26 82ebf666 2020-03-18 stsp #include <zlib.h>
27 82ebf666 2020-03-18 stsp #include <time.h>
28 82ebf666 2020-03-18 stsp
29 82ebf666 2020-03-18 stsp #include "got_error.h"
30 82ebf666 2020-03-18 stsp #include "got_object.h"
31 629bd8f3 2020-03-18 stsp #include "got_path.h"
32 82ebf666 2020-03-18 stsp #include "got_fetch.h"
33 2e601464 2021-09-06 stsp #include "got_dial.h"
34 82ebf666 2020-03-18 stsp
35 82ebf666 2020-03-18 stsp #include "got_lib_object_idset.h"
36 82ebf666 2020-03-18 stsp #include "got_lib_sha1.h"
37 82ebf666 2020-03-18 stsp #include "got_lib_inflate.h"
38 82ebf666 2020-03-18 stsp #include "got_lib_delta.h"
39 82ebf666 2020-03-18 stsp
40 82ebf666 2020-03-18 stsp #ifndef nitems
41 82ebf666 2020-03-18 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
42 82ebf666 2020-03-18 stsp #endif
43 82ebf666 2020-03-18 stsp
44 82ebf666 2020-03-18 stsp static int verbose;
45 7fb414ae 2020-08-08 stsp static int quiet;
46 82ebf666 2020-03-18 stsp
47 ef20f542 2022-06-26 thomas static void
48 0c6f49ba 2022-07-01 thomas test_printf(const char *fmt, ...)
49 82ebf666 2020-03-18 stsp {
50 82ebf666 2020-03-18 stsp va_list ap;
51 82ebf666 2020-03-18 stsp
52 82ebf666 2020-03-18 stsp if (!verbose)
53 82ebf666 2020-03-18 stsp return;
54 82ebf666 2020-03-18 stsp
55 82ebf666 2020-03-18 stsp va_start(ap, fmt);
56 82ebf666 2020-03-18 stsp vprintf(fmt, ap);
57 82ebf666 2020-03-18 stsp va_end(ap);
58 82ebf666 2020-03-18 stsp }
59 82ebf666 2020-03-18 stsp
60 82ebf666 2020-03-18 stsp static int
61 82ebf666 2020-03-18 stsp fetch_parse_uri(void)
62 82ebf666 2020-03-18 stsp {
63 82ebf666 2020-03-18 stsp const struct got_error *err = NULL;
64 fa8129f7 2022-03-22 thomas const struct parse_uri_test {
65 82ebf666 2020-03-18 stsp const char *uri;
66 82ebf666 2020-03-18 stsp const char *proto;
67 82ebf666 2020-03-18 stsp const char *host;
68 82ebf666 2020-03-18 stsp const char *port;
69 82ebf666 2020-03-18 stsp const char *server_path;
70 82ebf666 2020-03-18 stsp const char *repo_name;
71 82ebf666 2020-03-18 stsp int errcode;
72 82ebf666 2020-03-18 stsp } test_data[] = {
73 82ebf666 2020-03-18 stsp { "", NULL, NULL, NULL, NULL, NULL, GOT_ERR_PARSE_URI },
74 82ebf666 2020-03-18 stsp { "git:", NULL, NULL, NULL, NULL, NULL, GOT_ERR_PARSE_URI },
75 82ebf666 2020-03-18 stsp { "git://localhost/",
76 82ebf666 2020-03-18 stsp NULL, NULL, NULL, NULL, NULL, GOT_ERR_PARSE_URI },
77 82ebf666 2020-03-18 stsp { "git://localhost////",
78 82ebf666 2020-03-18 stsp NULL, NULL, NULL, NULL, NULL, GOT_ERR_PARSE_URI },
79 82ebf666 2020-03-18 stsp { "git://127.0.0.1/git/",
80 26ec43f5 2022-03-07 thomas "git", "127.0.0.1", NULL, "/git", "git", GOT_ERR_OK },
81 82ebf666 2020-03-18 stsp { "git:///127.0.0.1/git/",
82 82ebf666 2020-03-18 stsp NULL, NULL, NULL, NULL, NULL, GOT_ERR_PARSE_URI },
83 9a682fbe 2020-03-19 stsp { "/127.0.0.1:/git/",
84 9a682fbe 2020-03-19 stsp NULL, NULL, NULL, NULL, NULL, GOT_ERR_PARSE_URI },
85 82ebf666 2020-03-18 stsp
86 82ebf666 2020-03-18 stsp { "git://127.0.0.1/git/myrepo",
87 0921e08f 2020-09-24 stsp "git", "127.0.0.1", NULL,
88 0921e08f 2020-09-24 stsp "/git/myrepo", "myrepo", GOT_ERR_OK },
89 0921e08f 2020-09-24 stsp { "git://127.0.0.1//git/myrepo",
90 62a4c94c 2020-03-20 stsp "git", "127.0.0.1", NULL,
91 a244cd92 2020-03-19 stsp "/git/myrepo", "myrepo", GOT_ERR_OK },
92 0921e08f 2020-09-24 stsp { "git://127.0.0.1/////git//myrepo",
93 0921e08f 2020-09-24 stsp "git", "127.0.0.1", NULL,
94 0921e08f 2020-09-24 stsp "/git//myrepo", "myrepo", GOT_ERR_OK },
95 82ebf666 2020-03-18 stsp { "http://127.0.0.1/git/myrepo",
96 62a4c94c 2020-03-20 stsp "http", "127.0.0.1", NULL,
97 a244cd92 2020-03-19 stsp "/git/myrepo", "myrepo", GOT_ERR_OK },
98 82ebf666 2020-03-18 stsp { "gopher://127.0.0.1/git/myrepo",
99 62a4c94c 2020-03-20 stsp "gopher", "127.0.0.1", NULL,
100 a244cd92 2020-03-19 stsp "/git/myrepo", "myrepo", GOT_ERR_OK },
101 82ebf666 2020-03-18 stsp
102 82ebf666 2020-03-18 stsp { "git://127.0.0.1:22/git/myrepo",
103 a244cd92 2020-03-19 stsp "git", "127.0.0.1", "22", "/git/myrepo", "myrepo",
104 a244cd92 2020-03-19 stsp GOT_ERR_OK },
105 82ebf666 2020-03-18 stsp { "git://127.0.0.1/git/repos/foo/bar/myrepo.git",
106 62a4c94c 2020-03-20 stsp "git", "127.0.0.1", NULL,
107 a244cd92 2020-03-19 stsp "/git/repos/foo/bar/myrepo.git", "myrepo", GOT_ERR_OK },
108 82ebf666 2020-03-18 stsp { "https://127.0.0.1/git/repos/foo/../bar/myrepo.git",
109 62a4c94c 2020-03-20 stsp "https", "127.0.0.1", NULL,
110 a244cd92 2020-03-19 stsp "/git/repos/foo/../bar/myrepo.git", "myrepo",
111 a244cd92 2020-03-19 stsp GOT_ERR_OK },
112 82ebf666 2020-03-18 stsp
113 9a682fbe 2020-03-19 stsp { "git+ssh://127.0.0.1:22/git/myrepo",
114 a244cd92 2020-03-19 stsp "git+ssh", "127.0.0.1", "22", "/git/myrepo", "myrepo",
115 a244cd92 2020-03-19 stsp GOT_ERR_OK },
116 9a682fbe 2020-03-19 stsp { "ssh://127.0.0.1:22/git/myrepo",
117 a244cd92 2020-03-19 stsp "ssh", "127.0.0.1", "22", "/git/myrepo", "myrepo",
118 a244cd92 2020-03-19 stsp GOT_ERR_OK },
119 a244cd92 2020-03-19 stsp
120 9a682fbe 2020-03-19 stsp { "127.0.0.1:git/myrepo",
121 62a4c94c 2020-03-20 stsp "ssh", "127.0.0.1", NULL, "git/myrepo", "myrepo",
122 a244cd92 2020-03-19 stsp GOT_ERR_OK },
123 a244cd92 2020-03-19 stsp { "127.0.0.1:/git/myrepo",
124 62a4c94c 2020-03-20 stsp "ssh", "127.0.0.1", NULL, "/git/myrepo", "myrepo",
125 a244cd92 2020-03-19 stsp GOT_ERR_OK },
126 9a682fbe 2020-03-19 stsp { "127.0.0.1:22/git/myrepo",
127 62a4c94c 2020-03-20 stsp "ssh", "127.0.0.1", NULL, "22/git/myrepo", "myrepo",
128 a244cd92 2020-03-19 stsp GOT_ERR_OK },
129 82ebf666 2020-03-18 stsp };
130 6059809a 2020-12-17 stsp size_t i;
131 82ebf666 2020-03-18 stsp
132 82ebf666 2020-03-18 stsp for (i = 0; i < nitems(test_data); i++) {
133 82ebf666 2020-03-18 stsp const char *uri = test_data[i].uri;
134 82ebf666 2020-03-18 stsp const char *expected_proto = test_data[i].proto;
135 82ebf666 2020-03-18 stsp const char *expected_host = test_data[i].host;
136 82ebf666 2020-03-18 stsp const char *expected_port = test_data[i].port;
137 82ebf666 2020-03-18 stsp const char *expected_server_path = test_data[i].server_path;
138 82ebf666 2020-03-18 stsp const char *expected_repo_name = test_data[i].repo_name;
139 82ebf666 2020-03-18 stsp char *proto, *host, *port, *server_path, *repo_name;
140 82ebf666 2020-03-18 stsp
141 2e601464 2021-09-06 stsp err = got_dial_parse_uri(&proto, &host, &port, &server_path,
142 82ebf666 2020-03-18 stsp &repo_name, uri);
143 82ebf666 2020-03-18 stsp if (err && err->code != test_data[i].errcode) {
144 82ebf666 2020-03-18 stsp test_printf("%d: error code %d; expected %d\n",
145 82ebf666 2020-03-18 stsp i, err->code, test_data[i].errcode);
146 82ebf666 2020-03-18 stsp return 0;
147 82ebf666 2020-03-18 stsp }
148 82ebf666 2020-03-18 stsp
149 82ebf666 2020-03-18 stsp if (expected_proto == NULL && proto != NULL) {
150 82ebf666 2020-03-18 stsp test_printf("%d: proto %s; expected NULL\n", i, proto);
151 82ebf666 2020-03-18 stsp return 0;
152 82ebf666 2020-03-18 stsp }
153 82ebf666 2020-03-18 stsp if (expected_host == NULL && host != NULL) {
154 82ebf666 2020-03-18 stsp test_printf("%d: host %s; expected NULL\n", i, host);
155 82ebf666 2020-03-18 stsp return 0;
156 82ebf666 2020-03-18 stsp }
157 82ebf666 2020-03-18 stsp if (expected_port == NULL && port != NULL) {
158 82ebf666 2020-03-18 stsp test_printf("%d: port %s; expected NULL\n", i, port);
159 82ebf666 2020-03-18 stsp return 0;
160 82ebf666 2020-03-18 stsp }
161 82ebf666 2020-03-18 stsp if (expected_server_path == NULL && server_path != NULL) {
162 82ebf666 2020-03-18 stsp test_printf("%d: server path %s; expected NULL\n", i,
163 82ebf666 2020-03-18 stsp server_path);
164 82ebf666 2020-03-18 stsp return 0;
165 82ebf666 2020-03-18 stsp }
166 82ebf666 2020-03-18 stsp if (expected_repo_name == NULL && repo_name != NULL) {
167 82ebf666 2020-03-18 stsp test_printf("%d: repo name %s; expected NULL\n", i,
168 82ebf666 2020-03-18 stsp repo_name);
169 82ebf666 2020-03-18 stsp return 0;
170 82ebf666 2020-03-18 stsp }
171 82ebf666 2020-03-18 stsp
172 82ebf666 2020-03-18 stsp if (expected_proto != NULL && proto == NULL) {
173 82ebf666 2020-03-18 stsp test_printf("%d: proto NULL; expected %s\n", i,
174 82ebf666 2020-03-18 stsp expected_proto);
175 82ebf666 2020-03-18 stsp return 0;
176 82ebf666 2020-03-18 stsp }
177 82ebf666 2020-03-18 stsp if (expected_host != NULL && host == NULL) {
178 82ebf666 2020-03-18 stsp test_printf("%d: host NULL; expected %s\n", i,
179 82ebf666 2020-03-18 stsp expected_host);
180 82ebf666 2020-03-18 stsp return 0;
181 82ebf666 2020-03-18 stsp }
182 82ebf666 2020-03-18 stsp if (expected_port != NULL && port == NULL) {
183 82ebf666 2020-03-18 stsp test_printf("%d: port NULL; expected %s\n", i,
184 82ebf666 2020-03-18 stsp expected_port);
185 82ebf666 2020-03-18 stsp return 0;
186 82ebf666 2020-03-18 stsp }
187 82ebf666 2020-03-18 stsp if (expected_server_path != NULL && server_path == NULL) {
188 82ebf666 2020-03-18 stsp test_printf("%d: server path %s; expected %s\n", i,
189 82ebf666 2020-03-18 stsp expected_server_path);
190 82ebf666 2020-03-18 stsp return 0;
191 82ebf666 2020-03-18 stsp }
192 82ebf666 2020-03-18 stsp if (expected_repo_name != NULL && repo_name == NULL) {
193 82ebf666 2020-03-18 stsp test_printf("%d: repo name NULL; expected %s\n", i,
194 82ebf666 2020-03-18 stsp repo_name);
195 82ebf666 2020-03-18 stsp return 0;
196 82ebf666 2020-03-18 stsp }
197 82ebf666 2020-03-18 stsp
198 82ebf666 2020-03-18 stsp if (expected_proto != NULL && strcmp(expected_proto, proto)) {
199 82ebf666 2020-03-18 stsp test_printf("%d: proto %s; expected %s\n", i, proto,
200 82ebf666 2020-03-18 stsp expected_proto);
201 82ebf666 2020-03-18 stsp return 0;
202 82ebf666 2020-03-18 stsp }
203 82ebf666 2020-03-18 stsp
204 a244cd92 2020-03-19 stsp if (expected_host != NULL && strcmp(expected_host, host)) {
205 a244cd92 2020-03-19 stsp test_printf("%d: host %s; expected %s\n", i, host,
206 a244cd92 2020-03-19 stsp expected_host);
207 a244cd92 2020-03-19 stsp return 0;
208 a244cd92 2020-03-19 stsp }
209 a244cd92 2020-03-19 stsp
210 a244cd92 2020-03-19 stsp if (expected_port != NULL && strcmp(expected_port, port)) {
211 a244cd92 2020-03-19 stsp test_printf("%d: port %s; expected %s\n", i, port,
212 a244cd92 2020-03-19 stsp expected_port);
213 a244cd92 2020-03-19 stsp return 0;
214 a244cd92 2020-03-19 stsp }
215 a244cd92 2020-03-19 stsp
216 a244cd92 2020-03-19 stsp if (expected_server_path != NULL &&
217 a244cd92 2020-03-19 stsp strcmp(expected_server_path, server_path)) {
218 a244cd92 2020-03-19 stsp test_printf("%d: server_path %s; expected %s\n", i,
219 a244cd92 2020-03-19 stsp server_path, expected_server_path);
220 a244cd92 2020-03-19 stsp return 0;
221 a244cd92 2020-03-19 stsp }
222 a244cd92 2020-03-19 stsp
223 a244cd92 2020-03-19 stsp if (expected_repo_name != NULL &&
224 a244cd92 2020-03-19 stsp strcmp(expected_repo_name, repo_name)) {
225 a244cd92 2020-03-19 stsp test_printf("%d: repo_name %s; expected %s\n", i,
226 a244cd92 2020-03-19 stsp repo_name, expected_repo_name);
227 a244cd92 2020-03-19 stsp return 0;
228 a244cd92 2020-03-19 stsp }
229 a244cd92 2020-03-19 stsp
230 82ebf666 2020-03-18 stsp free(proto);
231 82ebf666 2020-03-18 stsp proto = NULL;
232 82ebf666 2020-03-18 stsp free(host);
233 82ebf666 2020-03-18 stsp host = NULL;
234 82ebf666 2020-03-18 stsp free(port);
235 82ebf666 2020-03-18 stsp port = NULL;
236 82ebf666 2020-03-18 stsp free(server_path);
237 82ebf666 2020-03-18 stsp server_path = NULL;
238 82ebf666 2020-03-18 stsp free(repo_name);
239 82ebf666 2020-03-18 stsp repo_name = NULL;
240 82ebf666 2020-03-18 stsp }
241 82ebf666 2020-03-18 stsp
242 82ebf666 2020-03-18 stsp return 1;
243 82ebf666 2020-03-18 stsp }
244 82ebf666 2020-03-18 stsp
245 82ebf666 2020-03-18 stsp #define RUN_TEST(expr, name) \
246 82ebf666 2020-03-18 stsp { test_ok = (expr); \
247 7fb414ae 2020-08-08 stsp if (!quiet) printf("test_%s %s\n", (name), test_ok ? "ok" : "failed"); \
248 82ebf666 2020-03-18 stsp failure = (failure || !test_ok); }
249 82ebf666 2020-03-18 stsp
250 ef20f542 2022-06-26 thomas static void
251 82ebf666 2020-03-18 stsp usage(void)
252 82ebf666 2020-03-18 stsp {
253 7fb414ae 2020-08-08 stsp fprintf(stderr, "usage: fetch_test [-v] [-q]\n");
254 82ebf666 2020-03-18 stsp }
255 82ebf666 2020-03-18 stsp
256 82ebf666 2020-03-18 stsp int
257 82ebf666 2020-03-18 stsp main(int argc, char *argv[])
258 82ebf666 2020-03-18 stsp {
259 82ebf666 2020-03-18 stsp int test_ok = 0, failure = 0;
260 82ebf666 2020-03-18 stsp int ch;
261 82ebf666 2020-03-18 stsp
262 82ebf666 2020-03-18 stsp #ifndef PROFILE
263 82ebf666 2020-03-18 stsp if (pledge("stdio", NULL) == -1)
264 82ebf666 2020-03-18 stsp err(1, "pledge");
265 82ebf666 2020-03-18 stsp #endif
266 82ebf666 2020-03-18 stsp
267 7fb414ae 2020-08-08 stsp while ((ch = getopt(argc, argv, "vq")) != -1) {
268 82ebf666 2020-03-18 stsp switch (ch) {
269 82ebf666 2020-03-18 stsp case 'v':
270 82ebf666 2020-03-18 stsp verbose = 1;
271 7fb414ae 2020-08-08 stsp quiet = 0;
272 82ebf666 2020-03-18 stsp break;
273 7fb414ae 2020-08-08 stsp case 'q':
274 7fb414ae 2020-08-08 stsp quiet = 1;
275 7fb414ae 2020-08-08 stsp verbose = 0;
276 7fb414ae 2020-08-08 stsp break;
277 82ebf666 2020-03-18 stsp default:
278 82ebf666 2020-03-18 stsp usage();
279 82ebf666 2020-03-18 stsp return 1;
280 82ebf666 2020-03-18 stsp }
281 82ebf666 2020-03-18 stsp }
282 82ebf666 2020-03-18 stsp argc -= optind;
283 82ebf666 2020-03-18 stsp argv += optind;
284 82ebf666 2020-03-18 stsp
285 82ebf666 2020-03-18 stsp RUN_TEST(fetch_parse_uri(), "fetch_parse_uri");
286 82ebf666 2020-03-18 stsp
287 82ebf666 2020-03-18 stsp return failure ? 1 : 0;
288 82ebf666 2020-03-18 stsp }