diff options
Diffstat (limited to 'test/functional/cases/001_merged/290_greylist.robot')
-rw-r--r-- | test/functional/cases/001_merged/290_greylist.robot | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/functional/cases/001_merged/290_greylist.robot b/test/functional/cases/001_merged/290_greylist.robot new file mode 100644 index 000000000..05ce3d3f0 --- /dev/null +++ b/test/functional/cases/001_merged/290_greylist.robot @@ -0,0 +1,25 @@ +*** Settings *** +Library ${RSPAMD_TESTDIR}/lib/rspamd.py +Resource ${RSPAMD_TESTDIR}/lib/rspamd.robot +Variables ${RSPAMD_TESTDIR}/lib/vars.py + +*** Variables *** +${MESSAGE} ${RSPAMD_TESTDIR}/messages/spam_message.eml +${SETTINGS_GREYLIST} {symbols_enabled = [GREYLIST_CHECK, GREYLIST_SAVE], symbols = [FOUR_POINTS]} + +*** Test Cases *** +GREYLIST NEW + Scan File ${MESSAGE} + ... Settings=${SETTINGS_GREYLIST} + Expect Symbol With Option GREYLIST greylisted + +GREYLIST EARLY + Scan File ${MESSAGE} + ... Settings=${SETTINGS_GREYLIST} + Expect Symbol With Option GREYLIST greylisted + +GREYLIST PASS + Sleep 4s Wait greylisting timeout + Scan File ${MESSAGE} + ... Settings=${SETTINGS_GREYLIST} + Expect Symbol With Option GREYLIST pass |