diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 21:30:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 21:30:40 +0000 |
commit | 133a45c109da5310add55824db21af5239951f93 (patch) | |
tree | ba6ac4c0a950a0dda56451944315d66409923918 /test/functional/cases/230_tcp.robot | |
parent | Initial commit. (diff) | |
download | rspamd-133a45c109da5310add55824db21af5239951f93.tar.xz rspamd-133a45c109da5310add55824db21af5239951f93.zip |
Adding upstream version 3.8.1.upstream/3.8.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/functional/cases/230_tcp.robot')
-rw-r--r-- | test/functional/cases/230_tcp.robot | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/test/functional/cases/230_tcp.robot b/test/functional/cases/230_tcp.robot new file mode 100644 index 0000000..d53a7fc --- /dev/null +++ b/test/functional/cases/230_tcp.robot @@ -0,0 +1,75 @@ +*** Settings *** +Suite Setup Servers Setup +Suite Teardown Servers Teardown +Library Process +Library ${RSPAMD_TESTDIR}/lib/rspamd.py +Resource ${RSPAMD_TESTDIR}/lib/rspamd.robot +Variables ${RSPAMD_TESTDIR}/lib/vars.py + +*** Variables *** +${CONFIG} ${RSPAMD_TESTDIR}/configs/lua_test.conf +${MESSAGE} ${RSPAMD_TESTDIR}/messages/spam_message.eml +${RSPAMD_LUA_SCRIPT} ${RSPAMD_TESTDIR}/lua/tcp.lua +${RSPAMD_SCOPE} Suite +${RSPAMD_URL_TLD} ${RSPAMD_TESTDIR}/../lua/unit/test_tld.dat + +*** Test Cases *** +Simple TCP request + Scan File ${MESSAGE} + ... Settings={symbols_enabled = [SIMPLE_TCP_ASYNC_TEST]} + Expect Symbol HTTP_ASYNC_RESPONSE + Expect Symbol HTTP_ASYNC_RESPONSE_2 + +#SSL TCP request +# Scan File ${MESSAGE} +# ... Settings={symbols_enabled = [SIMPLE_TCP_ASYNC_SSL_TEST]} +# Expect Symbol With Exact Options TCP_SSL_RESPONSE hello +# Expect Symbol With Exact Options TCP_SSL_RESPONSE_2 hello + +#SSL Large TCP request +# Scan File ${MESSAGE} +# ... Settings={symbols_enabled = [LARGE_TCP_ASYNC_SSL_TEST]} +# Expect Symbol TCP_SSL_LARGE +# Expect Symbol TCP_SSL_LARGE_2 + +Sync API TCP request + Scan File ${MESSAGE} + ... Settings={symbols_enabled = [SIMPLE_TCP_TEST]} + Expect Symbol HTTP_SYNC_RESPONSE + Should Contain ${SCAN_RESULT}[symbols][HTTP_SYNC_RESPONSE][options][0] hello world + Should Contain ${SCAN_RESULT}[symbols][HTTP_SYNC_RESPONSE_2][options][0] hello post + +Sync API TCP get request + #Check url /request get HTTP_SYNC_EOF_get hello world + Check url /request get HTTP_SYNC_CONTENT_get hello world + +# Broken due to dummy_https issues, disable for now +#Sync API TCP post request +# Check url /request post HTTP_SYNC_EOF_post hello post +# Check url /content-length post HTTP_SYNC_CONTENT_post hello post + +*** Keywords *** +Servers Setup + Run Dummy Http + Run Dummy Ssl + Rspamd Setup + +Servers Teardown + Dummy Http Teardown + Rspamd Teardown + Teardown Dummy Ssl + +Run Dummy Ssl + [Arguments] + ${result} = Start Process ${RSPAMD_TESTDIR}/util/dummy_ssl.py ${RSPAMD_TESTDIR}/util/server.pem + Wait Until Created /tmp/dummy_ssl.pid timeout=2 second + +Teardown Dummy Ssl + ${ssl_pid} = Get File /tmp/dummy_ssl.pid + Shutdown Process With Children ${ssl_pid} + +Check url + [Arguments] ${url} ${method} ${expect_symbol} @{expect_options} + Scan File ${MESSAGE} URL=${url} Method=${method} + ... Settings={symbols_enabled = [HTTP_TCP_TEST]} + Expect Symbol With Exact Options ${expect_symbol} @{expect_options} |