f0dbbf49cdddd42c6a19dd9d0ab83e4c384ee512
[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  * notest: avr
38  */
39
40 #include <cfg/compiler.h>
41 #include <cfg/test.h>
42 #include <cfg/debug.h>
43
44 #include <net/http.h>
45
46 #include <string.h>
47
48 static const char get_str[] = "\
49 GET /test/page1 HTTP/1.1 Host: 10.3.3.199 Connection: keep-alive \
50 User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.1 \
51 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1 \
52 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 \
53 Accept-Encoding: gzip,deflate,sdch Accept-Language: it-IT,it;q=0.8,en-US;\
54 q=0.6,en;q=0.4 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3";
55
56
57 static const char get_str1[] = "\
58 GET /test/page1";
59
60 static const char get_str2[] = "\
61 GET ";
62
63 static const char get_str3[] = "\
64 GAT /test/page1 HTTP/1.1 Host: 10.3.3.199 Connection: keep-alive \
65 User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.1 \
66 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1 \
67 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 \
68 Accept-Encoding: gzip,deflate,sdch Accept-Language: it-IT,it;q=0.8,en-US;\
69 q=0.6,en;q=0.4 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3";
70
71
72 static const char uri[] = "test%5B%5D!@;'%22%5C.%20";
73 static const char uri_check[] = "test[]!@;'\"\\. ";
74
75 static const char uri1[] = "!*'();:@&=%2B%24%2C/?#%5B%5D%3C%3E%7E.%22%7B%7D%7C%5C-%60_%5E%25";
76 static const char uri_check1[] = "!*'();:@&=+$,/?#[]<>~.\"{}|\\-`_^%";
77
78 static const char uri2[] = "test+test1+test2";
79 static const char uri_check2[] = "test test1 test2";
80
81 static char token_str[] = "var1=1&var2=2&var3=3&var4=4";
82 static char token_str1[] = "var1=1&var2=2&=3&var4=";
83 static char token_str2[] = "var1=test+test&var2=2&var3=test%5B%5D!@;'%22%5C.%20&var4=4";
84
85 static struct {const char *content;} contents[] =
86 {
87         {"one/two/three/test"},
88         {"one/two/three.htm"},
89         {"one/test.css"},
90         {"one/two/test.js"},
91         {"one/two/test.png"},
92         {"one/two/test.ico"},
93         {"one/two/test.jpg"},
94         {"one/two/test.gif"},
95 };
96
97
98 static int contents_check_type[] =
99 {
100         HTTP_CONTENT_JSON,
101         HTTP_CONTENT_HTML,
102         HTTP_CONTENT_CSS,
103         HTTP_CONTENT_JS,
104         HTTP_CONTENT_PNG,
105         HTTP_CONTENT_JPEG,
106         HTTP_CONTENT_JPEG,
107         HTTP_CONTENT_GIF,
108 };
109
110 #define CONTENT_TEST_CNT  8
111
112
113 int http_testSetup(void)
114 {
115         kdbg_init();
116         return 0;
117 }
118
119 int http_testRun(void)
120 {
121         char name[80];
122         memset(name, 0, sizeof(name));
123         http_getPageName(get_str, sizeof(get_str), name, sizeof(name));
124
125         if (strcmp("test/page1", name))
126         {
127                 kprintf("error 0 %s\n", name);
128                 goto error;
129         }
130
131         http_getPageName(get_str1, sizeof(get_str1), name, sizeof(name));
132
133         if (strcmp("test/page1", name))
134         {
135                 kprintf("error 1 %s\n", name);
136                 goto error;
137         }
138
139
140         http_getPageName(get_str2, sizeof(get_str2), name, sizeof(name));
141
142         if (name[0] != '\0')
143         {
144                 kprintf("error 2 %s\n", name);
145                 goto error;
146         }
147
148
149         http_getPageName(get_str2, sizeof(get_str2), name, sizeof(name));
150
151         if (name[0] != '\0')
152         {
153                 kprintf("error 3 %s\n", name);
154                 goto error;
155         }
156
157
158         char decoded[sizeof(uri)];
159         http_decodeUrl(uri,sizeof(uri), decoded, sizeof(uri));
160
161         if (strcmp(decoded, uri_check))
162         {
163                 kprintf("error 4 %s\n", decoded);
164                 goto error;
165         }
166
167         char decoded1[sizeof(uri1)];
168         http_decodeUrl(uri1,sizeof(uri1), decoded1, sizeof(uri1));
169
170         if (strcmp(decoded1, uri_check1))
171         {
172                 kprintf("error 5 %s\n", decoded1);
173                 goto error;
174         }
175
176         char decoded2[sizeof(uri2)];
177         http_decodeUrl(uri2,sizeof(uri2), decoded2, sizeof(uri2));
178
179         if (strcmp(decoded2, uri_check2))
180         {
181                 kprintf("error 5 %s\n", decoded2);
182                 goto error;
183         }
184
185         int len = http_tokenizeGetRequest(token_str, sizeof(token_str));
186         if (len != 4)
187         {
188                 kprintf("error 6 len %d expect %d\n", len, 4);
189                 goto error;
190         }
191
192         char value[80];
193         http_getValue(token_str, sizeof(token_str), "var1", value, sizeof(value));
194         if (strcmp(value, "1"))
195         {
196                 kprintf("error 6 value %s expect %s\n", value, "1");
197                 goto error;
198
199         }
200
201         http_getValue(token_str, sizeof(token_str), "var4", value, sizeof(value));
202         if (strcmp(value, "4"))
203         {
204                 kprintf("error 6 value %s expect %s\n", value, "4");
205                 goto error;
206
207         }
208
209
210         len = http_tokenizeGetRequest(token_str1, sizeof(token_str1));
211         if (len != 4)
212         {
213                 kprintf("error 7 len %d expect %d\n", len, 4);
214                 goto error;
215         }
216
217         if (http_getValue(token_str1, sizeof(token_str1), "var1", value, sizeof(value)) < 0)
218         {
219                 kprintf("error 7 during get key %s\n", "var1");
220                 goto error;
221         }
222         if (strcmp(value, "1"))
223         {
224                 kprintf("error 7 value %s expect %s\n", value, "1");
225                 goto error;
226
227         }
228
229         if (http_getValue(token_str1, sizeof(token_str1), "var4", value, sizeof(value)) < 0)
230         {
231                 kprintf("error 7 during get key %s\n", "var4");
232                 goto error;
233         }
234
235         if (strcmp(value, ""))
236         {
237                 kprintf("error 7 value %s expect %s\n", value, "");
238                 goto error;
239
240         }
241
242         len = http_tokenizeGetRequest(token_str2, sizeof(token_str2));
243         if (len != 4)
244         {
245                 kprintf("error 8 len %d expect %d\n", len, 4);
246                 goto error;
247         }
248
249         if (http_getValue(token_str2, sizeof(token_str2), "var3", value, sizeof(value)) < 0)
250         {
251                 kprintf("error 8 during get key %s\n", "var3");
252                 goto error;
253         }
254
255         if (strcmp(value, "test[]!@;'\"\\. "))
256         {
257                 kprintf("error 8 value %s expect %s\n", value, "test[]!@;'\"\\. ");
258                 goto error;
259
260         }
261
262         if (http_getValue(token_str2, sizeof(token_str2), "var1", value, sizeof(value)) < 0)
263         {
264                 kprintf("error 7 during get key %s\n", "var1");
265                 goto error;
266         }
267         if (strcmp(value, "test test"))
268         {
269                 kprintf("error 7 value %s expect %s\n", value, "test test");
270                 goto error;
271
272         }
273
274
275         for (int i = 0; i < CONTENT_TEST_CNT; i++)
276         {
277                 int type = http_searchContentType(contents[i].content);
278                 if (type != contents_check_type[i])
279                 {
280                         kprintf("error 8-%d return type %d expect %d\n", i, type, contents_check_type[i]);
281                         kprintf("error 8-%d ext %s\n", i, contents[i].content);
282                         goto error;
283                 }
284         }
285
286         return 0;
287
288 error:
289         kprintf("Error!\n");
290         return -1;
291 }
292
293 int http_testTearDown(void)
294 {
295         return 0;
296 }
297
298 TEST_MAIN(http);