Imported Upstream version 0.8.0.4
[psensor-pkg-debian.git] / tests / test_url_normalize.c
1 /*
2  * Copyright (C) 2010-2011 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19
20 #include <stdlib.h>
21 #include <stdio.h>
22 #include <string.h>
23 #include <sys/stat.h>
24
25 #include "../src/lib/url.h"
26
27 int test_url_normalize(const char *url, const char *ref_url)
28 {
29         int ret;
30         char *tmp = url_normalize(url);
31
32         if (!strcmp(tmp, ref_url)) {
33                 ret = 1;
34         } else {
35                 fprintf(stderr,
36                         "FAILURE: "
37                         "url_normalize(%s) returns %s instead of %s\n",
38                         url,
39                         tmp,
40                         ref_url);
41                 ret = 0;
42         }
43
44         free(tmp);
45
46         return ret;
47 }
48
49 int tests_url_normalize()
50 {
51         int failures;
52
53         failures = 0;
54
55         if (!test_url_normalize("http://test/test", "http://test/test"))
56                 failures++;
57
58         if (!test_url_normalize("http://test/test/", "http://test/test"))
59                 failures++;
60
61         return failures;
62 }
63
64 int main(int argc, char **argv)
65 {
66         int failures;
67
68         failures = 0;
69
70         failures += tests_url_normalize();
71
72         if (failures) 
73                 exit(EXIT_FAILURE);
74         else
75                 exit(EXIT_SUCCESS);
76 }