chiark / gitweb /
make sure gcov reports generated after all tests complete
[disorder] / libtests / t-url.c
CommitLineData
b90f122b
RK
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2005, 2007, 2008 Richard Kettlewell
4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
b90f122b 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
b90f122b 8 * (at your option) any later version.
e7eb3a27
RK
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
b90f122b 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
b90f122b
RK
17 */
18#include "test.h"
19
c68d8eba 20static void test_url(void) {
b90f122b 21 struct url p;
b90f122b
RK
22
23 insist(parse_url("http://www.example.com/example/path", &p) == 0);
24 check_string(p.scheme, "http");
25 check_string(p.host, "www.example.com");
26 insist(p.port == -1);
27 check_string(p.path, "/example/path");
28 insist(p.query == 0);
29
30 insist(parse_url("https://www.example.com:82/example%2fpath?+query+", &p) == 0);
31 check_string(p.scheme, "https");
32 check_string(p.host, "www.example.com");
33 insist(p.port == 82);
34 check_string(p.path, "/example/path");
35 check_string(p.query, "+query+");
36
37 insist(parse_url("//www.example.com/example/path", &p) == 0);
38 insist(p.scheme == 0);
39 check_string(p.host, "www.example.com");
40 insist(p.port == -1);
41 check_string(p.path, "/example/path");
42 insist(p.query == 0);
43
44 insist(parse_url("http://www.example.com:100000/", &p) == -1);
45 insist(parse_url("http://www.example.com:1000000000000/", &p) == -1);
46 insist(parse_url("http://www.example.com/example%2zpath", &p) == -1);
b69b2395
RK
47
48 setenv("SERVER_NAME", "www.anjou.terraraq.org.uk", 1);
49 setenv("SERVER_PORT", "80", 1);
50 setenv("SCRIPT_NAME", "/~richard/env.cgi", 1);
cc5b0a8e 51 check_string(infer_url(1),
b69b2395
RK
52 "http://www.anjou.terraraq.org.uk/~richard/env.cgi");
53 setenv("HTTPS", "on", 1);
cc5b0a8e 54 check_string(infer_url(1),
b69b2395
RK
55 "https://www.anjou.terraraq.org.uk/~richard/env.cgi");
56 setenv("QUERY_STRING", "foo", 1);
cc5b0a8e 57 check_string(infer_url(1),
b69b2395
RK
58 "https://www.anjou.terraraq.org.uk/~richard/env.cgi");
59 setenv("REQUEST_URI", "/~richard/env%2ecgi", 1);
cc5b0a8e 60 check_string(infer_url(1),
b69b2395
RK
61 "https://www.anjou.terraraq.org.uk/~richard/env%2ecgi");
62 setenv("REQUEST_URI", "/~richard/env%2ecgi?foo", 1);
cc5b0a8e 63 check_string(infer_url(1),
b69b2395
RK
64 "https://www.anjou.terraraq.org.uk/~richard/env%2ecgi");
65 setenv("SERVER_PORT", "8080", 1);
cc5b0a8e 66 check_string(infer_url(1),
b69b2395 67 "https://www.anjou.terraraq.org.uk:8080/~richard/env%2ecgi");
b90f122b
RK
68}
69
c68d8eba
RK
70TEST(url);
71
b90f122b
RK
72/*
73Local Variables:
74c-basic-offset:2
75comment-column:40
76fill-column:79
77indent-tabs-mode:nil
78End:
79*/