Fix bug #42294
[apr-util.git] / test / testuri.c
blobb84df9a1e9395e5c73b18fb6f930b10d87ee9417
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements. See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 #include <stdio.h>
18 #include <stdlib.h>
20 #include "testutil.h"
21 #include "apr_general.h"
22 #include "apr_strings.h"
23 #include "apr_uri.h"
25 struct aup_test {
26 const char *uri;
27 apr_status_t rv;
28 const char *scheme;
29 const char *hostinfo;
30 const char *user;
31 const char *password;
32 const char *hostname;
33 const char *port_str;
34 const char *path;
35 const char *query;
36 const char *fragment;
37 apr_port_t port;
40 struct aup_test aup_tests[] =
42 { "http://[/::1]/index.html", APR_EGENERAL },
43 { "http://[", APR_EGENERAL },
44 { "http://[?::1]/index.html", APR_EGENERAL },
47 "http://127.0.0.1:9999/asdf.html",
48 0, "http", "127.0.0.1:9999", NULL, NULL, "127.0.0.1", "9999", "/asdf.html", NULL, NULL, 9999
51 "http://127.0.0.1:9999a/asdf.html",
52 APR_EGENERAL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0
55 "http://[::127.0.0.1]:9999/asdf.html",
56 0, "http", "[::127.0.0.1]:9999", NULL, NULL, "::127.0.0.1", "9999", "/asdf.html", NULL, NULL, 9999
59 "http://[::127.0.0.1]:9999a/asdf.html",
60 APR_EGENERAL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0
63 "/error/include/top.html",
64 0, NULL, NULL, NULL, NULL, NULL, NULL, "/error/include/top.html", NULL, NULL, 0
67 "/error/include/../contact.html.var",
68 0, NULL, NULL, NULL, NULL, NULL, NULL, "/error/include/../contact.html.var", NULL, NULL, 0
71 "/",
72 0, NULL, NULL, NULL, NULL, NULL, NULL, "/", NULL, NULL, 0
75 "/manual/",
76 0, NULL, NULL, NULL, NULL, NULL, NULL, "/manual/", NULL, NULL, 0
79 "/cocoon/developing/graphics/Using%20Databases-label_over.jpg",
80 0, NULL, NULL, NULL, NULL, NULL, NULL, "/cocoon/developing/graphics/Using%20Databases-label_over.jpg", NULL, NULL, 0
83 "http://sonyamt:garbage@127.0.0.1/filespace/",
84 0, "http", "sonyamt:garbage@127.0.0.1", "sonyamt", "garbage", "127.0.0.1", NULL, "/filespace/", NULL, NULL, 0
87 "http://sonyamt:garbage@[fe80::1]/filespace/",
88 0, "http", "sonyamt:garbage@[fe80::1]", "sonyamt", "garbage", "fe80::1", NULL, "/filespace/", NULL, NULL, 0
91 "http://sonyamt@[fe80::1]/filespace/?arg1=store",
92 0, "http", "sonyamt@[fe80::1]", "sonyamt", NULL, "fe80::1", NULL, "/filespace/", "arg1=store", NULL, 0
95 "//www.apache.org/",
96 0, NULL, "www.apache.org", NULL, NULL, "www.apache.org", NULL, "/", NULL, NULL, 0
100 struct uph_test {
101 const char *hostinfo;
102 apr_status_t rv;
103 const char *hostname;
104 const char *port_str;
105 apr_port_t port;
108 struct uph_test uph_tests[] =
111 "www.ibm.com:443",
112 0, "www.ibm.com", "443", 443
115 "[fe80::1]:443",
116 0, "fe80::1", "443", 443
119 "127.0.0.1:443",
120 0, "127.0.0.1", "443", 443
123 "127.0.0.1",
124 APR_EGENERAL, NULL, NULL, 0
127 "[fe80:80",
128 APR_EGENERAL, NULL, NULL, 0
131 "fe80::80]:443",
132 APR_EGENERAL, NULL, NULL, 0
136 #if 0
137 static void show_info(apr_status_t rv, apr_status_t expected, const apr_uri_t *info)
139 if (rv != expected) {
140 fprintf(stderr, " actual rv: %d expected rv: %d\n", rv, expected);
142 else {
143 fprintf(stderr,
144 " scheme: %s\n"
145 " hostinfo: %s\n"
146 " user: %s\n"
147 " password: %s\n"
148 " hostname: %s\n"
149 " port_str: %s\n"
150 " path: %s\n"
151 " query: %s\n"
152 " fragment: %s\n"
153 " hostent: %p\n"
154 " port: %u\n"
155 " is_initialized: %u\n"
156 " dns_looked_up: %u\n"
157 " dns_resolved: %u\n",
158 info->scheme, info->hostinfo, info->user, info->password,
159 info->hostname, info->port_str, info->path, info->query,
160 info->fragment, info->hostent, info->port, info->is_initialized,
161 info->dns_looked_up, info->dns_resolved);
164 #endif
166 static void test_aup(abts_case *tc, void *data)
168 int i;
169 apr_status_t rv;
170 apr_uri_t info;
171 struct aup_test *t;
172 const char *s = NULL;
174 for (i = 0; i < sizeof(aup_tests) / sizeof(aup_tests[0]); i++) {
175 char msg[256];
177 memset(&info, 0, sizeof(info));
178 t = &aup_tests[i];
179 rv = apr_uri_parse(p, t->uri, &info);
180 apr_snprintf(msg, sizeof msg, "uri '%s': rv=%d not %d", t->uri,
181 rv, t->rv);
182 ABTS_ASSERT(tc, msg, rv == t->rv);
183 if (t->rv == APR_SUCCESS) {
184 ABTS_STR_EQUAL(tc, info.scheme, t->scheme);
185 ABTS_STR_EQUAL(tc, info.hostinfo, t->hostinfo);
186 ABTS_STR_EQUAL(tc, info.user, t->user);
187 ABTS_STR_EQUAL(tc, info.password, t->password);
188 ABTS_STR_EQUAL(tc, info.hostname, t->hostname);
189 ABTS_STR_EQUAL(tc, info.port_str, t->port_str);
190 ABTS_STR_EQUAL(tc, info.path, t->path);
191 ABTS_STR_EQUAL(tc, info.query, t->query);
192 ABTS_STR_EQUAL(tc, info.user, t->user);
193 ABTS_INT_EQUAL(tc, info.port, t->port);
195 s = apr_uri_unparse(p, &info, APR_URI_UNP_REVEALPASSWORD);
196 ABTS_STR_EQUAL(tc, s, t->uri);
201 static void test_uph(abts_case *tc, void *data)
203 int i;
204 apr_status_t rv;
205 apr_uri_t info;
206 struct uph_test *t;
208 for (i = 0; i < sizeof(uph_tests) / sizeof(uph_tests[0]); i++) {
209 memset(&info, 0, sizeof(info));
210 t = &uph_tests[i];
211 rv = apr_uri_parse_hostinfo(p, t->hostinfo, &info);
212 ABTS_INT_EQUAL(tc, rv, t->rv);
213 if (t->rv == APR_SUCCESS) {
214 ABTS_STR_EQUAL(tc, info.hostname, t->hostname);
215 ABTS_STR_EQUAL(tc, info.port_str, t->port_str);
216 ABTS_INT_EQUAL(tc, info.port, t->port);
221 abts_suite *testuri(abts_suite *suite)
223 suite = ADD_SUITE(suite);
225 abts_run_test(suite, test_aup, NULL);
226 abts_run_test(suite, test_uph, NULL);
228 return suite;