*** Settings ***
+Library OperatingSystem
Library ${TESTDIR}/lib/rspamd.py
Resource ${TESTDIR}/lib/rspamd.robot
Variables ${TESTDIR}/lib/vars.py
*** Variables ***
+${ALGORITHM} ${EMPTY}
${CONFIG} ${TESTDIR}/configs/fuzzy.conf
${FLAG1_NUMBER} 50
${FLAG1_SYMBOL} R_TEST_FUZZY_DENIED
${FLAG2_NUMBER} 51
${FLAG2_SYMBOL} R_TEST_FUZZY_WHITE
-${MESSAGE} ${TESTDIR}/messages/bad_message.eml
+@{MESSAGES} ${TESTDIR}/messages/spam_message.eml ${TESTDIR}/messages/zip.eml
+@{RANDOM_MESSAGES} ${TESTDIR}/messages/bad_message.eml ${TESTDIR}/messages/zip-doublebad.eml
${RSPAMD_SCOPE} Suite
+${SETTINGS_FUZZY_WORKER} ${EMPTY}
+${SETTINGS_FUZZY_CHECK} ${EMPTY}
*** Keywords ***
Fuzzy Add Test
- Set Suite Variable ${RSPAMD_FUZZY_ADD} 0
+ [Arguments] ${message}
+ Set Suite Variable ${RSPAMD_FUZZY_ADD_${message}} 0
${result} = Run Rspamc -h ${LOCAL_ADDR}:${PORT_CONTROLLER} -w 10 -f
- ... ${FLAG1_NUMBER} fuzzy_add ${MESSAGE}
+ ... ${FLAG1_NUMBER} fuzzy_add ${message}
Check Rspamc ${result}
Sync Fuzzy Storage
- ${result} = Scan Message With Rspamc ${MESSAGE}
+ ${result} = Scan Message With Rspamc ${message}
Check Rspamc ${result} ${FLAG1_SYMBOL}
- Set Suite Variable ${RSPAMD_FUZZY_ADD} 1
+ Set Suite Variable ${RSPAMD_FUZZY_ADD_${message}} 1
Fuzzy Delete Test
- Run Keyword If ${RSPAMD_FUZZY_ADD} == 0 Fail "Fuzzy Add was not run"
+ [Arguments] ${message}
+ Run Keyword If ${RSPAMD_FUZZY_ADD_${message}} == 0 Fail "Fuzzy Add was not run"
${result} = Run Rspamc -h ${LOCAL_ADDR}:${PORT_CONTROLLER} -f ${FLAG1_NUMBER} fuzzy_del
- ... ${MESSAGE}
+ ... ${message}
Check Rspamc ${result}
Sync Fuzzy Storage
- ${result} = Scan Message With Rspamc ${MESSAGE}
+ ${result} = Scan Message With Rspamc ${message}
Follow Rspamd Log
Should Not Contain ${result.stdout} ${FLAG1_SYMBOL}
Should Be Equal As Integers ${result.rc} 0
+Fuzzy Fuzzy Test
+ [Arguments] ${message}
+ Run Keyword If ${RSPAMD_FUZZY_ADD_${message}} != 1 Fail "Fuzzy Add was not run"
+ @{path_info} = Path Splitter ${message}
+ @{fuzzy_files} = List Files In Directory @{pathinfo}[0] @{pathinfo][1].fuzzy* absolute=1
+ : FOR ${i} IN @{fuzzy_files}
+ \ ${result} = Scan Message With Rspamc ${i}
+ \ Check Rspamc ${result} ${FLAG1_SYMBOL}
+
+Fuzzy Miss Test
+ [Arguments] ${message}
+ ${result} = Scan Message With Rspamc ${message}
+ Check Rspamc ${result} ${FLAG1_SYMBOL} inverse=1
+
Fuzzy Overwrite Test
+ [Arguments] ${message}
${flag_numbers} = Create List ${FLAG1_NUMBER} ${FLAG2_NUMBER}
: FOR ${i} IN @{flag_numbers}
\ ${result} = Run Rspamc -h ${LOCAL_ADDR}:${PORT_CONTROLLER} -w 10
- \ ... -f ${i} fuzzy_add ${MESSAGE}
+ \ ... -f ${i} fuzzy_add ${message}
\ Check Rspamc ${result}
Sync Fuzzy Storage
- ${result} = Scan Message With Rspamc ${MESSAGE}
+ ${result} = Scan Message With Rspamc ${message}
Follow Rspamd Log
Should Not Contain ${result.stdout} ${FLAG1_SYMBOL}
Should Contain ${result.stdout} ${FLAG2_SYMBOL}
Should Be Equal As Integers ${result.rc} 0
+
+Fuzzy Setup Encrypted
+ [Arguments] ${algorithm}
+ ${worker_settings} = Set Variable "keypair": {"pubkey": "${KEY_PUB1}", "privkey": "${KEY_PVT1}"}; "encrypted_only": true;
+ ${check_settings} = Set Variable encryption_key = "${KEY_PUB1}";
+ Fuzzy Setup Generic ${algorithm} ${worker_settings} ${check_settings}
+
+Fuzzy Setup Encrypted Keyed
+ [Arguments] ${algorithm}
+ ${worker_settings} = Set Variable "keypair": {"pubkey": "${KEY_PUB1}", "privkey": "${KEY_PVT1}"}; "encrypted_only": true;
+ ${check_settings} = Set Variable fuzzy_key = "mYN888sydwLTfE32g2hN"; fuzzy_shingles_key = "hXUCgul9yYY3Zlk1QIT2"; encryption_key = "${KEY_PUB1}";
+ Fuzzy Setup Generic ${algorithm} ${worker_settings} ${check_settings}
+
+Fuzzy Setup Plain
+ [Arguments] ${algorithm}
+ Fuzzy Setup Generic ${algorithm} ${EMPTY} ${EMPTY}
+
+Fuzzy Setup Keyed
+ [Arguments] ${algorithm}
+ ${check_settings} = Set Variable fuzzy_key = "mYN888sydwLTfE32g2hN"; fuzzy_shingles_key = "hXUCgul9yYY3Zlk1QIT2";
+ Fuzzy Setup Generic ${algorithm} ${EMPTY} ${check_settings}
+
+Fuzzy Setup Generic
+ [Arguments] ${algorithm} ${worker_settings} ${check_settings}
+ Set Suite Variable ${SETTINGS_FUZZY_WORKER} ${worker_settings}
+ Set Suite Variable ${SETTINGS_FUZZY_CHECK} ${check_settings}
+ Set Suite Variable ${ALGORITHM} ${algorithm}
+ Generic Setup
+
+Fuzzy Setup Plain Fasthash
+ Fuzzy Setup Plain fasthash
+
+Fuzzy Setup Plain Mumhash
+ Fuzzy Setup Plain mumhash
+
+Fuzzy Setup Plain Siphash
+ Fuzzy Setup Plain siphash
+
+Fuzzy Setup Plain Xxhash
+ Fuzzy Setup Plain xxhash
+
+Fuzzy Setup Keyed Fasthash
+ Fuzzy Setup Keyed fasthash
+
+Fuzzy Setup Keyed Mumhash
+ Fuzzy Setup Keyed mumhash
+
+Fuzzy Setup Keyed Siphash
+ Fuzzy Setup Keyed siphash
+
+Fuzzy Setup Keyed Xxhash
+ Fuzzy Setup Keyed xxhash
+
+Fuzzy Setup Encrypted Siphash
+ Fuzzy Setup Encrypted siphash
+
+Fuzzy Multimessage Add Test
+ : FOR ${i} IN @{MESSAGES}
+ \ Fuzzy Add Test ${i}
+
+Fuzzy Multimessage Fuzzy Test
+ : FOR ${i} IN @{MESSAGES}
+ \ Fuzzy Fuzzy Test ${i}
+
+Fuzzy Multimessage Miss Test
+ : FOR ${i} IN @{RANDOM_MESSAGES}
+ \ Fuzzy Miss Test ${i}
+
+Fuzzy Multimessage Delete Test
+ : FOR ${i} IN @{MESSAGES}
+ \ Fuzzy Delete Test ${i}
+
+Fuzzy Multimessage Overwrite Test
+ : FOR ${i} IN @{MESSAGES}
+ \ Fuzzy Overwrite Test ${i}
--- /dev/null
+Reply-To: <bob@example.net>\r
+From: "Bob" <bob@example.com>\r
+Subject: Hello\r
+Date: Sun, 14 Aug 2016 13:35:02 +0200\r
+MIME-Version: 1.0\r
+Content-Type: text/plain\r
+Content-Transfer-Encoding: 7bit\r
+\r
+Dear Western Union Beneficiary,\r
+\r
+\r
+UNITED NATIONS PAYMENT NOTIFICATION.\r
+\r
+We wish to inform you the United Nations (UN) authorized us to remit to you a total amount of $920,000.00, (Nine Hundred and Twenty Thousand United States Dollars).\r
+\r
+Your Cash prize was paid out to us by the United Nations, and they have successfully succeeded in depositing your whole funds with us here at Western Union London United Kingdom.\r
+\r
+They have now ordered us to take full responsibility in the transfer process of your funds and thus commence the immediate remittance of your funds to you.\r
+\r
+Be duly informed that because of our Western Union transfer policy, your funds will be paid to you via our Western Union Daily Transfer limit of $4,600.00 USD. This means that you will receive a amount of $4,600.00 USD daily, and this amount Can be collected from any of our numerous Western Union outlets in your current location.\r
+\r
+To begin the claim process of your daily payment as stated above, kindly furnish us with the following;\r
+\r
+Full Name:\r
+Address:\r
+Phone Number:\r
+\r
+Upon receipt of the above mentioned details, your first transaction will be activated and we shall then Proceed to provide you with the Money Transfer Control Number (MTCN) for the First installment and we will continue to email you others after 12 hours of Receiving each payment.\r
+\r
+For information on your payment status;\r
+\r
+Contact Person\r
+Henry Adams\r
+Email: h_ada15@aol.co.uk\r
+\r
+OR call our 24 hours Helpline @ +440000000000, for any inquiries on the above message.\r
+\r
+\r
+Yours truly,\r
+\r
+Diana Mckay\r
+For: Western Union London, United Kingdom.\r
+WESTERN UNION... Over 380,000 Outlets Worldwide\r
+\r