2 * Copyright (c) 2020 Stefan Sperling <stsp@openbsd.org>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include <sys/queue.h>
29 #include "got_error.h"
30 #include "got_object.h"
32 #include "got_fetch.h"
35 #include "got_lib_object_idset.h"
36 #include "got_lib_sha1.h"
37 #include "got_lib_inflate.h"
38 #include "got_lib_delta.h"
41 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
48 test_printf(const char *fmt, ...)
63 const struct got_error *err = NULL;
64 const struct parse_uri_test {
69 const char *server_path;
70 const char *repo_name;
73 { "", NULL, NULL, NULL, NULL, NULL, GOT_ERR_PARSE_URI },
74 { "git:", NULL, NULL, NULL, NULL, NULL, GOT_ERR_PARSE_URI },
76 NULL, NULL, NULL, NULL, NULL, GOT_ERR_PARSE_URI },
77 { "git://localhost////",
78 NULL, NULL, NULL, NULL, NULL, GOT_ERR_PARSE_URI },
79 { "git://127.0.0.1/git/",
80 "git", "127.0.0.1", NULL, "/git", "git", GOT_ERR_OK },
81 { "git:///127.0.0.1/git/",
82 NULL, NULL, NULL, NULL, NULL, GOT_ERR_PARSE_URI },
84 NULL, NULL, NULL, NULL, NULL, GOT_ERR_PARSE_URI },
86 { "git://127.0.0.1/git/myrepo",
87 "git", "127.0.0.1", NULL,
88 "/git/myrepo", "myrepo", GOT_ERR_OK },
89 { "git://127.0.0.1//git/myrepo",
90 "git", "127.0.0.1", NULL,
91 "/git/myrepo", "myrepo", GOT_ERR_OK },
92 { "git://127.0.0.1/////git//myrepo",
93 "git", "127.0.0.1", NULL,
94 "/git//myrepo", "myrepo", GOT_ERR_OK },
95 { "http://127.0.0.1/git/myrepo",
96 "http", "127.0.0.1", NULL,
97 "/git/myrepo", "myrepo", GOT_ERR_OK },
98 { "gopher://127.0.0.1/git/myrepo",
99 "gopher", "127.0.0.1", NULL,
100 "/git/myrepo", "myrepo", GOT_ERR_OK },
102 { "git://127.0.0.1:22/git/myrepo",
103 "git", "127.0.0.1", "22", "/git/myrepo", "myrepo",
105 { "git://127.0.0.1/git/repos/foo/bar/myrepo.git",
106 "git", "127.0.0.1", NULL,
107 "/git/repos/foo/bar/myrepo.git", "myrepo", GOT_ERR_OK },
108 { "https://127.0.0.1/git/repos/foo/../bar/myrepo.git",
109 "https", "127.0.0.1", NULL,
110 "/git/repos/foo/../bar/myrepo.git", "myrepo",
113 { "git+ssh://127.0.0.1:22/git/myrepo",
114 "git+ssh", "127.0.0.1", "22", "/git/myrepo", "myrepo",
116 { "ssh://127.0.0.1:22/git/myrepo",
117 "ssh", "127.0.0.1", "22", "/git/myrepo", "myrepo",
120 { "127.0.0.1:git/myrepo",
121 "ssh", "127.0.0.1", NULL, "git/myrepo", "myrepo",
123 { "127.0.0.1:/git/myrepo",
124 "ssh", "127.0.0.1", NULL, "/git/myrepo", "myrepo",
126 { "127.0.0.1:22/git/myrepo",
127 "ssh", "127.0.0.1", NULL, "22/git/myrepo", "myrepo",
132 for (i = 0; i < nitems(test_data); i++) {
133 const char *uri = test_data[i].uri;
134 const char *expected_proto = test_data[i].proto;
135 const char *expected_host = test_data[i].host;
136 const char *expected_port = test_data[i].port;
137 const char *expected_server_path = test_data[i].server_path;
138 const char *expected_repo_name = test_data[i].repo_name;
139 char *proto, *host, *port, *server_path, *repo_name;
141 err = got_dial_parse_uri(&proto, &host, &port, &server_path,
143 if (err && err->code != test_data[i].errcode) {
144 test_printf("%d: error code %d; expected %d\n",
145 i, err->code, test_data[i].errcode);
149 if (expected_proto == NULL && proto != NULL) {
150 test_printf("%d: proto %s; expected NULL\n", i, proto);
153 if (expected_host == NULL && host != NULL) {
154 test_printf("%d: host %s; expected NULL\n", i, host);
157 if (expected_port == NULL && port != NULL) {
158 test_printf("%d: port %s; expected NULL\n", i, port);
161 if (expected_server_path == NULL && server_path != NULL) {
162 test_printf("%d: server path %s; expected NULL\n", i,
166 if (expected_repo_name == NULL && repo_name != NULL) {
167 test_printf("%d: repo name %s; expected NULL\n", i,
172 if (expected_proto != NULL && proto == NULL) {
173 test_printf("%d: proto NULL; expected %s\n", i,
177 if (expected_host != NULL && host == NULL) {
178 test_printf("%d: host NULL; expected %s\n", i,
182 if (expected_port != NULL && port == NULL) {
183 test_printf("%d: port NULL; expected %s\n", i,
187 if (expected_server_path != NULL && server_path == NULL) {
188 test_printf("%d: server path %s; expected %s\n", i,
189 expected_server_path);
192 if (expected_repo_name != NULL && repo_name == NULL) {
193 test_printf("%d: repo name NULL; expected %s\n", i,
198 if (expected_proto != NULL && strcmp(expected_proto, proto)) {
199 test_printf("%d: proto %s; expected %s\n", i, proto,
204 if (expected_host != NULL && strcmp(expected_host, host)) {
205 test_printf("%d: host %s; expected %s\n", i, host,
210 if (expected_port != NULL && strcmp(expected_port, port)) {
211 test_printf("%d: port %s; expected %s\n", i, port,
216 if (expected_server_path != NULL &&
217 strcmp(expected_server_path, server_path)) {
218 test_printf("%d: server_path %s; expected %s\n", i,
219 server_path, expected_server_path);
223 if (expected_repo_name != NULL &&
224 strcmp(expected_repo_name, repo_name)) {
225 test_printf("%d: repo_name %s; expected %s\n", i,
226 repo_name, expected_repo_name);
245 #define RUN_TEST(expr, name) \
246 { test_ok = (expr); \
247 if (!quiet) printf("test_%s %s\n", (name), test_ok ? "ok" : "failed"); \
248 failure = (failure || !test_ok); }
253 fprintf(stderr, "usage: fetch_test [-v] [-q]\n");
257 main(int argc, char *argv[])
259 int test_ok = 0, failure = 0;
263 if (pledge("stdio", NULL) == -1)
267 while ((ch = getopt(argc, argv, "qv")) != -1) {
285 RUN_TEST(fetch_parse_uri(), "fetch_parse_uri");
287 return failure ? 1 : 0;