diff options
Diffstat (limited to 'test/functional/cases/500_ratelimit.conf')
-rw-r--r-- | test/functional/cases/500_ratelimit.conf | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/test/functional/cases/500_ratelimit.conf b/test/functional/cases/500_ratelimit.conf deleted file mode 100644 index 425df34be..000000000 --- a/test/functional/cases/500_ratelimit.conf +++ /dev/null @@ -1,44 +0,0 @@ -*** Settings *** -Suite Setup Rspamd Setup -Suite Teardown Rspamd Teardown -Library ${RSPAMD_TESTDIR}/lib/rspamd.py -Resource ${RSPAMD_TESTDIR}/lib/rspamd.robot -Variables ${RSPAMD_TESTDIR}/lib/vars.py - -*** Variables *** -${CONFIG} ${RSPAMD_TESTDIR}/configs/ratelimit.conf -${MESSAGE} ${RSPAMD_TESTDIR}/messages/ham.eml -${RSPAMD_SCOPE} Suite -${SETTINGS_REPLIES} {symbols_enabled = [RATELIMIT_CHECK, RATELIMIT_UPDATE]} - -*** Keywords *** -Recipient Test - [Arguments] ${from} ${rcpt} ${howmany} - FOR ${index} IN RANGE ${howmany} - Scan File ${HAM_MESSAGE} - ... From=${from} - ... IP=1.1.1.1 - ... Settings=${SETTINGS_RATELIMIT} - ... Rcpt=${rcpt} - Expect Action no action - END - Scan File ${HAM_MESSAGE} - ... From=${from} - ... IP=1.1.1.1 - ... Settings=${SETTINGS_RATELIMIT} - ... Rcpt=${rcpt} - Expect Action soft reject - Sleep 1s - Scan File ${HAM_MESSAGE} - ... From=${from} - ... IP=1.1.1.1 - ... Settings=${SETTINGS_RATELIMIT} - ... Rcpt=${rcpt} - Expect Action no action - -*** Test Cases *** -CHECK BASIC - Recipient Test ${EMPTY} foobar@example.net 4 - -CHECK SELECTOR - Recipient Test foo@example.net special@example.net 2 |