blob: 1216e4c88ea6a103d9f8e64ecc6defbfb551e519 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
*** Settings ***
Suite Setup Generic Setup
Suite Teardown Simple Teardown
Library ${TESTDIR}/lib/rspamd.py
Resource ${TESTDIR}/lib/rspamd.robot
Variables ${TESTDIR}/lib/vars.py
*** Variables ***
${CONFIG} ${TESTDIR}/configs/composites.conf
${LUA_SCRIPT} ${TESTDIR}/lua/composites.lua
${MESSAGE} ${TESTDIR}/messages/spam_message.eml
${RSPAMD_SCOPE} Suite
*** Test Cases ***
Composites - Score
${result} = Scan Message With Rspamc ${MESSAGE}
Check Rspamc ${result} ${SPACE}50.00 / 0.00
Composites - Expressions
${result} = Scan Message With Rspamc ${MESSAGE}
Check Rspamc ${result} EXPRESSIONS (5.00)
Should Contain ${result.stdout} EXPRESSIONS_B (0.00)
Composites - Policy: remove_weight
${result} = Scan Message With Rspamc ${MESSAGE}
Check Rspamc ${result} ${SPACE}POLICY_REMOVE_WEIGHT (5.00)
Should Not Contain ${result.stdout} ${SPACE}POLICY_REMOVE_WEIGHT_A (1.00)
Should Contain ${result.stdout} ${SPACE}POLICY_REMOVE_WEIGHT_B (0.00)
Composites - Policy: force removing
${result} = Scan Message With Rspamc ${MESSAGE}
Check Rspamc ${result} ${SPACE}POLICY_FORCE_REMOVE (5.00)
Should Contain ${result.stdout} ${SPACE}POLICY_FORCE_REMOVE_A (1.00)
Should Not Contain ${result.stdout} ${SPACE}POLICY_FORCE_REMOVE_B
Composites - Policy: leave
${result} = Scan Message With Rspamc ${MESSAGE}
Check Rspamc ${result} ${SPACE}POLICY_LEAVE (5.00)
Should Not Contain ${result.stdout} ${SPACE}POLICY_LEAVE_A
Should Contain ${result.stdout} ${SPACE}POLICY_LEAVE_B (1.00)
Composites - Default policy: remove_weight
${result} = Scan Message With Rspamc ${MESSAGE}
Check Rspamc ${result} DEFAULT_POLICY_REMOVE_WEIGHT (5.00)
Should Contain ${result.stdout} DEFAULT_POLICY_REMOVE_WEIGHT_A (0.00)
Should Contain ${result.stdout} DEFAULT_POLICY_REMOVE_WEIGHT_B (0.00)
Composites - Default policy: remove_symbol
${result} = Scan Message With Rspamc ${MESSAGE}
Check Rspamc ${result} DEFAULT_POLICY_REMOVE_SYMBOL (5.00)
Should Not Contain ${result.stdout} DEFAULT_POLICY_REMOVE_SYMBOL_
Composites - Default policy: leave
${result} = Scan Message With Rspamc ${MESSAGE}
Check Rspamc ${result} DEFAULT_POLICY_LEAVE (5.00)
Should Contain ${result.stdout} DEFAULT_POLICY_LEAVE_A (1.00)
Should Contain ${result.stdout} DEFAULT_POLICY_LEAVE_B (1.00)
Composites - Symbol groups
${result} = Scan Message With Rspamc ${MESSAGE}
Check Rspamc ${result} SYMBOL_GROUPS (5.00)
Should Contain ${result.stdout} POSITIVE_A (-1.00)
Should Contain ${result.stdout} ANY_A (-1.00)
Should Contain ${result.stdout} NEGATIVE_B (1.00)
Should Not Contain ${result.stdout} NEGATIVE_A
Composites - Opts Plain
${result} = Scan Message With Rspamc ${MESSAGE} --header=opts:sym1
Check Rspamc ${result} SYMOPTS1 (5.00)
Should Not Contain ${result.stdout} SYMOPTS2
Composites - Opts RE Miss one
${result} = Scan Message With Rspamc ${MESSAGE} --header=opts:sym1,foo1
Check Rspamc ${result} SYMOPTS1 (5.00)
Should Not Contain ${result.stdout} SYMOPTS2
Composites - Opts RE Miss both
${result} = Scan Message With Rspamc ${MESSAGE} --header=opts:sym2
Should Not Contain ${result.stdout} SYMOPTS1
Should Not Contain ${result.stdout} SYMOPTS2
Composites - Opts RE Hit
${result} = Scan Message With Rspamc ${MESSAGE} --header=opts:sym2,foo1
Check Rspamc ${result} SYMOPTS2 (6.00)
Should Not Contain ${result.stdout} SYMOPTS1
|