123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381 |
- #define USE_WEBSOCKET
- #include "mongoose.c"
- #define FATAL(str, line) do { \
- printf("Fail on line %d: [%s]\n", line, str); \
- abort(); \
- } while (0)
- #define ASSERT(expr) do { if (!(expr)) FATAL(#expr, __LINE__); } while (0)
- #define UNUSED_PORT "33796"
- static void test_parse_http_request() {
- struct mg_request_info ri;
- char req1[] = "GET / HTTP/1.1\r\n\r\n";
- char req2[] = "BLAH / HTTP/1.1\r\n\r\n";
- char req3[] = "GET / HTTP/1.1\r\nBah\r\n";
- char req4[] = "GET / HTTP/1.1\r\nA: foo bar\r\nB: bar\r\nbaz\r\n\r\n";
- ASSERT(parse_http_request(req1, sizeof(req1), &ri) == sizeof(req1) - 1);
- ASSERT(strcmp(ri.http_version, "1.1") == 0);
- ASSERT(ri.num_headers == 0);
- ASSERT(parse_http_request(req2, sizeof(req2), &ri) == -1);
- ASSERT(parse_http_request(req3, sizeof(req3), &ri) == -1);
- // TODO(lsm): Fix this. Header value may span multiple lines.
- ASSERT(parse_http_request(req4, sizeof(req4), &ri) == sizeof(req4) - 1);
- ASSERT(ri.num_headers == 3);
- ASSERT(strcmp(ri.http_headers[0].name, "A") == 0);
- ASSERT(strcmp(ri.http_headers[0].value, "foo bar") == 0);
- ASSERT(strcmp(ri.http_headers[1].name, "B") == 0);
- ASSERT(strcmp(ri.http_headers[1].value, "bar") == 0);
- ASSERT(strcmp(ri.http_headers[2].name, "baz\r\n\r") == 0);
- ASSERT(strcmp(ri.http_headers[2].value, "") == 0);
- // TODO(lsm): add more tests.
- }
- static void test_should_keep_alive(void) {
- struct mg_connection conn;
- struct mg_context ctx;
- char req1[] = "GET / HTTP/1.1\r\n\r\n";
- char req2[] = "GET / HTTP/1.0\r\n\r\n";
- char req3[] = "GET / HTTP/1.1\r\nConnection: close\r\n\r\n";
- char req4[] = "GET / HTTP/1.1\r\nConnection: keep-alive\r\n\r\n";
- memset(&conn, 0, sizeof(conn));
- conn.ctx = &ctx;
- parse_http_request(req1, sizeof(req1), &conn.request_info);
- ctx.config[ENABLE_KEEP_ALIVE] = "no";
- ASSERT(should_keep_alive(&conn) == 0);
- ctx.config[ENABLE_KEEP_ALIVE] = "yes";
- ASSERT(should_keep_alive(&conn) == 1);
- conn.must_close = 1;
- ASSERT(should_keep_alive(&conn) == 0);
- conn.must_close = 0;
- parse_http_request(req2, sizeof(req2), &conn.request_info);
- ASSERT(should_keep_alive(&conn) == 0);
- parse_http_request(req3, sizeof(req3), &conn.request_info);
- ASSERT(should_keep_alive(&conn) == 0);
- parse_http_request(req4, sizeof(req4), &conn.request_info);
- ASSERT(should_keep_alive(&conn) == 1);
- conn.status_code = 401;
- ASSERT(should_keep_alive(&conn) == 0);
- conn.status_code = 200;
- conn.must_close = 1;
- ASSERT(should_keep_alive(&conn) == 0);
- }
- static void test_match_prefix(void) {
- ASSERT(match_prefix("/api", 4, "/api") == 4);
- ASSERT(match_prefix("/a/", 3, "/a/b/c") == 3);
- ASSERT(match_prefix("/a/", 3, "/ab/c") == -1);
- ASSERT(match_prefix("/*/", 3, "/ab/c") == 4);
- ASSERT(match_prefix("**", 2, "/a/b/c") == 6);
- ASSERT(match_prefix("/*", 2, "/a/b/c") == 2);
- ASSERT(match_prefix("*/*", 3, "/a/b/c") == 2);
- ASSERT(match_prefix("**/", 3, "/a/b/c") == 5);
- ASSERT(match_prefix("**.foo|**.bar", 13, "a.bar") == 5);
- ASSERT(match_prefix("a|b|cd", 6, "cdef") == 2);
- ASSERT(match_prefix("a|b|c?", 6, "cdef") == 2);
- ASSERT(match_prefix("a|?|cd", 6, "cdef") == 1);
- ASSERT(match_prefix("/a/**.cgi", 9, "/foo/bar/x.cgi") == -1);
- ASSERT(match_prefix("/a/**.cgi", 9, "/a/bar/x.cgi") == 12);
- ASSERT(match_prefix("**/", 3, "/a/b/c") == 5);
- ASSERT(match_prefix("**/$", 4, "/a/b/c") == -1);
- ASSERT(match_prefix("**/$", 4, "/a/b/") == 5);
- ASSERT(match_prefix("$", 1, "") == 0);
- ASSERT(match_prefix("$", 1, "x") == -1);
- ASSERT(match_prefix("*$", 2, "x") == 1);
- ASSERT(match_prefix("/$", 2, "/") == 1);
- ASSERT(match_prefix("**/$", 4, "/a/b/c") == -1);
- ASSERT(match_prefix("**/$", 4, "/a/b/") == 5);
- ASSERT(match_prefix("*", 1, "/hello/") == 0);
- ASSERT(match_prefix("**.a$|**.b$", 11, "/a/b.b/") == -1);
- ASSERT(match_prefix("**.a$|**.b$", 11, "/a/b.b") == 6);
- ASSERT(match_prefix("**.a$|**.b$", 11, "/a/b.a") == 6);
- }
- static void test_remove_double_dots() {
- struct { char before[20], after[20]; } data[] = {
- {"////a", "/a"},
- {"/.....", "/."},
- {"/......", "/"},
- {"...", "..."},
- {"/...///", "/./"},
- {"/a...///", "/a.../"},
- {"/.x", "/.x"},
- {"/\\", "/"},
- {"/a\\", "/a\\"},
- {"/a\\\\...", "/a\\."},
- };
- size_t i;
- for (i = 0; i < ARRAY_SIZE(data); i++) {
- printf("[%s] -> [%s]\n", data[i].before, data[i].after);
- remove_double_dots_and_double_slashes(data[i].before);
- ASSERT(strcmp(data[i].before, data[i].after) == 0);
- }
- }
- static const char *fetch_data = "hello world!\n";
- static const char *inmemory_file_data = "hi there";
- static void *event_handler(enum mg_event event, struct mg_connection *conn) {
- const struct mg_request_info *request_info = mg_get_request_info(conn);
- if (event == MG_NEW_REQUEST && !strcmp(request_info->uri, "/data")) {
- mg_printf(conn, "HTTP/1.1 200 OK\r\n"
- "Content-Length: %d\r\n"
- "Content-Type: text/plain\r\n\r\n"
- "%s", (int) strlen(fetch_data), fetch_data);
- return "";
- } else if (event == MG_OPEN_FILE) {
- const char *path = request_info->ev_data;
- printf("%s: [%s]\n", __func__, path);
- if (strcmp(path, "./blah") == 0) {
- mg_get_request_info(conn)->ev_data =
- (void *) (int) strlen(inmemory_file_data);
- return (void *) inmemory_file_data;
- }
- } else if (event == MG_EVENT_LOG) {
- printf("%s\n", (const char *) mg_get_request_info(conn)->ev_data);
- }
- return NULL;
- }
- static void test_mg_fetch(void) {
- static const char *options[] = {
- "document_root", ".",
- "listening_ports", UNUSED_PORT,
- NULL,
- };
- char buf[2000], buf2[2000];
- int n, length;
- struct mg_context *ctx;
- struct mg_request_info ri;
- const char *tmp_file = "temporary_file_name_for_unit_test.txt";
- struct file file;
- FILE *fp;
- ASSERT((ctx = mg_start(event_handler, NULL, options)) != NULL);
- // Failed fetch, pass invalid URL
- ASSERT(mg_fetch(ctx, "localhost", tmp_file, buf, sizeof(buf), &ri) == NULL);
- ASSERT(mg_fetch(ctx, "localhost:" UNUSED_PORT, tmp_file,
- buf, sizeof(buf), &ri) == NULL);
- ASSERT(mg_fetch(ctx, "http://$$$.$$$", tmp_file,
- buf, sizeof(buf), &ri) == NULL);
- // Failed fetch, pass invalid file name
- ASSERT(mg_fetch(ctx, "http://localhost:" UNUSED_PORT "/data",
- "/this/file/must/not/exist/ever",
- buf, sizeof(buf), &ri) == NULL);
- // Successful fetch
- ASSERT((fp = mg_fetch(ctx, "http://localhost:" UNUSED_PORT "/data",
- tmp_file, buf, sizeof(buf), &ri)) != NULL);
- ASSERT(ri.num_headers == 2);
- ASSERT(!strcmp(ri.request_method, "HTTP/1.1"));
- ASSERT(!strcmp(ri.uri, "200"));
- ASSERT(!strcmp(ri.http_version, "OK"));
- ASSERT((length = ftell(fp)) == (int) strlen(fetch_data));
- fseek(fp, 0, SEEK_SET);
- ASSERT(fread(buf2, 1, length, fp) == (size_t) length);
- ASSERT(memcmp(buf2, fetch_data, length) == 0);
- fclose(fp);
- // Fetch big file, mongoose.c
- ASSERT((fp = mg_fetch(ctx, "http://localhost:" UNUSED_PORT "/mongoose.c",
- tmp_file, buf, sizeof(buf), &ri)) != NULL);
- ASSERT(mg_stat(fc(ctx), "mongoose.c", &file));
- ASSERT(file.size == ftell(fp));
- ASSERT(!strcmp(ri.request_method, "HTTP/1.1"));
- // Fetch nonexistent file, /blah
- ASSERT((fp = mg_fetch(ctx, "http://localhost:" UNUSED_PORT "/boo",
- tmp_file, buf, sizeof(buf), &ri)) != NULL);
- ASSERT(!mg_strcasecmp(ri.uri, "404"));
- fclose(fp);
- // Fetch existing inmemory file
- ASSERT((fp = mg_fetch(ctx, "http://localhost:" UNUSED_PORT "/blah",
- tmp_file, buf, sizeof(buf), &ri)) != NULL);
- ASSERT(!mg_strcasecmp(ri.uri, "200"));
- n = ftell(fp);
- fseek(fp, 0, SEEK_SET);
- printf("%s %d %d [%.*s]\n", __func__, n, (int) feof(fp), n, buf2);
- n = fread(buf2, 1, n, fp);
- printf("%s %d %d [%.*s]\n", __func__, n, (int) feof(fp), n, buf2);
- ASSERT((size_t) ftell(fp) == (size_t) strlen(inmemory_file_data));
- ASSERT(!memcmp(inmemory_file_data, buf2, ftell(fp)));
- fclose(fp);
- remove(tmp_file);
- mg_stop(ctx);
- }
- static void test_base64_encode(void) {
- const char *in[] = {"a", "ab", "abc", "abcd", NULL};
- const char *out[] = {"YQ==", "YWI=", "YWJj", "YWJjZA=="};
- char buf[100];
- int i;
- for (i = 0; in[i] != NULL; i++) {
- base64_encode((unsigned char *) in[i], strlen(in[i]), buf);
- printf("[%s] [%s]\n", out[i], buf);
- ASSERT(!strcmp(buf, out[i]));
- }
- }
- static void test_mg_get_var(void) {
- static const char *post[] = {
- "a=1&&b=2&d&=&c=3%20&e=",
- "q=&st=2012%2F11%2F13+17%3A05&et=&team_id=",
- NULL
- };
- char buf[20];
- ASSERT(mg_get_var(post[0], strlen(post[0]), "a", buf, sizeof(buf)) == 1);
- ASSERT(buf[0] == '1' && buf[1] == '\0');
- ASSERT(mg_get_var(post[0], strlen(post[0]), "b", buf, sizeof(buf)) == 1);
- ASSERT(buf[0] == '2' && buf[1] == '\0');
- ASSERT(mg_get_var(post[0], strlen(post[0]), "c", buf, sizeof(buf)) == 2);
- ASSERT(buf[0] == '3' && buf[1] == ' ' && buf[2] == '\0');
- ASSERT(mg_get_var(post[0], strlen(post[0]), "e", buf, sizeof(buf)) == 0);
- ASSERT(buf[0] == '\0');
- ASSERT(mg_get_var(post[0], strlen(post[0]), "d", buf, sizeof(buf)) == -1);
- ASSERT(mg_get_var(post[0], strlen(post[0]), "c", buf, 2) == -1);
- ASSERT(mg_get_var(post[0], strlen(post[0]), "x", NULL, 10) == -2);
- ASSERT(mg_get_var(post[0], strlen(post[0]), "x", buf, 0) == -2);
- ASSERT(mg_get_var(post[1], strlen(post[1]), "st", buf, 16) == -1);
- ASSERT(mg_get_var(post[1], strlen(post[1]), "st", buf, 17) == 16);
- }
- static void test_set_throttle(void) {
- ASSERT(set_throttle(NULL, 0x0a000001, "/") == 0);
- ASSERT(set_throttle("10.0.0.0/8=20", 0x0a000001, "/") == 20);
- ASSERT(set_throttle("10.0.0.0/8=0.5k", 0x0a000001, "/") == 512);
- ASSERT(set_throttle("10.0.0.0/8=17m", 0x0a000001, "/") == 1048576 * 17);
- ASSERT(set_throttle("10.0.0.0/8=1x", 0x0a000001, "/") == 0);
- ASSERT(set_throttle("10.0.0.0/8=5,0.0.0.0/0=10", 0x0a000001, "/") == 10);
- ASSERT(set_throttle("10.0.0.0/8=5,/foo/**=7", 0x0a000001, "/index") == 5);
- ASSERT(set_throttle("10.0.0.0/8=5,/foo/**=7", 0x0a000001, "/foo/x") == 7);
- ASSERT(set_throttle("10.0.0.0/8=5,/foo/**=7", 0x0b000001, "/foxo/x") == 0);
- ASSERT(set_throttle("10.0.0.0/8=5,*=1", 0x0b000001, "/foxo/x") == 1);
- }
- static void test_next_option(void) {
- const char *p, *list = "x/8,/y**=1;2k,z";
- struct vec a, b;
- int i;
- ASSERT(next_option(NULL, &a, &b) == NULL);
- for (i = 0, p = list; (p = next_option(p, &a, &b)) != NULL; i++) {
- ASSERT(i != 0 || (a.ptr == list && a.len == 3 && b.len == 0));
- ASSERT(i != 1 || (a.ptr == list + 4 && a.len == 4 && b.ptr == list + 9 &&
- b.len == 4));
- ASSERT(i != 2 || (a.ptr == list + 14 && a.len == 1 && b.len == 0));
- }
- }
- #ifdef USE_LUA
- static void check_lua_expr(lua_State *L, const char *expr, const char *value) {
- const char *v, *var_name = "myVar";
- char buf[100];
- snprintf(buf, sizeof(buf), "%s = %s", var_name, expr);
- luaL_dostring(L, buf);
- lua_getglobal(L, var_name);
- v = lua_tostring(L, -1);
- printf("%s: %s: [%s] [%s]\n", __func__, expr, v == NULL ? "null" : v, value);
- ASSERT((value == NULL && v == NULL) ||
- (value != NULL && v != NULL && !strcmp(value, v)));
- }
- static void test_lua(void) {
- static struct mg_connection conn;
- static struct mg_context ctx;
- char http_request[] = "POST /foo/bar HTTP/1.1\r\n"
- "Content-Length: 12\r\n"
- "Connection: close\r\n\r\nhello world!";
- const char *page = "<? print('hi') ?>";
- lua_State *L = luaL_newstate();
- conn.ctx = &ctx;
- conn.buf = http_request;
- conn.buf_size = conn.data_len = strlen(http_request);
- conn.request_len = parse_http_request(conn.buf, conn.data_len,
- &conn.request_info);
- conn.content_len = conn.data_len - conn.request_len;
- prepare_lua_environment(&conn, L);
- ASSERT(lua_gettop(L) == 0);
- check_lua_expr(L, "'hi'", "hi");
- check_lua_expr(L, "request_info.request_method", "POST");
- check_lua_expr(L, "request_info.uri", "/foo/bar");
- check_lua_expr(L, "request_info.num_headers", "2");
- check_lua_expr(L, "request_info.remote_ip", "0");
- check_lua_expr(L, "request_info.http_headers['Content-Length']", "12");
- check_lua_expr(L, "request_info.http_headers['Connection']", "close");
- luaL_dostring(L, "post = read()");
- check_lua_expr(L, "# post", "12");
- check_lua_expr(L, "post", "hello world!");
- lua_close(L);
- }
- #endif
- static void *user_data_tester(enum mg_event event, struct mg_connection *conn) {
- struct mg_request_info *ri = mg_get_request_info(conn);
- ASSERT(ri->user_data == (void *) 123);
- ASSERT(event == MG_NEW_REQUEST);
- return NULL;
- }
- static void test_user_data(void) {
- static const char *options[] = {"listening_ports", UNUSED_PORT, NULL};
- struct mg_context *ctx;
- ASSERT((ctx = mg_start(user_data_tester, (void *) 123, options)) != NULL);
- ASSERT(ctx->user_data == (void *) 123);
- call_user(fc(ctx), MG_NEW_REQUEST);
- }
- static void test_mg_stat(void) {
- static struct mg_context ctx;
- struct file file;
- memset(&file, 'A', sizeof(file));
- ASSERT(!mg_stat(fc(&ctx), " does not exist ", &file));
- }
- int main(void) {
- test_base64_encode();
- test_match_prefix();
- test_remove_double_dots();
- test_should_keep_alive();
- test_parse_http_request();
- test_mg_fetch();
- test_mg_get_var();
- test_set_throttle();
- test_next_option();
- test_user_data();
- test_mg_stat();
- #ifdef USE_LUA
- test_lua();
- #endif
- return 0;
- }
|