blob: d0b5e0b46c7b937bfc9f7cc92066dac595189eef (
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
45
46
47
48
49
50
51
52
|
*** Settings ***
Suite Setup Force Actions Setup
Suite Teardown Force Actions 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
${RSPAMD_URL_TLD} ${RSPAMD_TESTDIR}/../lua/unit/test_tld.dat
${MESSAGE} ${RSPAMD_TESTDIR}/messages/url7.eml
${RSPAMD_SCOPE} Suite
*** 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
*** Keywords ***
Force Actions Setup
New Setup
Force Actions Teardown
Normal Teardown
Terminate All Processes kill=True
|