diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-02-28 20:00:27 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-02-28 20:00:27 +0000 |
commit | e837c9b7b510ee9eb51bca79a800f3813698baa2 (patch) | |
tree | 5d10a9dc78cac26cb667fd91bd6141bff4a7aa70 /test/functional | |
parent | 60c10d57b181b24c1993d1148186d579e4682fd2 (diff) | |
download | rspamd-e837c9b7b510ee9eb51bca79a800f3813698baa2.tar.gz rspamd-e837c9b7b510ee9eb51bca79a800f3813698baa2.zip |
[Test] Fix http tests - remove coroutines tests
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/cases/220_http.robot | 16 | ||||
-rw-r--r-- | test/functional/lua/http.lua | 3 |
2 files changed, 10 insertions, 9 deletions
diff --git a/test/functional/cases/220_http.robot b/test/functional/cases/220_http.robot index b4292897e..7166b2a56 100644 --- a/test/functional/cases/220_http.robot +++ b/test/functional/cases/220_http.robot @@ -15,25 +15,25 @@ ${RSPAMD_SCOPE} Test *** Test Cases *** Simple HTTP request - Check url /request get HTTP_DNS_200 HTTP_200 HTTP_CORO_DNS_200 HTTP_CORO_200 method_get hello world HTTP_CORO_200 (0.00)[hello world] - Check url /request post HTTP_DNS_200 HTTP_200 HTTP_CORO_DNS_200 HTTP_CORO_200 method_post hello post HTTP_CORO_DNS_200 (0.00)[hello post] + Check url /request get HTTP_DNS_200 HTTP_200 method_get hello world + Check url /request post HTTP_DNS_200 HTTP_200 method_post hello post *** Test Cases *** HTTP request 403 - Check url /error_403 get HTTP_DNS_403 HTTP_403 HTTP_CORO_DNS_403 HTTP_CORO_403 method_get - Check url /error_403 post HTTP_DNS_403 HTTP_403 HTTP_CORO_DNS_403 HTTP_CORO_403 method_post + Check url /error_403 get HTTP_DNS_403 HTTP_403 method_get + Check url /error_403 post HTTP_DNS_403 HTTP_403 method_post *** Test Cases *** HTTP timeout - Check url /timeout get HTTP_ERROR HTTP_ERROR HTTP_CORO_DNS_ERROR HTTP_CORO_ERROR method_get IO timeout - Check url /timeout post HTTP_DNS_ERROR HTTP_ERROR HTTP_CORO_DNS_ERROR HTTP_CORO_ERROR method_post IO timeout + Check url /timeout get HTTP_ERROR HTTP_ERROR method_get IO timeout + Check url /timeout post HTTP_DNS_ERROR HTTP_ERROR method_post IO timeout *** Test Cases *** HTTP empty response - Check url /empty get HTTP_ERROR HTTP_ERROR HTTP_CORO_DNS_ERROR HTTP_CORO_ERROR method_get IO read error: unexpected EOF - Check url /empty post HTTP_DNS_ERROR HTTP_ERROR HTTP_CORO_DNS_ERROR HTTP_CORO_ERROR method_post IO read error: unexpected EOF + Check url /empty get HTTP_ERROR HTTP_ERROR method_get IO read error: unexpected EOF + Check url /empty post HTTP_DNS_ERROR HTTP_ERROR method_post IO read error: unexpected EOF *** Keywords *** diff --git a/test/functional/lua/http.lua b/test/functional/lua/http.lua index 0263beb6f..a433a9d93 100644 --- a/test/functional/lua/http.lua +++ b/test/functional/lua/http.lua @@ -43,7 +43,7 @@ local function http_symbol(task) callback = http_dns_callback, timeout = 1, }) - +--[[ rspamd_logger.errx(task, 'rspamd_http.request[before]') local err, response = rspamd_http.request({ @@ -73,6 +73,7 @@ local function http_symbol(task) else task:insert_result('HTTP_CORO_DNS_ERROR', 1.0, err) end + --]] end |