blob: 18edf9a96ca426f1c6c363f04c17047daaa7db52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
*** 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/force_actions.conf
${MESSAGE} ${RSPAMD_TESTDIR}/messages/url7.eml
${RSPAMD_SCOPE} Suite
${RSPAMD_URL_TLD} ${RSPAMD_TESTDIR}/../lua/unit/test_tld.dat
*** Test Cases ***
FORCE ACTIONS from reject to add header
Scan File ${MESSAGE} Settings-Id=id_reject
Expect Action add header
Expect Symbol FORCE_ACTION_FORCE_REJECT_TO_ADD_HEADER
FORCE ACTIONS from reject to no action
Scan File ${MESSAGE} Settings-Id=id_reject_no_action
Expect Action no action
Expect Symbol FORCE_ACTION_FORCE_REJECT_TO_NO_ACTION
FORCE ACTIONS from no action to reject
Scan File ${MESSAGE} Settings-Id=id_no_action
Expect Action reject
Expect Symbol FORCE_ACTION_FORCE_NO_ACTION_TO_REJECT
FORCE ACTIONS from no action to add header
Scan File ${MESSAGE} Settings-Id=id_no_action_to_add_header
Expect Action add header
Expect Symbol FORCE_ACTION_FORCE_NO_ACTION_TO_ADD_HEADER
FORCE ACTIONS from add header to no action
Scan File ${MESSAGE} Settings-Id=id_add_header
Expect Action no action
Expect Symbol FORCE_ACTION_FORCE_ADD_HEADER_TO_NO_ACTION
FORCE ACTIONS from add header to reject
Scan File ${MESSAGE} Settings-Id=id_add_header_to_reject
Expect Action reject
Expect Symbol FORCE_ACTION_FORCE_ADD_HEADER_TO_REJECT
|