diff options
| author | Garrett D'Amore <garrett@damore.org> | 2019-12-29 10:12:23 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2019-12-29 10:12:23 -0800 |
| commit | 1a9b1a0ad3e1e98a307c8a99211ebc3a94b4ac3e (patch) | |
| tree | 247a13ce5bdbbba8bff80954b76057dca8eb4c24 /tests/httpserver.c | |
| parent | aed9697d71798d923443f3fb6297cecf89bc4218 (diff) | |
| download | nng-1a9b1a0ad3e1e98a307c8a99211ebc3a94b4ac3e.tar.gz nng-1a9b1a0ad3e1e98a307c8a99211ebc3a94b4ac3e.tar.bz2 nng-1a9b1a0ad3e1e98a307c8a99211ebc3a94b4ac3e.zip | |
fixes #1065 resolver leaks work structures
This includes changes to support setting the sanitizer *correctly*
(the old code CMake stuff didn't quite get it right), and addresses
a number of failures in the test code found by the address sanitizer.
Diffstat (limited to 'tests/httpserver.c')
| -rw-r--r-- | tests/httpserver.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/httpserver.c b/tests/httpserver.c index 996d20b4..a69889a5 100644 --- a/tests/httpserver.c +++ b/tests/httpserver.c @@ -353,7 +353,7 @@ TestMain("HTTP Server", { So(size == strlen(doc1)); So(memcmp(data, doc1, size) == 0); So(strcmp(ctype, "text/html") == 0); - free(ctype); + nng_strfree(ctype); nng_free(data, size); }); @@ -403,6 +403,8 @@ TestMain("HTTP Server", { snprintf(fullurl, sizeof(fullurl), "%s/docs/", urlstr); So(httpget(fullurl, &data, &size, &stat, &ctype) == 0); So(stat == NNG_HTTP_STATUS_NOT_FOUND); + nng_strfree(ctype); + nng_free(data, size); }); Convey("Custom error page works", { @@ -418,6 +420,8 @@ TestMain("HTTP Server", { So(stat == NNG_HTTP_STATUS_NOT_FOUND); So(size == strlen(doc4)); So(memcmp(data, doc4, size) == 0); + nng_strfree(ctype); + nng_free(data, size); }); Convey("Bad method gives 405", { @@ -440,6 +444,7 @@ TestMain("HTTP Server", { nng_http_req_free(req); nng_http_res_free(res); nng_url_free(curl); + nng_free(data, size); }); Convey("Version 0.9 gives 505", { char fullurl[256]; @@ -461,6 +466,7 @@ TestMain("HTTP Server", { nng_http_req_free(req); nng_http_res_free(res); nng_url_free(curl); + nng_free(data, size); }); Convey("Missing Host gives 400", { char fullurl[256]; @@ -482,6 +488,7 @@ TestMain("HTTP Server", { nng_http_req_free(req); nng_http_res_free(res); nng_url_free(curl); + nng_free(data, size); }); }); @@ -529,6 +536,7 @@ TestMain("HTTP Server", { nng_http_req_free(req); nng_http_res_free(res); nng_url_free(curl); + nng_free(rxdata, size); }); Convey("Get method gives 405", { @@ -551,6 +559,7 @@ TestMain("HTTP Server", { nng_http_req_free(req); nng_http_res_free(res); nng_url_free(curl); + nng_free(data, size); }); }); @@ -598,6 +607,7 @@ TestMain("HTTP Server", { nng_http_req_free(req); nng_http_res_free(res); nng_url_free(curl); + nng_free(data, size); }); Convey("Tree redirect works", { @@ -633,6 +643,7 @@ TestMain("HTTP Server", { nng_http_req_free(req); nng_http_res_free(res); nng_url_free(curl); + nng_free(data, size); }); Convey("POST Redirect works", { @@ -667,6 +678,7 @@ TestMain("HTTP Server", { nng_http_req_free(req); nng_http_res_free(res); nng_url_free(curl); + nng_free(data, size); }); }); @@ -714,6 +726,7 @@ TestMain("HTTP Server", { nng_http_req_free(req); nng_http_res_free(res); nng_url_free(curl); + nng_free(rxdata, size); }); }); }); |
