1 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * 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.
21 #include "apr_general.h"
22 #include "apr_strings.h"
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
72 0, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, "/", NULL
, NULL
, 0
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
96 0, NULL
, "www.apache.org", NULL
, NULL
, "www.apache.org", NULL
, "/", NULL
, NULL
, 0
101 const char *hostinfo
;
103 const char *hostname
;
104 const char *port_str
;
108 struct uph_test uph_tests
[] =
112 0, "www.ibm.com", "443", 443
116 0, "fe80::1", "443", 443
120 0, "127.0.0.1", "443", 443
124 APR_EGENERAL
, NULL
, NULL
, 0
128 APR_EGENERAL
, NULL
, NULL
, 0
132 APR_EGENERAL
, NULL
, NULL
, 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
);
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
);
166 static void test_aup(abts_case
*tc
, void *data
)
172 const char *s
= NULL
;
174 for (i
= 0; i
< sizeof(aup_tests
) / sizeof(aup_tests
[0]); i
++) {
177 memset(&info
, 0, sizeof(info
));
179 rv
= apr_uri_parse(p
, t
->uri
, &info
);
180 apr_snprintf(msg
, sizeof msg
, "uri '%s': rv=%d not %d", t
->uri
,
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
)
208 for (i
= 0; i
< sizeof(uph_tests
) / sizeof(uph_tests
[0]); i
++) {
209 memset(&info
, 0, sizeof(info
));
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
);