summaryrefslogtreecommitdiffstats
path: root/tinyHTTP/test/test_messages.h
blob: 9173e07ac0cf2ec06d242fd9163ff907e66e83ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
* Copyright (C) 2009 Mamadou Diop.
*
* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*
*/
#ifndef _TEST_MESSAGES_H_
#define _TEST_MESSAGES_H_

#define TEST_MSG_200 \
	"HTTP/1.1 200 OK\r\n" \
	"Date: Wed, 10 Mar 2010 13:37:13 GMT\r\n" \
	"Server: Apache\r\n" \
	"Content-length: 3\r\n" \
	"Expires: Sat, 07 Aug 2010 13:37:13 +0000\r\n" \
	"Cache-Control: public\r\n" \
	"X-Deezer-Cache: HIT\r\n" \
	"Pragma: \r\n" \
	"Keep-Alive: timeout=2, max=100\r\n" \
	"Connection: Keep-Alive\r\n" \
	"Content-Type: video/flv\r\n" \
	"\r\n" \
	"123"

#define TEST_MSG_401 \
	"HTTP/1.1 401 Unauthorized\r\n" \
	"Server: Apache-Coyote/1.1\r\n" \
	"WWW-Authenticate: Digest realm=\"example.com\", qop=\"auth\", nonce=\"f39d20a4dbfbd32d943de9b285d59a30\", opaque=\"c5ad02feb52eb050e464cec3740c0f2e\"\r\n" \
	"WWW-Authenticate: Basic realm=\"WallyWorld\"\r\n" \
	"Transfer-Encoding: chunked;test=21;tes7\r\n" \
	"Date: Wed, 10 Mar 2010 14:20:47 GMT\r\n" \
	"Etag: W/\"1231-3213213\"\r\n" \
	"\r\n"

#define TEST_MSG_WS \
	"Upgrade: websocket\r\n" \
	"Connection: Upgrade\r\n" \
	"Host: 192.168.0.11:5060\r\n" \
	"Origin: null\r\n" \
	"Sec-WebSocket-Key: Z8DmZQ9jZqK7vJqXbsDlYw==\r\n" \
	"Sec-WebSocket-Version: 13, 5, 6\r\n" \
	"Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo=\r\n" \
	"\r\n"

#define TEST_MSG_OPTIONS \
	"OPTIONS /85 HTTP/1.1\r\n" \
	"Host: 192.168.0.37:10063\r\n" \
	"Connection: keep-alive\r\n" \
	"Access-Control-Request-Method: POST\r\n" \
	"Origin: null\r\n" \
	"User-Agent: Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.57 Safari/537.17\r\n" \
	"Access-Control-Request-Headers: connection, origin, content-type\r\n" \
	"Accept: */*\r\n" \
	"Accept-Encoding: gzip,deflate,sdch\r\n" \
	"Accept-Language: en-US,en;q=0.8\r\n" \
	"Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3\r\n" \
	"\r\n"

#define TEST_MSG TEST_MSG_OPTIONS


static void test_messages()
{
    thttp_message_t *message = tsk_null;
    tsk_ragel_state_t state;
    int ret/*, idx*/;

    const char* msg_start = TEST_MSG_WS;
    const char* msg_end = msg_start + tsk_strlen(msg_start);
    //const thttp_header_Sec_WebSocket_Key_t* ws_hdr_key;
    //const thttp_header_Sec_WebSocket_Version_t* ws_hdr_version;
    //const thttp_header_Sec_WebSocket_Accept_t* ws_hdr_accept;
    message = thttp_message_create();

    /*while(msg_start < msg_end){
    	if((idx = tsk_strindexOf(msg_start, (msg_end - msg_start), "\r\n")) <= 2){
    		break;
    	}
    	idx+= 2;
    	tsk_ragel_state_init(&state, msg_start, idx);
    	if((ret = thttp_header_parse(&state, message))){
    		break;
    	}
    	msg_start += idx;
    }

    if((ws_hdr_key = (const thttp_header_Sec_WebSocket_Key_t*)thttp_message_get_header(message, thttp_htype_Sec_WebSocket_Key))){
    	TSK_DEBUG_INFO("Sec-WebSocket-Key: %s", ws_hdr_key->value);
    }

    if((ws_hdr_accept = (const thttp_header_Sec_WebSocket_Accept_t*)thttp_message_get_header(message, thttp_htype_Sec_WebSocket_Accept))){
    	TSK_DEBUG_INFO("Sec-WebSocket-Accept: %s", ws_hdr_accept->value);
    }

    if((ws_hdr_version = (const thttp_header_Sec_WebSocket_Version_t*)thttp_message_get_header(message, thttp_htype_Sec_WebSocket_Version))){
    	const tsk_list_item_t* item;
    	tsk_list_foreach(item, ws_hdr_version->values){
    		TSK_DEBUG_INFO("Sec-WebSocket-Version: %s", TSK_STRING_STR(item->data));
    	}
    }*/


    /* deserialize the message */
    tsk_ragel_state_init(&state, TEST_MSG, strlen(TEST_MSG));
    if(!(ret = thttp_message_parse(&state, &message, tsk_true))) {
        tsk_buffer_t *buffer = tsk_buffer_create_null();

        /* serialize the message */
        thttp_message_serialize(message, buffer);
        TSK_DEBUG_INFO("HTTP Message=\n%s", TSK_BUFFER_TO_STRING(buffer));

        TSK_OBJECT_SAFE_FREE(buffer);
    }
    else {
        TSK_DEBUG_ERROR("Failed to parse HTTP message.");
    }

    TSK_OBJECT_SAFE_FREE(message);

    getchar();
}

#endif /* _TEST_MESSAGES_H_ */

OpenPOWER on IntegriCloud