Reformar get name funtion. Add test.
[bertos.git] / bertos / net / http_test.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2011 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \brief HTTP Server test
34  *
35  * \author Daniele Basile <asterix@develer.com>
36  */
37
38 #include <cfg/compiler.h>
39 #include <cfg/test.h>
40 #include <cfg/debug.h>
41
42 #include <net/http.h>
43
44 #include <string.h>
45
46 static const char get_str[] = "\
47 GET /test/page1 HTTP/1.1 Host: 10.3.3.199 Connection: keep-alive \
48 User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.1 \
49 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1 \
50 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 \
51 Accept-Encoding: gzip,deflate,sdch Accept-Language: it-IT,it;q=0.8,en-US;\
52 q=0.6,en;q=0.4 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3";
53
54
55 static const char get_str1[] = "\
56 GET /test/page1";
57
58 static const char get_str2[] = "\
59 GET ";
60
61 static const char get_str3[] = "\
62 GAT /test/page1 HTTP/1.1 Host: 10.3.3.199 Connection: keep-alive \
63 User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.1 \
64 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1 \
65 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 \
66 Accept-Encoding: gzip,deflate,sdch Accept-Language: it-IT,it;q=0.8,en-US;\
67 q=0.6,en;q=0.4 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3";
68
69 int http_testSetup(void)
70 {
71         kdbg_init();
72         return 0;
73 }
74
75 int http_testRun(void)
76 {
77         char name[80];
78         memset(name, 0, sizeof(name));
79         http_getPageName(get_str, sizeof(get_str), name, sizeof(name));
80
81         if (!strcmp("/test/page1", name))
82                 goto error;
83
84         http_getPageName(get_str1, sizeof(get_str1), name, sizeof(name));
85
86         kprintf("1 name %s\n", name);
87         if (!strcmp("/test/page1", name))
88                 goto error;
89
90         http_getPageName(get_str2, sizeof(get_str2), name, sizeof(name));
91
92         kprintf("2 name %s\n", name);
93         if (name[0] != '\0')
94                 goto error;
95
96         http_getPageName(get_str2, sizeof(get_str2), name, sizeof(name));
97
98         kprintf("3 name %s\n", name);
99         if (name[0] != '\0')
100                 goto error;
101
102         return 0;
103
104 error:
105         kprintf("Error!\n");
106         return -1;
107 }
108
109 int http_testTearDown(void)
110 {
111         return 0;
112 }
113
114 TEST_MAIN(http);