cmogstored.git  about / heads / tags
alternative mogstored implementation for MogileFS
blob 9125b9c142b2e5c2990d84019bba058b93dea85a 9301 bytes (raw)
$ git show gl-env:test/http-parser-1.c	# shows this blob on the CLI

  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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
 
/*
 * Copyright (C) 2012-2016 all contributors <cmogstored-public@bogomips.org>
 * License: GPLv3 or later (see COPYING for details)
 */
#include "check.h"
static struct mog_svc svc = { .persist_client = 1 };
static struct mog_http xhttp;
static struct mog_http *http = &xhttp;
static char *buf;
static size_t len;
static enum mog_parser_state state;

static void assert_path_equal(const char *str)
{
	size_t slen = strlen(str);

	assert(0 == memcmp(str, buf + http->_p.path_tip, slen));
	assert(http->_p.path_end == http->_p.path_tip + slen);
}

static void reset(void)
{
	free(buf);
	mog_http_init(http, &svc);
}

static void buf_set(const char *s)
{
	reset();
	buf = xstrdup(s);
	len = strlen(s);
}

int main(void)
{
	if ("normal HTTP GET request") {
		buf_set("GET /foo HTTP/1.1\r\nHost: 127.6.6.6\r\n\r\n");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.http_method == MOG_HTTP_METHOD_GET
		       && "http_method should be GET");
		assert(http->_p.persistent && "not persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
	}

	if ("normal HTTP GET request with redundant leading slash") {
		buf_set("GET //foo HTTP/1.1\r\nHost: 127.6.6.6\r\n\r\n");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.http_method == MOG_HTTP_METHOD_GET
		       && "http_method should be GET");
		assert(http->_p.persistent && "not persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
	}

	if ("HTTP/1.1 request with explicit close") {
		buf_set("GET /foo HTTP/1.1\r\n"
		        "Host: 127.6.6.6\r\n"
		        "Connection: close\r\n"
		        "\r\n");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.http_method == MOG_HTTP_METHOD_GET
		       && "http_method should be GET");
		assert(http->_p.persistent == 0 && "should not be persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
	}

	if ("HTTP/1.0 request with keepalive") {
		buf_set("GET /foo HTTP/1.0\r\n"
		        "Connection:\r\n keep-alive\r\n"
		        "\r\n");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.http_method == MOG_HTTP_METHOD_GET
		       && "http_method should be GET");
		assert(http->_p.persistent == 1 && "should be persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
	}

	if ("bogus HTTP/1.0 request") {
		buf_set("GET /foo HTTP/1.0\r\n"
		        "Connection:\r\nkeep-alive\r\n"
		        "\r\n");
		state = mog_http_parse(http, buf, len);
		assert(state == MOG_PARSER_ERROR && "parser not errored");
	}

	if ("bogus request") {
		buf_set("adlkf;asdfj\r\n'GET /foo HTTP/1.0\r\n"
		        "Connection:\r\nkeep-alive\r\n"
		        "\r\n");
		state = mog_http_parse(http, buf, len);
		assert(state == MOG_PARSER_ERROR && "parser not errored");
	}

	if ("HTTP/1.1 HEAD request") {
		buf_set("HEAD /foo HTTP/1.1\r\n"
		        "Host: 127.6.6.6\r\n"
		        "\r\n");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.http_method == MOG_HTTP_METHOD_HEAD
		       && "http_method should be HEAD ");
		assert(http->_p.persistent == 1 && "should be persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
	}

	if ("HTTP/1.1 PUT request") {
		buf_set("PUT /foo HTTP/1.1\r\n"
		        "Host: 127.6.6.6\r\n"
		        "Content-Length: 12345\r\n"
		        "\r\n"
		        "partial body request");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.content_len == 12345);
		assert(http->_p.http_method == MOG_HTTP_METHOD_PUT
		       && "http_method should be PUT");
		assert(http->_p.persistent == 1 && "should be persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
		assert(strcmp(buf + http->_p.buf_off, "partial body request")
		       == 0 && "buffer repositioned to body start");
	}

	if ("HTTP/1.1 PUT chunked request header") {
		buf_set("PUT /foo HTTP/1.1\r\n"
		        "Host: 127.6.6.6\r\n"
		        "Transfer-Encoding: chunked\r\n"
		        "\r\n"
		        "16\r\npartial...");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.chunked);
		assert(http->_p.has_md5 == 0);
		assert(http->_p.http_method == MOG_HTTP_METHOD_PUT
		       && "http_method should be PUT");
		assert(http->_p.persistent == 1 && "should be persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
		assert(strcmp(buf + http->_p.buf_off, "16\r\npartial...") == 0
		       && "buffer repositioned to body start");
	}

	if ("HTTP/1.1 PUT with Content-Range") {
		buf_set("PUT /foo HTTP/1.1\r\n"
		        "Host: 127.6.6.6\r\n"
		        "Transfer-Encoding: chunked\r\n"
		        "Content-Range: bytes 666-666666/*\r\n"
		        "\r\n"
		        "16\r\npartial...");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.range_beg == 666);
		assert(http->_p.range_end == 666666);
		assert(http->_p.has_content_range == 1);
		assert(http->_p.has_md5 == 0);
		assert(http->_p.http_method == MOG_HTTP_METHOD_PUT
		       && "http_method should be PUT");
		assert(http->_p.persistent == 1 && "should be persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
		assert(strcmp(buf + http->_p.buf_off, "16\r\npartial...") == 0
		       && "buffer repositioned to body start");
	}

	if ("HTTP/1.1 PUT chunked request header w/Trailer") {
		buf_set("PUT /foo HTTP/1.1\r\n"
		        "Host: 127.6.6.6\r\n"
		        "Transfer-Encoding: chunked\r\n"
			"Trailer: Content-MD5\r\n"
		        "\r\n"
		        "16\r\npartial...");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.chunked);
		assert(http->_p.has_md5 == 1);
		assert(http->_p.http_method == MOG_HTTP_METHOD_PUT
		       && "http_method should be PUT");
		assert(http->_p.persistent == 1 && "should be persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
		assert(strcmp(buf + http->_p.buf_off, "16\r\npartial...") == 0
		       && "buffer repositioned to body start");
	}

	if ("HTTP/1.1 DELETE request") {
		buf_set("DELETE /foo HTTP/1.1\r\n"
		        "Host: 127.6.6.6\r\n"
		        "\r\n");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.content_len == 0);
		assert(http->_p.has_md5 == 0);
		assert(http->_p.http_method == MOG_HTTP_METHOD_DELETE
		       && "http_method should be DELETE");
		assert(http->_p.persistent == 1 && "should be persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
	}

	if ("HTTP/1.1 MKCOL request") {
		buf_set("MKCOL /foo HTTP/1.1\r\n"
		        "Host: 127.6.6.6\r\n"
		        "\r\n");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.content_len == 0);
		assert(http->_p.has_md5 == 0);
		assert(http->_p.http_method == MOG_HTTP_METHOD_MKCOL
		       && "http_method should be MKCOL");
		assert(http->_p.persistent == 1 && "should be persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
	}

	if ("HTTP/1.1 Range (mid) GET request") {
		buf_set("GET /foo HTTP/1.1\r\n"
		        "Host: 127.6.6.6\r\n"
		        "Range: bytes=5-55\r\n"
		        "\r\n");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.has_range == 1);
		assert(http->_p.range_beg == 5 && "range_beg didn't match");
		assert(http->_p.range_end == 55 && "range_end didn't match");
		assert(http->_p.http_method == MOG_HTTP_METHOD_GET
		       && "http_method should be GET");
		assert(http->_p.persistent == 1 && "should be persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
	}

	if ("HTTP/1.1 Range (tip) GET request") {
		buf_set("GET /foo HTTP/1.1\r\n"
		        "Host: 127.6.6.6\r\n"
		        "Range: bytes=-55\r\n"
		        "\r\n");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.has_range == 1);
		assert(http->_p.range_beg == -1 && "range_beg didn't match");
		assert(http->_p.range_end == 55 && "range_end didn't match");
		assert(http->_p.http_method == MOG_HTTP_METHOD_GET
		       && "http_method should be GET");
		assert(http->_p.persistent == 1 && "should be persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
	}

	if ("HTTP/1.1 Range (end) GET request") {
		buf_set("GET /foo HTTP/1.1\r\n"
		        "Host: 127.6.6.6\r\n"
		        "Range: bytes=55-\r\n"
		        "\r\n");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.has_range == 1);
		assert(http->_p.range_beg == 55 && "range_beg didn't match");
		assert(http->_p.range_end == -1 && "range_end didn't match");
		assert(http->_p.http_method == MOG_HTTP_METHOD_GET
		       && "http_method should be GET");
		assert(http->_p.persistent == 1 && "should be persistent");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/foo");
	}

	if ("HTTP/1.1 devid parse") {
		buf_set("GET /dev666/0/1.fid HTTP/1.0\r\n"
		        "\r\n");
		state = mog_http_parse(http, buf, len);
		assert(http->_p.http_method == MOG_HTTP_METHOD_GET
		       && "http_method should be GET");
		assert(http->_p.mog_devid == 666 && "dev666 set");
		assert(state == MOG_PARSER_DONE && "parser not done");
		assert_path_equal("/dev666/0/1.fid");
	}

	reset();
	return 0;
}

git clone https://yhbt.net/cmogstored.git