commit d569cbf: [TEST] FNames
korgoth1
vladislav.stakhov at gmail.com
Thu Sep 3 12:07:06 UTC 2020
Author: korgoth1
Date: 2020-09-02 21:31:57 +0300
URL: https://github.com/rspamd/rspamd/commit/d569cbf2cf6ffec37f51d892fc2f4ffd54604a0b
[TEST] FNames
---
test/functional/cases/280_rules.robot | 7 +++++++
test/functional/configs/plugins.conf | 1 +
test/functional/lua/test_fname.lua | 12 ++++++++++++
test/functional/messages/fname.eml | 29 +++++++++++++++++++++++++++++
4 files changed, 49 insertions(+)
diff --git a/test/functional/cases/280_rules.robot b/test/functional/cases/280_rules.robot
index 6c5c1ac62..a9cf70533 100644
--- a/test/functional/cases/280_rules.robot
+++ b/test/functional/cases/280_rules.robot
@@ -7,6 +7,7 @@ Variables ${TESTDIR}/lib/vars.py
*** Variables ***
${CONFIG} ${TESTDIR}/configs/plugins.conf
+${LUA_SCRIPT} ${TESTDIR}/lua/test_fname.lua
${MESSAGE} ${TESTDIR}/messages/newlines.eml
${MESSAGE1} ${TESTDIR}/messages/fws_fn.eml
${MESSAGE2} ${TESTDIR}/messages/fws_fp.eml
@@ -110,6 +111,12 @@ PHISH_SENDER_ROUTING_PART
${result} = Scan Message With Rspamc ${TESTDIR}/messages/phish_sender6.eml
Should Contain ${result.stdout} FROM_INVALID
+FILE NAMES
+ ${result} = Scan Message With Rspamc ${TESTDIR}/messages/fname.eml
+ Should Contain ${result.stdout} TEST_FNAME
+ Should Contain ${result.stdout} [삼성생명]2020.08.14 데일리 경제뉴스.pdf, 01029_402110_10620_RGT06902_PRT180ML_20200803_101820.pdf
+
+
*** Keywords ***
Rules Setup
${PLUGIN_CONFIG} = Get File ${TESTDIR}/configs/regexp.conf
diff --git a/test/functional/configs/plugins.conf b/test/functional/configs/plugins.conf
index b1885eeb6..7688a5f8a 100644
--- a/test/functional/configs/plugins.conf
+++ b/test/functional/configs/plugins.conf
@@ -746,5 +746,6 @@ modules {
}
spf {}
lua = "${TESTDIR}/lua/test_coverage.lua";
+lua = ${LUA_SCRIPT};
lua = "${INSTALLROOT}/share/rspamd/rules/rspamd.lua"
${PLUGIN_CONFIG}
diff --git a/test/functional/lua/test_fname.lua b/test/functional/lua/test_fname.lua
new file mode 100644
index 000000000..ffa7bb99f
--- /dev/null
+++ b/test/functional/lua/test_fname.lua
@@ -0,0 +1,12 @@
+rspamd_config.TEST_FNAME = {
+ callback = function(task)
+ local r = task:get_parts()
+ local fnames = {}
+ for _,rh in ipairs(r) do
+ if rh:get_filename() then
+ table.insert(fnames, rh:get_filename())
+ end
+ end
+ return true,1.0,fnames
+ end
+}
\ No newline at end of file
diff --git a/test/functional/messages/fname.eml b/test/functional/messages/fname.eml
new file mode 100644
index 000000000..045940c63
--- /dev/null
+++ b/test/functional/messages/fname.eml
@@ -0,0 +1,29 @@
+Received: by mail-lf1-f54.gulugulu.com with SMTP id j14so14439709lfg.9
+ for <test at test.ru>; Mon, 27 Apr 2020 09:54:21 -0700 (PDT)
+From: test at test.com
+Date: Mon, 27 Apr 2020 19:54:10 +0300
+Message-ID: <CA+1S=h4aGimA6vSBJF=t1F+5z-Mua5+Cimf+NU_NDWJk8ZNOcw at mail.gmail.com>
+Subject: Fwd:
+To: <test at test.ru>
+Content-Type: multipart/mixed; boundary="00000000000004de7805a4489190"
+
+--00000000000004de7805a4489190
+Content-Type: application/octet-stream
+Content-Disposition: attachment;
+ filename="=?UTF-8?B?W+yCvOyEseyDneuqhV0yMDIwLjA4Lg==?=
+ =?UTF-8?B?MTQg642w7J2866asIOqyveygnOuJtOyKpC5wZGY=?="
+Content-Transfer-Encoding: base64
+
+yCvOy
+
+--00000000000004de7805a4489190
+Content-Type: application/pdf;
+ name==?utf-8?B?MDEwMjlfNDAyMTEwXzEwNjIwX1JHVDA2OTAyX1BSVDE4ME1MXzIwMjAwODAzXzEwMTgyMC5wZGY=?=
+Content-Disposition: attachment;
+ filename==?utf-8?B?MDEwMjlfNDAyMTEwXzEwNjIwX1JHVDA2OTAyX1BSVDE4ME1MXzIwMjAwODAzXzEwMTgyMC5wZGY=?=
+Content-Transfer-Encoding: base64
+
+yCvOy
+
+
+--00000000000004de7805a4489190--
\ No newline at end of file
More information about the Commits
mailing list