mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-24 11:09:01 +08:00
864 lines
28 KiB
C
864 lines
28 KiB
C
#include "mongoose.h"
|
|
|
|
static int s_num_tests = 0;
|
|
|
|
#define ASSERT(expr) \
|
|
do { \
|
|
s_num_tests++; \
|
|
if (!(expr)) { \
|
|
printf("FAILURE %s:%d: %s\n", __FILE__, __LINE__, #expr); \
|
|
exit(EXIT_FAILURE); \
|
|
} \
|
|
} while (0)
|
|
|
|
#define FETCH_BUF_SIZE (256 * 1024)
|
|
|
|
// Important: we use different port numbers for the Windows bug workaround. See
|
|
// https://support.microsoft.com/en-ae/help/3039044/error-10013-wsaeacces-is-returned-when-a-second-bind-to-a-excluded-por
|
|
|
|
static void test_globmatch(void) {
|
|
ASSERT(mg_globmatch("", 0, "", 0) == 1);
|
|
ASSERT(mg_globmatch("*", 1, "a", 1) == 1);
|
|
ASSERT(mg_globmatch("*", 1, "ab", 2) == 1);
|
|
ASSERT(mg_globmatch("", 0, "a", 1) == 0);
|
|
ASSERT(mg_globmatch("/", 1, "/foo", 4) == 0);
|
|
ASSERT(mg_globmatch("/*/foo", 6, "/x/bar", 6) == 0);
|
|
ASSERT(mg_globmatch("/*/foo", 6, "/x/foo", 6) == 1);
|
|
ASSERT(mg_globmatch("/*/foo", 6, "/x/foox", 7) == 0);
|
|
ASSERT(mg_globmatch("/*/foo*", 7, "/x/foox", 7) == 1);
|
|
ASSERT(mg_globmatch("/*", 2, "/abc", 4) == 1);
|
|
ASSERT(mg_globmatch("/*", 2, "/ab/", 4) == 0);
|
|
ASSERT(mg_globmatch("/*", 2, "/", 1) == 1);
|
|
ASSERT(mg_globmatch("/x/*", 4, "/x/2", 4) == 1);
|
|
ASSERT(mg_globmatch("/x/*", 4, "/x/2/foo", 8) == 0);
|
|
ASSERT(mg_globmatch("/x/*/*", 6, "/x/2/foo", 8) == 1);
|
|
ASSERT(mg_globmatch("#", 1, "///", 3) == 1);
|
|
ASSERT(mg_globmatch("/api/*", 6, "/api/foo", 8) == 1);
|
|
ASSERT(mg_globmatch("/api/*", 6, "/api/log/static", 15) == 0);
|
|
ASSERT(mg_globmatch("/api/#", 6, "/api/log/static", 15) == 1);
|
|
}
|
|
|
|
static void test_commalist(void) {
|
|
struct mg_str k, v, s1 = mg_str(""), s2 = mg_str("a"), s3 = mg_str("a,b");
|
|
struct mg_str s4 = mg_str("a=123"), s5 = mg_str("a,b=123");
|
|
ASSERT(mg_next_comma_entry(&s1, &k, &v) == false);
|
|
|
|
ASSERT(mg_next_comma_entry(&s2, &k, &v) == true);
|
|
ASSERT(v.len == 0 && mg_vcmp(&k, "a") == 0);
|
|
ASSERT(mg_next_comma_entry(&s2, &k, &v) == false);
|
|
|
|
ASSERT(mg_next_comma_entry(&s3, &k, &v) == true);
|
|
ASSERT(v.len == 0 && mg_vcmp(&k, "a") == 0);
|
|
ASSERT(mg_next_comma_entry(&s3, &k, &v) == true);
|
|
ASSERT(v.len == 0 && mg_vcmp(&k, "b") == 0);
|
|
ASSERT(mg_next_comma_entry(&s3, &k, &v) == false);
|
|
|
|
ASSERT(mg_next_comma_entry(&s4, &k, &v) == true);
|
|
ASSERT(mg_vcmp(&k, "a") == 0 && mg_vcmp(&v, "123") == 0);
|
|
ASSERT(mg_next_comma_entry(&s4, &k, &v) == false);
|
|
ASSERT(mg_next_comma_entry(&s4, &k, &v) == false);
|
|
|
|
ASSERT(mg_next_comma_entry(&s5, &k, &v) == true);
|
|
ASSERT(v.len == 0 && mg_vcmp(&k, "a") == 0);
|
|
ASSERT(mg_next_comma_entry(&s5, &k, &v) == true);
|
|
ASSERT(mg_vcmp(&k, "b") == 0 && mg_vcmp(&v, "123") == 0);
|
|
ASSERT(mg_next_comma_entry(&s4, &k, &v) == false);
|
|
}
|
|
|
|
static void test_http_get_var(void) {
|
|
char buf[256];
|
|
struct mg_str body;
|
|
body = mg_str("key1=value1&key2=value2&key3=value%203&key4=value+4");
|
|
ASSERT(mg_http_get_var(&body, "key1", buf, sizeof(buf)) == 6);
|
|
ASSERT(strcmp(buf, "value1") == 0);
|
|
ASSERT(mg_http_get_var(&body, "KEY1", buf, sizeof(buf)) == 6);
|
|
ASSERT(strcmp(buf, "value1") == 0);
|
|
ASSERT(mg_http_get_var(&body, "key2", buf, sizeof(buf)) == 6);
|
|
ASSERT(strcmp(buf, "value2") == 0);
|
|
ASSERT(mg_http_get_var(&body, "key3", buf, sizeof(buf)) == 7);
|
|
ASSERT(strcmp(buf, "value 3") == 0);
|
|
ASSERT(mg_http_get_var(&body, "key4", buf, sizeof(buf)) == 7);
|
|
ASSERT(strcmp(buf, "value 4") == 0);
|
|
|
|
ASSERT(mg_http_get_var(&body, "key", buf, sizeof(buf)) == -4);
|
|
ASSERT(mg_http_get_var(&body, "key1", NULL, sizeof(buf)) == -2);
|
|
ASSERT(mg_http_get_var(&body, "key1", buf, 0) == -2);
|
|
ASSERT(mg_http_get_var(&body, NULL, buf, sizeof(buf)) == -1);
|
|
ASSERT(mg_http_get_var(&body, "key1", buf, 1) == -3);
|
|
|
|
body = mg_str("key=broken%2");
|
|
ASSERT(mg_http_get_var(&body, "key", buf, sizeof(buf)) == -3);
|
|
|
|
body = mg_str("key=broken%2x");
|
|
ASSERT(mg_http_get_var(&body, "key", buf, sizeof(buf)) == -3);
|
|
ASSERT(mg_http_get_var(&body, "inexistent", buf, sizeof(buf)) == -4);
|
|
}
|
|
|
|
static int vcmp(struct mg_str s1, const char *s2) {
|
|
// LOG(LL_INFO, ("->%.*s<->%s<- %d %d %d", (int) s1.len, s1.ptr, s2,
|
|
//(int) s1.len, strncmp(s1.ptr, s2, s1.len), mg_vcmp(&s1, s2)));
|
|
return mg_vcmp(&s1, s2) == 0;
|
|
}
|
|
|
|
static void test_url(void) {
|
|
// Host
|
|
ASSERT(vcmp(mg_url_host("foo"), "foo"));
|
|
ASSERT(vcmp(mg_url_host("//foo"), "foo"));
|
|
ASSERT(vcmp(mg_url_host("foo:1234"), "foo"));
|
|
ASSERT(vcmp(mg_url_host("//foo:1234"), "foo"));
|
|
ASSERT(vcmp(mg_url_host("p://foo"), "foo"));
|
|
ASSERT(vcmp(mg_url_host("p://foo/"), "foo"));
|
|
ASSERT(vcmp(mg_url_host("p://foo/x"), "foo"));
|
|
ASSERT(vcmp(mg_url_host("p://bar:1234"), "bar"));
|
|
ASSERT(vcmp(mg_url_host("p://bar:1234/"), "bar"));
|
|
ASSERT(vcmp(mg_url_host("p://bar:1234/a"), "bar"));
|
|
ASSERT(vcmp(mg_url_host("p://u@bar:1234/a"), "bar"));
|
|
ASSERT(vcmp(mg_url_host("p://u:p@bar:1234/a"), "bar"));
|
|
|
|
// Port
|
|
ASSERT(mg_url_port("foo:1234") == 1234);
|
|
ASSERT(mg_url_port("x://foo:1234") == 1234);
|
|
ASSERT(mg_url_port("x://foo:1234/") == 1234);
|
|
ASSERT(mg_url_port("x://foo:1234/xx") == 1234);
|
|
ASSERT(mg_url_port("x://foo:1234") == 1234);
|
|
ASSERT(mg_url_port("p://bar:1234/a") == 1234);
|
|
ASSERT(mg_url_port("http://bar") == 80);
|
|
ASSERT(mg_url_port("http://localhost:1234") == 1234);
|
|
ASSERT(mg_url_port("https://bar") == 443);
|
|
ASSERT(mg_url_port("wss://bar") == 443);
|
|
ASSERT(mg_url_port("wss://u:p@bar") == 443);
|
|
ASSERT(mg_url_port("wss://u:p@bar:123") == 123);
|
|
ASSERT(mg_url_port("wss://u:p@bar:123/") == 123);
|
|
ASSERT(mg_url_port("wss://u:p@bar:123/abc") == 123);
|
|
|
|
// User / pass
|
|
ASSERT(vcmp(mg_url_user("p://foo"), ""));
|
|
ASSERT(vcmp(mg_url_pass("p://foo"), ""));
|
|
ASSERT(vcmp(mg_url_user("p://:@foo"), ""));
|
|
ASSERT(vcmp(mg_url_pass("p://:@foo"), ""));
|
|
ASSERT(vcmp(mg_url_user("p://u@foo"), "u"));
|
|
ASSERT(vcmp(mg_url_pass("p://u@foo"), ""));
|
|
ASSERT(vcmp(mg_url_user("p://u:@foo"), "u"));
|
|
ASSERT(vcmp(mg_url_pass("p://u:@foo"), ""));
|
|
ASSERT(vcmp(mg_url_user("p://:p@foo"), ""));
|
|
ASSERT(vcmp(mg_url_pass("p://:p@foo"), "p"));
|
|
ASSERT(vcmp(mg_url_user("p://u:p@foo"), "u"));
|
|
ASSERT(vcmp(mg_url_pass("p://u:p@foo"), "p"));
|
|
|
|
// URI
|
|
ASSERT(strcmp(mg_url_uri("p://foo"), "/") == 0);
|
|
ASSERT(strcmp(mg_url_uri("p://foo/"), "/") == 0);
|
|
ASSERT(strcmp(mg_url_uri("p://foo:12/"), "/") == 0);
|
|
ASSERT(strcmp(mg_url_uri("p://foo:12/abc"), "/abc") == 0);
|
|
ASSERT(strcmp(mg_url_uri("p://foo:12/a/b/c"), "/a/b/c") == 0);
|
|
}
|
|
|
|
static void test_base64(void) {
|
|
char buf[128];
|
|
|
|
ASSERT(mg_base64_encode((uint8_t *) "", 0, buf) == 0);
|
|
ASSERT(strcmp(buf, "") == 0);
|
|
ASSERT(mg_base64_encode((uint8_t *) "x", 1, buf) == 4);
|
|
ASSERT(strcmp(buf, "eA==") == 0);
|
|
ASSERT(mg_base64_encode((uint8_t *) "xyz", 3, buf) == 4);
|
|
ASSERT(strcmp(buf, "eHl6") == 0);
|
|
ASSERT(mg_base64_encode((uint8_t *) "abcdef", 6, buf) == 8);
|
|
ASSERT(strcmp(buf, "YWJjZGVm") == 0);
|
|
ASSERT(mg_base64_encode((uint8_t *) "ы", 2, buf) == 4);
|
|
ASSERT(strcmp(buf, "0Ys=") == 0);
|
|
ASSERT(mg_base64_encode((uint8_t *) "xy", 3, buf) == 4);
|
|
ASSERT(strcmp(buf, "eHkA") == 0);
|
|
ASSERT(mg_base64_encode((uint8_t *) "test", 4, buf) == 8);
|
|
ASSERT(strcmp(buf, "dGVzdA==") == 0);
|
|
ASSERT(mg_base64_encode((uint8_t *) "abcde", 5, buf) == 8);
|
|
ASSERT(strcmp(buf, "YWJjZGU=") == 0);
|
|
|
|
ASSERT(mg_base64_decode("кю", 4, buf) == 0);
|
|
ASSERT(mg_base64_decode("A", 1, buf) == 0);
|
|
ASSERT(mg_base64_decode("A=", 2, buf) == 0);
|
|
ASSERT(mg_base64_decode("AA=", 3, buf) == 0);
|
|
ASSERT(mg_base64_decode("AAA=", 4, buf) == 2);
|
|
ASSERT(mg_base64_decode("AAAA====", 8, buf) == 0);
|
|
ASSERT(mg_base64_decode("AAAA----", 8, buf) == 0);
|
|
ASSERT(mg_base64_decode("Q2VzYW50YQ==", 12, buf) == 7);
|
|
ASSERT(strcmp(buf, "Cesanta") == 0);
|
|
}
|
|
|
|
static void test_iobuf(void) {
|
|
struct mg_iobuf io = {0, 0, 0};
|
|
ASSERT(io.buf == NULL && io.size == 0 && io.len == 0);
|
|
mg_iobuf_resize(&io, 1);
|
|
ASSERT(io.buf != NULL && io.size == 1 && io.len == 0);
|
|
mg_iobuf_append(&io, "hi", 2, 10);
|
|
ASSERT(io.buf != NULL && io.size == 10 && io.len == 2);
|
|
ASSERT(memcmp(io.buf, "hi", 2) == 0);
|
|
mg_iobuf_append(&io, "!", 1, 10);
|
|
ASSERT(io.buf != NULL && io.size == 10 && io.len == 3);
|
|
ASSERT(memcmp(io.buf, "hi!", 3) == 0);
|
|
free(io.buf);
|
|
}
|
|
|
|
static void sntp_cb(struct mg_connection *c, int ev, void *evd, void *fnd) {
|
|
if (ev == MG_EV_SNTP_TIME) {
|
|
*(struct timeval *) fnd = *(struct timeval *) evd;
|
|
}
|
|
(void) c;
|
|
}
|
|
|
|
static void test_sntp(void) {
|
|
struct timeval tv = {0, 0};
|
|
struct mg_mgr mgr;
|
|
struct mg_connection *c = NULL;
|
|
int i;
|
|
|
|
mg_mgr_init(&mgr);
|
|
c = mg_sntp_connect(&mgr, NULL, sntp_cb, &tv);
|
|
ASSERT(c != NULL);
|
|
ASSERT(c->is_udp == 1);
|
|
mg_sntp_send(c, (unsigned long) time(NULL));
|
|
for (i = 0; i < 70 && tv.tv_sec == 0; i++) mg_mgr_poll(&mgr, 10);
|
|
ASSERT(tv.tv_sec > 0);
|
|
mg_mgr_free(&mgr);
|
|
|
|
{
|
|
const unsigned char sntp_good[] =
|
|
"\x24\x02\x00\xeb\x00\x00\x00\x1e\x00\x00\x07\xb6\x3e"
|
|
"\xc9\xd6\xa2\xdb\xde\xea\x30\x91\x86\xb7\x10\xdb\xde"
|
|
"\xed\x98\x00\x00\x00\xde\xdb\xde\xed\x99\x0a\xe2\xc7"
|
|
"\x96\xdb\xde\xed\x99\x0a\xe4\x6b\xda";
|
|
const unsigned char bad_good[] =
|
|
"\x55\x02\x00\xeb\x00\x00\x00\x1e\x00\x00\x07\xb6\x3e"
|
|
"\xc9\xd6\xa2\xdb\xde\xea\x30\x91\x86\xb7\x10\xdb\xde"
|
|
"\xed\x98\x00\x00\x00\xde\xdb\xde\xed\x99\x0a\xe2\xc7"
|
|
"\x96\xdb\xde\xed\x99\x0a\xe4\x6b\xda";
|
|
struct timeval tv = {0, 0};
|
|
struct tm *tm;
|
|
time_t t;
|
|
ASSERT(mg_sntp_parse(sntp_good, sizeof(sntp_good), &tv) == 0);
|
|
t = tv.tv_sec;
|
|
tm = gmtime(&t);
|
|
ASSERT(tm->tm_year == 116);
|
|
ASSERT(tm->tm_mon == 10);
|
|
ASSERT(tm->tm_mday == 22);
|
|
ASSERT(tm->tm_hour == 16);
|
|
ASSERT(tm->tm_min == 15);
|
|
ASSERT(tm->tm_sec == 21);
|
|
ASSERT(mg_sntp_parse(bad_good, sizeof(bad_good), &tv) == -1);
|
|
}
|
|
}
|
|
|
|
static void mqtt_cb(struct mg_connection *c, int ev, void *evd, void *fnd) {
|
|
char *buf = (char *) fnd;
|
|
if (ev == MG_EV_MQTT_OPEN) {
|
|
buf[0] = *(int *) evd == 0 ? 'X' : 'Y';
|
|
} else if (ev == MG_EV_MQTT_MSG) {
|
|
struct mg_mqtt_message *mm = (struct mg_mqtt_message *) evd;
|
|
sprintf(buf + 1, "%.*s/%.*s", (int) mm->topic.len, mm->topic.ptr,
|
|
(int) mm->data.len, mm->data.ptr);
|
|
}
|
|
(void) c;
|
|
}
|
|
|
|
static void test_mqtt(void) {
|
|
char buf[50] = {0};
|
|
struct mg_mgr mgr;
|
|
struct mg_str topic = mg_str("x/f12"), data = mg_str("hi");
|
|
struct mg_connection *c;
|
|
struct mg_mqtt_opts opts;
|
|
const char *url = "mqtt://mqtt.eclipse.org:1883";
|
|
int i;
|
|
mg_mgr_init(&mgr);
|
|
|
|
// Connect with empty client ID
|
|
c = mg_mqtt_connect(&mgr, url, NULL, mqtt_cb, buf);
|
|
for (i = 0; i < 100 && buf[0] == 0; i++) mg_mgr_poll(&mgr, 10);
|
|
ASSERT(buf[0] == 'X');
|
|
mg_mqtt_sub(c, &topic);
|
|
mg_mqtt_pub(c, &topic, &data);
|
|
for (i = 0; i < 100 && buf[1] == 0; i++) mg_mgr_poll(&mgr, 10);
|
|
// LOG(LL_INFO, ("[%s]", buf));
|
|
ASSERT(strcmp(buf, "Xx/f12/hi") == 0);
|
|
|
|
// Set params
|
|
memset(buf, 0, sizeof(buf));
|
|
memset(&opts, 0, sizeof(opts));
|
|
opts.qos = 1;
|
|
opts.clean = true;
|
|
opts.will_retain = true;
|
|
opts.keepalive = 20;
|
|
opts.client_id = mg_str("mg_client");
|
|
opts.will_topic = mg_str("mg_will_topic");
|
|
opts.will_message = mg_str("mg_will_messsage");
|
|
c = mg_mqtt_connect(&mgr, url, &opts, mqtt_cb, buf);
|
|
for (i = 0; i < 100 && buf[0] == 0; i++) mg_mgr_poll(&mgr, 10);
|
|
ASSERT(buf[0] == 'X');
|
|
mg_mqtt_sub(c, &topic);
|
|
mg_mqtt_pub(c, &topic, &data);
|
|
for (i = 0; i < 100 && buf[1] == 0; i++) mg_mgr_poll(&mgr, 10);
|
|
ASSERT(strcmp(buf, "Xx/f12/hi") == 0);
|
|
|
|
mg_mgr_free(&mgr);
|
|
ASSERT(mgr.conns == NULL);
|
|
}
|
|
|
|
static void ws_echo(struct mg_connection *c, int ev, void *evd, void *fnd) {
|
|
// LOG(LL_INFO, ("ws_echo %d", id));
|
|
if (ev == MG_EV_HTTP_MSG) {
|
|
struct mg_http_message *hm = (struct mg_http_message *) evd;
|
|
// LOG(LL_INFO, ("ws_echo ws key len: %d", hm->wskey.len));
|
|
if (mg_http_get_header(hm, "Sec-Websocket-Key") == NULL) {
|
|
mg_http_reply(c, 500, "WS expected");
|
|
c->is_draining = 1;
|
|
} else {
|
|
mg_ws_upgrade(c, hm);
|
|
// mg_fn_add(c, ws_echo, NULL);
|
|
}
|
|
} else if (ev == MG_EV_WS_MSG) {
|
|
struct mg_ws_message *wm = (struct mg_ws_message *) evd;
|
|
LOG(LL_INFO, ("[%.*s]", (int) wm->data.len, wm->data.ptr));
|
|
} else if (ev == MG_EV_CLOSE) {
|
|
}
|
|
(void) fnd;
|
|
}
|
|
|
|
static void eh1(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
|
|
struct mg_tls_opts *opts = (struct mg_tls_opts *) fn_data;
|
|
if (ev == MG_EV_ACCEPT && opts != NULL) mg_tls_init(c, opts);
|
|
if (ev == MG_EV_HTTP_MSG) {
|
|
struct mg_http_message *hm = (struct mg_http_message *) ev_data;
|
|
LOG(LL_INFO,
|
|
("[%.*s %.*s] message len %d", (int) hm->method.len, hm->method.ptr,
|
|
(int) hm->uri.len, hm->uri.ptr, (int) hm->message.len));
|
|
if (mg_http_match_uri(hm, "/foo/*")) {
|
|
mg_http_reply(c, 200, "uri: %.*s", hm->uri.len - 5, hm->uri.ptr + 5);
|
|
} else if (mg_http_match_uri(hm, "/ws")) {
|
|
ws_echo(c, ev, ev_data, NULL);
|
|
} else if (mg_http_match_uri(hm, "/body")) {
|
|
mg_http_reply(c, 200, "%.*s", (int) hm->body.len, hm->body.ptr);
|
|
} else if (mg_http_match_uri(hm, "/bar")) {
|
|
mg_http_reply(c, 404, "not found");
|
|
} else if (mg_http_match_uri(hm, "/badroot")) {
|
|
mg_http_serve_dir(c, hm, "/BAAADDD!");
|
|
} else {
|
|
mg_http_serve_dir(c, hm, "./test/data");
|
|
}
|
|
}
|
|
}
|
|
|
|
static void test_ws(void) {
|
|
struct mg_mgr mgr;
|
|
struct mg_connection *c, *c1 = NULL;
|
|
int i;
|
|
|
|
mg_mgr_init(&mgr);
|
|
c1 = mg_http_listen(&mgr, "http://127.0.0.1:12345", eh1, NULL);
|
|
for (i = 0; i < 5; i++) mg_mgr_poll(&mgr, 1);
|
|
ASSERT(c1 != NULL);
|
|
|
|
c = mg_ws_connect(&mgr, "ws://127.0.0.1:12345/ws", NULL, NULL, NULL);
|
|
for (i = 0; i < 5; i++) mg_mgr_poll(&mgr, 1);
|
|
mg_ws_send(c, "boo", 3, WEBSOCKET_OP_BINARY);
|
|
// for (i = 0; i < 5; i++) mg_mgr_poll(&mgr, 1);
|
|
// for (i = 0; i < 5; i++) mg_mgr_poll(&mgr, 1);
|
|
// ASSERT(c->flags & MG_FL_WS);
|
|
// mg_ws_send(c, WEBSOCKET_OP_TEXT, "hi!", 3);
|
|
|
|
mg_mgr_free(&mgr);
|
|
ASSERT(mgr.conns == NULL);
|
|
}
|
|
|
|
struct fetch_data {
|
|
char *buf;
|
|
int code, closed;
|
|
};
|
|
|
|
static void fcb(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
|
|
if (ev == MG_EV_HTTP_MSG) {
|
|
struct mg_http_message *hm = (struct mg_http_message *) ev_data;
|
|
struct fetch_data *fd = (struct fetch_data *) fn_data;
|
|
snprintf(fd->buf, FETCH_BUF_SIZE, "%.*s", (int) hm->message.len,
|
|
hm->message.ptr);
|
|
fd->code = atoi(hm->uri.ptr);
|
|
fd->closed = 1;
|
|
c->is_closing = 1;
|
|
(void) c;
|
|
}
|
|
}
|
|
|
|
static int fetch(struct mg_mgr *mgr, char *buf, const char *url,
|
|
const char *fmt, ...) {
|
|
struct fetch_data fd = {buf, 0, 0};
|
|
int i;
|
|
struct mg_connection *c = mg_http_connect(mgr, url, fcb, &fd);
|
|
va_list ap;
|
|
ASSERT(c != NULL);
|
|
if (mg_url_is_ssl(url)) {
|
|
struct mg_tls_opts opts;
|
|
memset(&opts, 0, sizeof(opts));
|
|
opts.ca = "./test/data/ca.pem";
|
|
if (strstr(url, "127.0.0.1") != NULL) {
|
|
// Local connection, use self-signed certificates
|
|
opts.ca = "./test/data/ss_ca.pem";
|
|
opts.cert = "./test/data/ss_client.pem";
|
|
}
|
|
mg_tls_init(c, &opts);
|
|
// c->is_hexdumping = 1;
|
|
}
|
|
va_start(ap, fmt);
|
|
mg_vprintf(c, fmt, ap);
|
|
va_end(ap);
|
|
buf[0] = '\0';
|
|
LOG(LL_DEBUG, ("FD %p %p %p", c->fd, &fd, fd.buf));
|
|
for (i = 0; i < 250 && buf[0] == '\0'; i++) mg_mgr_poll(mgr, 1);
|
|
if (!fd.closed) c->is_closing = 1;
|
|
mg_mgr_poll(mgr, 1);
|
|
return fd.code;
|
|
}
|
|
|
|
static int cmpbody(const char *buf, const char *str) {
|
|
struct mg_http_message hm;
|
|
mg_http_parse(buf, strlen(buf), &hm);
|
|
return strncmp(hm.body.ptr, str, hm.body.len);
|
|
}
|
|
|
|
static void test_http_server(void) {
|
|
struct mg_mgr mgr;
|
|
const char *url = "http://127.0.0.1:12346";
|
|
char buf[FETCH_BUF_SIZE];
|
|
struct stat st;
|
|
|
|
mg_mgr_init(&mgr);
|
|
mg_http_listen(&mgr, url, eh1, NULL);
|
|
|
|
ASSERT(fetch(&mgr, buf, url, "GET /a.txt HTTP/1.0\n\n") == 200);
|
|
ASSERT(cmpbody(buf, "hello\n") == 0);
|
|
|
|
{
|
|
extern char *mg_http_etag(char *, size_t, struct stat *);
|
|
char etag[100];
|
|
ASSERT(stat("./test/data/a.txt", &st) == 0);
|
|
ASSERT(mg_http_etag(etag, sizeof(etag), &st) == etag);
|
|
ASSERT(fetch(&mgr, buf, url, "GET /a.txt HTTP/1.0\nIf-None-Match: %s\n\n",
|
|
etag) == 304);
|
|
}
|
|
|
|
ASSERT(fetch(&mgr, buf, url, "GET /foo/1 HTTP/1.0\r\n\n") == 200);
|
|
// LOG(LL_INFO, ("%d %.*s", (int) hm.len, (int) hm.len, hm.buf));
|
|
ASSERT(cmpbody(buf, "uri: 1") == 0);
|
|
|
|
ASSERT(fetch(&mgr, buf, url, "%s",
|
|
"POST /body HTTP/1.1\r\n"
|
|
"Content-Length: 4\r\n\r\nkuku") == 200);
|
|
ASSERT(cmpbody(buf, "kuku") == 0);
|
|
|
|
ASSERT(fetch(&mgr, buf, url, "GET /badroot HTTP/1.0\r\n\n") == 400);
|
|
// LOG(LL_INFO, ("--> [%s]", buf));
|
|
#if MG_ARCH == MG_ARCH_WIN32
|
|
ASSERT(cmpbody(buf, "Bad web root [Z:\\BAAADDD!]\n") == 0);
|
|
#else
|
|
ASSERT(cmpbody(buf, "Bad web root [/BAAADDD!]\n") == 0);
|
|
#endif
|
|
|
|
{
|
|
char *data = mg_file_read("./test/data/ca.pem");
|
|
ASSERT(fetch(&mgr, buf, url, "GET /ca.pem HTTP/1.0\r\n\n") == 200);
|
|
ASSERT(cmpbody(data, buf) == 0);
|
|
free(data);
|
|
}
|
|
|
|
// HEAD request
|
|
ASSERT(fetch(&mgr, buf, url, "GET /a.txt HTTP/1.0\n\n") == 200);
|
|
ASSERT(fetch(&mgr, buf, url, "HEAD /a.txt HTTP/1.0\n\n") == 200);
|
|
|
|
mg_mgr_free(&mgr);
|
|
ASSERT(mgr.conns == NULL);
|
|
}
|
|
|
|
static void test_tls(void) {
|
|
#if MG_ENABLE_MBEDTLS || MG_ENABLE_OPENSSL
|
|
struct mg_tls_opts opts = {.ca = "./test/data/ss_ca.pem",
|
|
.cert = "./test/data/ss_server.pem"};
|
|
struct mg_mgr mgr;
|
|
struct mg_connection *c;
|
|
const char *url = "https://127.0.0.1:12347";
|
|
char buf[FETCH_BUF_SIZE];
|
|
mg_mgr_init(&mgr);
|
|
c = mg_http_listen(&mgr, url, eh1, (void *) &opts);
|
|
ASSERT(c != NULL);
|
|
ASSERT(fetch(&mgr, buf, url, "GET /a.txt HTTP/1.0\n\n") == 200);
|
|
// LOG(LL_INFO, ("%s", buf));
|
|
ASSERT(cmpbody(buf, "hello\n") == 0);
|
|
mg_mgr_free(&mgr);
|
|
ASSERT(mgr.conns == NULL);
|
|
#endif
|
|
}
|
|
|
|
static void f3(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
|
|
int *ok = (int *) fn_data;
|
|
// LOG(LL_INFO, ("%d", ev));
|
|
if (ev == MG_EV_CONNECT) {
|
|
// c->is_hexdumping = 1;
|
|
mg_printf(c, "GET / HTTP/1.0\r\nHost: cesanta.com\r\n\r\n");
|
|
} else if (ev == MG_EV_HTTP_MSG) {
|
|
struct mg_http_message *hm = (struct mg_http_message *) ev_data;
|
|
// LOG(LL_INFO, ("-->[%.*s]", (int) hm->message.len, hm->message.ptr));
|
|
// ASSERT(mg_vcmp(&hm->method, "HTTP/1.1") == 0);
|
|
// ASSERT(mg_vcmp(&hm->uri, "301") == 0);
|
|
*ok = atoi(hm->uri.ptr);
|
|
} else if (ev == MG_EV_CLOSE) {
|
|
if (*ok == 0) *ok = 888;
|
|
} else if (ev == MG_EV_ERROR) {
|
|
if (*ok == 0) *ok = 777;
|
|
}
|
|
}
|
|
|
|
static void test_http_client(void) {
|
|
struct mg_mgr mgr;
|
|
struct mg_connection *c;
|
|
int i, ok = 0;
|
|
mg_mgr_init(&mgr);
|
|
c = mg_http_connect(&mgr, "http://cesanta.com", f3, &ok);
|
|
ASSERT(c != NULL);
|
|
for (i = 0; i < 500 && ok <= 0; i++) mg_mgr_poll(&mgr, 10);
|
|
ASSERT(ok == 301);
|
|
c->is_closing = 1;
|
|
mg_mgr_poll(&mgr, 0);
|
|
ok = 0;
|
|
#if MG_ENABLE_MBEDTLS || MG_ENABLE_OPENSSL
|
|
{
|
|
struct mg_tls_opts opts = {.ca = "./test/data/ca.pem"};
|
|
c = mg_http_connect(&mgr, "https://cesanta.com", f3, &ok);
|
|
ASSERT(c != NULL);
|
|
mg_tls_init(c, &opts);
|
|
for (i = 0; i < 500 && ok <= 0; i++) mg_mgr_poll(&mgr, 10);
|
|
ASSERT(ok == 200);
|
|
}
|
|
#endif
|
|
mg_mgr_free(&mgr);
|
|
ASSERT(mgr.conns == NULL);
|
|
}
|
|
|
|
static void f4(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
|
|
if (ev == MG_EV_HTTP_MSG) {
|
|
struct mg_http_message *hm = (struct mg_http_message *) ev_data;
|
|
mg_printf(c, "HTTP/1.0 200 OK\n\n%.*s/%s", (int) hm->uri.len, hm->uri.ptr,
|
|
fn_data);
|
|
c->is_draining = 1;
|
|
}
|
|
}
|
|
|
|
static void test_http_no_content_length(void) {
|
|
struct mg_mgr mgr;
|
|
const char *url = "http://127.0.0.1:12348";
|
|
char buf[FETCH_BUF_SIZE];
|
|
mg_mgr_init(&mgr);
|
|
mg_http_listen(&mgr, url, f4, (void *) "baz");
|
|
ASSERT(fetch(&mgr, buf, url, "GET /foo/bar HTTP/1.0\r\n\n") == 200);
|
|
ASSERT(cmpbody(buf, "/foo/bar/baz") == 0);
|
|
mg_mgr_free(&mgr);
|
|
ASSERT(mgr.conns == NULL);
|
|
}
|
|
|
|
static void f5(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
|
|
if (ev == MG_EV_HTTP_MSG) {
|
|
struct mg_http_message *hm = (struct mg_http_message *) ev_data;
|
|
mg_printf(c, "HTTP/1.0 200 OK\n\n%.*s", (int) hm->uri.len, hm->uri.ptr);
|
|
(*(int *) fn_data)++;
|
|
}
|
|
}
|
|
|
|
static void test_http_pipeline(void) {
|
|
struct mg_mgr mgr;
|
|
const char *url = "http://127.0.0.1:12377";
|
|
struct mg_connection *c;
|
|
int i, ok = 0;
|
|
mg_mgr_init(&mgr);
|
|
mg_http_listen(&mgr, url, f5, (void *) &ok);
|
|
c = mg_http_connect(&mgr, url, NULL, NULL);
|
|
mg_printf(c, "POST / HTTP/1.0\nContent-Length: 5\n\n12345GET / HTTP/1.0\n\n");
|
|
for (i = 0; i < 20; i++) mg_mgr_poll(&mgr, 1);
|
|
// LOG(LL_INFO, ("-----> [%d]", ok));
|
|
ASSERT(ok == 2);
|
|
mg_mgr_free(&mgr);
|
|
ASSERT(mgr.conns == NULL);
|
|
}
|
|
|
|
static void test_http_parse(void) {
|
|
struct mg_str *v;
|
|
struct mg_http_message req;
|
|
|
|
{
|
|
const char *s = "GET / HTTP/1.0\n\n";
|
|
ASSERT(mg_http_parse("\b23", 3, &req) == -1);
|
|
ASSERT(mg_http_parse("get\n\n", 5, &req) == -1);
|
|
ASSERT(mg_http_parse(s, strlen(s) - 1, &req) == 0);
|
|
ASSERT(mg_http_parse(s, strlen(s), &req) == (int) strlen(s));
|
|
ASSERT(req.message.len == strlen(s));
|
|
ASSERT(req.body.len == 0);
|
|
}
|
|
|
|
{
|
|
const char *s = "GET /blah HTTP/1.0\r\nFoo: bar \r\n\r\n";
|
|
size_t idx, len = strlen(s);
|
|
ASSERT(mg_http_parse(s, strlen(s), &req) == (int) len);
|
|
ASSERT(mg_vcmp(&req.headers[0].name, "Foo") == 0);
|
|
ASSERT(mg_vcmp(&req.headers[0].value, "bar") == 0);
|
|
ASSERT(req.headers[1].name.len == 0);
|
|
ASSERT(req.headers[1].name.ptr == NULL);
|
|
ASSERT(req.query.len == 0);
|
|
ASSERT(req.message.len == len);
|
|
ASSERT(req.body.len == 0);
|
|
for (idx = 0; idx < len; idx++) ASSERT(mg_http_parse(s, idx, &req) == 0);
|
|
}
|
|
|
|
{
|
|
static const char *s = "get b c\nz : k \nb: t\nvvv\n\n xx";
|
|
ASSERT(mg_http_parse(s, strlen(s), &req) == (int) strlen(s) - 3);
|
|
ASSERT(req.headers[2].name.len == 0);
|
|
ASSERT(mg_vcmp(&req.headers[0].value, "k") == 0);
|
|
ASSERT(mg_vcmp(&req.headers[1].value, "t") == 0);
|
|
ASSERT(req.body.len == 0);
|
|
}
|
|
|
|
{
|
|
const char *s = "a b c\r\nContent-Length: 21 \r\nb: t\r\nvvv\r\n\r\nabc";
|
|
ASSERT(mg_http_parse(s, strlen(s), &req) == (int) strlen(s) - 3);
|
|
ASSERT(req.body.len == 21);
|
|
ASSERT(req.message.len == 21 - 3 + strlen(s));
|
|
ASSERT(mg_http_get_header(&req, "foo") == NULL);
|
|
ASSERT((v = mg_http_get_header(&req, "contENT-Length")) != NULL);
|
|
ASSERT(mg_vcmp(v, "21") == 0);
|
|
ASSERT((v = mg_http_get_header(&req, "B")) != NULL);
|
|
ASSERT(mg_vcmp(v, "t") == 0);
|
|
}
|
|
|
|
{
|
|
const char *s = "GET /foo?a=b&c=d HTTP/1.0\n\n";
|
|
ASSERT(mg_http_parse(s, strlen(s), &req) == (int) strlen(s));
|
|
ASSERT(mg_vcmp(&req.uri, "/foo") == 0);
|
|
ASSERT(mg_vcmp(&req.query, "a=b&c=d") == 0);
|
|
}
|
|
|
|
{
|
|
const char *s = "POST /x HTTP/1.0\n\n";
|
|
ASSERT(mg_http_parse(s, strlen(s), &req) == (int) strlen(s));
|
|
ASSERT(req.body.len == (size_t) ~0);
|
|
}
|
|
|
|
{
|
|
const char *s = "WOHOO /x HTTP/1.0\n\n";
|
|
ASSERT(mg_http_parse(s, strlen(s), &req) == (int) strlen(s));
|
|
ASSERT(req.body.len == 0);
|
|
}
|
|
|
|
{
|
|
const char *s = "HTTP/1.0 200 OK\n\n";
|
|
ASSERT(mg_http_parse(s, strlen(s), &req) == (int) strlen(s));
|
|
ASSERT(mg_vcmp(&req.method, "HTTP/1.0") == 0);
|
|
ASSERT(mg_vcmp(&req.uri, "200") == 0);
|
|
ASSERT(mg_vcmp(&req.proto, "OK") == 0);
|
|
ASSERT(req.body.len == (size_t) ~0);
|
|
}
|
|
|
|
{
|
|
static const char *s = "HTTP/1.0 999 OMGWTFBBQ\n\n";
|
|
ASSERT(mg_http_parse(s, strlen(s), &req) == (int) strlen(s));
|
|
}
|
|
|
|
{
|
|
const char *s =
|
|
"GET / HTTP/1.0\r\nhost:127.0.0.1:18888\r\nCookie:\r\nX-PlayID: "
|
|
"45455\r\nRange: 0-1 \r\n\r\n";
|
|
ASSERT(mg_http_parse(s, strlen(s), &req) == (int) strlen(s));
|
|
ASSERT((v = mg_http_get_header(&req, "Host")) != NULL);
|
|
ASSERT(mg_vcmp(v, "127.0.0.1:18888") == 0);
|
|
ASSERT((v = mg_http_get_header(&req, "Cookie")) != NULL);
|
|
ASSERT(v->len == 0);
|
|
ASSERT((v = mg_http_get_header(&req, "X-PlayID")) != NULL);
|
|
ASSERT(mg_vcmp(v, "45455") == 0);
|
|
ASSERT((v = mg_http_get_header(&req, "Range")) != NULL);
|
|
ASSERT(mg_vcmp(v, "0-1") == 0);
|
|
}
|
|
|
|
{
|
|
static const char *s = "a b c\na:1\nb:2\nc:3\nd:4\ne:5\nf:6\n\n";
|
|
ASSERT(mg_http_parse(s, strlen(s), &req) == (int) strlen(s));
|
|
ASSERT((v = mg_http_get_header(&req, "e")) != NULL);
|
|
ASSERT(mg_vcmp(v, "5") == 0);
|
|
ASSERT((v = mg_http_get_header(&req, "f")) == NULL);
|
|
}
|
|
}
|
|
|
|
static void test_http_range(void) {
|
|
struct mg_mgr mgr;
|
|
const char *url = "http://127.0.0.1:12349";
|
|
struct mg_http_message hm;
|
|
char buf[FETCH_BUF_SIZE];
|
|
|
|
mg_mgr_init(&mgr);
|
|
mg_http_listen(&mgr, url, eh1, NULL);
|
|
|
|
ASSERT(fetch(&mgr, buf, url, "GET /range.txt HTTP/1.0\n\n") == 200);
|
|
mg_http_parse(buf, strlen(buf), &hm);
|
|
ASSERT(hm.body.len == 312);
|
|
// ASSERT(strlen(buf) == 312);
|
|
|
|
#if 0
|
|
ASSERT(fetch(&mgr, buf, url, "%s",
|
|
"GET /data/range.txt HTTP/1.0\nRange: bytes=5-10\n\n") == 206);
|
|
ASSERT(strcmp(buf, "\r\n of co") == 0);
|
|
ASSERT_STREQ_NZ(buf, "HTTP/1.1 206 Partial Content");
|
|
ASSERT(strstr(buf, "Content-Length: 6\r\n") != 0);
|
|
ASSERT(strstr(buf, "Content-Range: bytes 5-10/312\r\n") != 0);
|
|
ASSERT_STREQ(buf + strlen(buf) - 8, "\r\n of co");
|
|
|
|
/* Fetch till EOF */
|
|
fetch_http(buf, "%s", "GET /data/range.txt HTTP/1.0\nRange: bytes=300-\n\n");
|
|
ASSERT_STREQ_NZ(buf, "HTTP/1.1 206 Partial Content");
|
|
ASSERT(strstr(buf, "Content-Length: 12\r\n") != 0);
|
|
ASSERT(strstr(buf, "Content-Range: bytes 300-311/312\r\n") != 0);
|
|
ASSERT_STREQ(buf + strlen(buf) - 14, "\r\nis disease.\n");
|
|
|
|
/* Fetch past EOF, must trigger 416 response */
|
|
fetch_http(buf, "%s", "GET /data/range.txt HTTP/1.0\nRange: bytes=1000-\n\n");
|
|
ASSERT_STREQ_NZ(buf, "HTTP/1.1 416");
|
|
ASSERT(strstr(buf, "Content-Length: 0\r\n") != 0);
|
|
ASSERT(strstr(buf, "Content-Range: bytes */312\r\n") != 0);
|
|
|
|
/* Request range past EOF, must trigger 416 response */
|
|
fetch_http(buf, "%s", "GET /data/range.txt HTTP/1.0\nRange: bytes=0-312\n\n");
|
|
ASSERT_STREQ_NZ(buf, "HTTP/1.1 416");
|
|
#endif
|
|
|
|
mg_mgr_free(&mgr);
|
|
ASSERT(mgr.conns == NULL);
|
|
}
|
|
|
|
static void f1(void *arg) {
|
|
(*(int *) arg)++;
|
|
}
|
|
|
|
static void test_timer(void) {
|
|
int v1 = 0, v2 = 0, v3 = 0;
|
|
struct mg_timer t1, t2, t3;
|
|
|
|
LOG(LL_INFO, ("g_timers: %p", g_timers));
|
|
ASSERT(g_timers == NULL);
|
|
|
|
mg_timer_init(&t1, 5, MG_TIMER_REPEAT, f1, &v1);
|
|
mg_timer_init(&t2, 15, 0, f1, &v2);
|
|
mg_timer_init(&t3, 10, MG_TIMER_REPEAT | MG_TIMER_RUN_NOW, f1, &v3);
|
|
|
|
ASSERT(g_timers == &t3);
|
|
ASSERT(g_timers->next == &t2);
|
|
|
|
mg_timer_poll(0);
|
|
mg_timer_poll(1);
|
|
ASSERT(v1 == 0);
|
|
ASSERT(v2 == 0);
|
|
ASSERT(v3 == 1);
|
|
|
|
mg_timer_poll(5);
|
|
ASSERT(v1 == 1);
|
|
ASSERT(v2 == 0);
|
|
ASSERT(v3 == 1);
|
|
|
|
ASSERT(g_timers == &t3);
|
|
ASSERT(g_timers->next == &t2);
|
|
|
|
// Simulate long delay - timers must invalidate expiration times
|
|
mg_timer_poll(100);
|
|
ASSERT(v1 == 2);
|
|
ASSERT(v2 == 1);
|
|
ASSERT(v3 == 2);
|
|
|
|
ASSERT(g_timers == &t3);
|
|
ASSERT(g_timers->next == &t1); // t2 should be removed
|
|
ASSERT(g_timers->next->next == NULL);
|
|
|
|
mg_timer_poll(107);
|
|
ASSERT(v1 == 3);
|
|
ASSERT(v2 == 1);
|
|
ASSERT(v3 == 2);
|
|
|
|
mg_timer_poll(114);
|
|
ASSERT(v1 == 4);
|
|
ASSERT(v2 == 1);
|
|
ASSERT(v3 == 3);
|
|
|
|
mg_timer_poll(115);
|
|
ASSERT(v1 == 5);
|
|
ASSERT(v2 == 1);
|
|
ASSERT(v3 == 3);
|
|
|
|
mg_timer_init(&t2, 3, 0, f1, &v2);
|
|
ASSERT(g_timers == &t2);
|
|
ASSERT(g_timers->next == &t3);
|
|
ASSERT(g_timers->next->next == &t1);
|
|
ASSERT(g_timers->next->next->next == NULL);
|
|
|
|
mg_timer_poll(120);
|
|
ASSERT(v1 == 6);
|
|
ASSERT(v2 == 1);
|
|
ASSERT(v3 == 4);
|
|
|
|
mg_timer_poll(125);
|
|
ASSERT(v1 == 7);
|
|
ASSERT(v2 == 2);
|
|
ASSERT(v3 == 4);
|
|
|
|
// Test millisecond counter wrap - when time goes back.
|
|
mg_timer_poll(0);
|
|
ASSERT(v1 == 7);
|
|
ASSERT(v2 == 2);
|
|
ASSERT(v3 == 4);
|
|
|
|
ASSERT(g_timers == &t3);
|
|
ASSERT(g_timers->next == &t1);
|
|
ASSERT(g_timers->next->next == NULL);
|
|
|
|
mg_timer_poll(7);
|
|
ASSERT(v1 == 8);
|
|
ASSERT(v2 == 2);
|
|
ASSERT(v3 == 4);
|
|
|
|
mg_timer_poll(11);
|
|
ASSERT(v1 == 9);
|
|
ASSERT(v2 == 2);
|
|
ASSERT(v3 == 5);
|
|
|
|
mg_timer_free(&t1);
|
|
ASSERT(g_timers == &t3);
|
|
ASSERT(g_timers->next == NULL);
|
|
|
|
mg_timer_free(&t2);
|
|
ASSERT(g_timers == &t3);
|
|
ASSERT(g_timers->next == NULL);
|
|
|
|
mg_timer_free(&t3);
|
|
ASSERT(g_timers == NULL);
|
|
}
|
|
|
|
int main(void) {
|
|
mg_log_set("3");
|
|
test_timer();
|
|
test_http_range();
|
|
test_url();
|
|
test_iobuf();
|
|
test_commalist();
|
|
test_base64();
|
|
test_globmatch();
|
|
test_http_get_var();
|
|
test_tls();
|
|
test_ws();
|
|
test_mqtt();
|
|
test_http_parse();
|
|
test_http_server();
|
|
test_http_client();
|
|
test_http_no_content_length();
|
|
test_http_pipeline();
|
|
test_sntp();
|
|
printf("SUCCESS. Total tests: %d\n", s_num_tests);
|
|
return EXIT_SUCCESS;
|
|
}
|