aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2018-12-15 20:18:55 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2018-12-15 20:18:55 +0000
commit7048dc0475ca9e689fe38c9688774b33c1c9ecee (patch)
tree2c9474a620a928ad128e19e61ae933e6dadf7e09 /test
parentf0325fc58b093d49dbfbed07332a31d2e8332c6e (diff)
downloadrspamd-7048dc0475ca9e689fe38c9688774b33c1c9ecee.tar.gz
rspamd-7048dc0475ca9e689fe38c9688774b33c1c9ecee.zip
[Test] Rbl: Add some tests for RBL module
Diffstat (limited to 'test')
-rw-r--r--test/functional/cases/300_rbl.robot39
-rw-r--r--test/functional/configs/plugins.conf33
-rw-r--r--test/functional/configs/rbl.conf16
3 files changed, 87 insertions, 1 deletions
diff --git a/test/functional/cases/300_rbl.robot b/test/functional/cases/300_rbl.robot
new file mode 100644
index 000000000..36d13c045
--- /dev/null
+++ b/test/functional/cases/300_rbl.robot
@@ -0,0 +1,39 @@
+*** Settings ***
+Suite Setup Rbl Setup
+Suite Teardown Rbl Teardown
+Library ${TESTDIR}/lib/rspamd.py
+Resource ${TESTDIR}/lib/rspamd.robot
+Variables ${TESTDIR}/lib/vars.py
+
+*** Variables ***
+${CONFIG} ${TESTDIR}/configs/plugins.conf
+${MESSAGE} ${TESTDIR}/messages/spam_message.eml
+${RSPAMD_SCOPE} Suite
+${URL_TLD} ${TESTDIR}/../lua/unit/test_tld.dat
+
+*** Test Cases ***
+RBL FROM MISS
+ ${result} = Scan Message With Rspamc ${MESSAGE} -i 1.2.3.4
+ Check Rspamc ${result} FAKE_RBL_CODE_2 inverse=True
+
+RBL FROM HIT
+ ${result} = Scan Message With Rspamc ${MESSAGE} -i 4.3.2.1
+ Check Rspamc ${result} FAKE_RBL_CODE_2
+
+RBL FROM MULTIPLE HIT
+ ${result} = Scan Message With Rspamc ${MESSAGE} -i 4.3.2.3
+ Check Rspamc ${result} FAKE_RBL_CODE_2 FAKE_RBL_CODE_3
+
+RBL FROM UNKNOWN HIT
+ ${result} = Scan Message With Rspamc ${MESSAGE} -i 4.3.2.2
+ Check Rspamc ${result} FAKE_RBL_UNKNOWN
+
+*** Keywords ***
+Rbl Setup
+ ${PLUGIN_CONFIG} = Get File ${TESTDIR}/configs/rbl.conf
+ Set Suite Variable ${PLUGIN_CONFIG}
+ Generic Setup PLUGIN_CONFIG
+
+Rbl Teardown
+ Normal Teardown
+ Terminate All Processes kill=True \ No newline at end of file
diff --git a/test/functional/configs/plugins.conf b/test/functional/configs/plugins.conf
index b34f66208..c881e972e 100644
--- a/test/functional/configs/plugins.conf
+++ b/test/functional/configs/plugins.conf
@@ -481,7 +481,38 @@ options = {
name = "fail8.org.org.za",
type = "txt";
replies = ["v=spf1 ip4:8.8.8.8 a:www.dnssec-failed.org -all"];
- }];
+ },
+ {
+ name = "1.2.3.4.fake.rbl";
+ type = "a";
+ replies = ["127.0.0.2"];
+ },
+ {
+ name = "2.2.3.4.fake.rbl";
+ type = "a";
+ replies = ["127.0.0.10"];
+ },
+ {
+ name = "3.2.3.4.fake.rbl";
+ type = "a";
+ replies = ["127.0.0.2", "127.0.0.3"];
+ },
+ {
+ name = "4.3.2.1.fake.rbl";
+ type = "a";
+ rcode = 'nxdomain';
+ },
+ {
+ name = "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.e.f.fake.rbl";
+ type = "a";
+ replies = ["127.0.0.2"];
+ },
+ {
+ name = "131.193.18.151.fake.rbl";
+ type = "a";
+ replies = ["127.0.0.3"];
+ }
+ ];
}
}
logging = {
diff --git a/test/functional/configs/rbl.conf b/test/functional/configs/rbl.conf
new file mode 100644
index 000000000..15106548b
--- /dev/null
+++ b/test/functional/configs/rbl.conf
@@ -0,0 +1,16 @@
+rbl {
+ rbls {
+ fake {
+ from = true;
+ ipv4 = true;
+ ipv6 = true;
+ rbl = "fake.rbl";
+ symbol = "FAKE_RBL_UNKNOWN";
+ unknown = true;
+ returncodes = {
+ "FAKE_RBL_CODE_2" = "127.0.0.2";
+ "FAKE_RBL_CODE_3" = "127.0.0.3";
+ }
+ }
+ }
+} \ No newline at end of file