From: Vsevolod Stakhov Date: Mon, 10 Jun 2019 10:54:07 +0000 (+0100) Subject: [Test] Add settings id tests X-Git-Tag: 2.0~807 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec7eeb63326cdd8b0b9b02e12b9191735fad40ef;p=thirdparty%2Frspamd.git [Test] Add settings id tests --- diff --git a/test/functional/cases/108_settings.robot b/test/functional/cases/108_settings.robot index 4ed2b53f5f..44d9b8b4d6 100644 --- a/test/functional/cases/108_settings.robot +++ b/test/functional/cases/108_settings.robot @@ -63,6 +63,18 @@ ENABLE GROUP - NORMAL Should Not Contain ${result.stdout} SIMPLE_PRE Should Not Contain ${result.stdout} SIMPLE_POST +SETTINGS ID - NORMAL + ${result} = Scan Message With Rspamc ${MESSAGE} --header Settings-Id=id_test + Check Rspamc ${result} SIMPLE_TEST + Should Not Contain ${result.stdout} SIMPLE_PRE + Should Not Contain ${result.stdout} SIMPLE_POST + +SETTINGS ID - PRE + ${result} = Scan Message With Rspamc ${MESSAGE} --header Settings-Id=id_pre + Check Rspamc ${result} SIMPLE_PRE + Should Not Contain ${result.stdout} SIMPLE_TEST + Should Not Contain ${result.stdout} SIMPLE_POST + *** Keywords *** Settings Setup ${PLUGIN_CONFIG} = Get File ${TESTDIR}/configs/settings.conf diff --git a/test/functional/configs/settings.conf b/test/functional/configs/settings.conf index d6baa95965..c2b4ba6cc5 100644 --- a/test/functional/configs/settings.conf +++ b/test/functional/configs/settings.conf @@ -1,3 +1,16 @@ lua = ${LUA_SCRIPT}; -settings { } +settings { + id_test { + id = "id_test"; + apply { + symbols_enabled = ["SIMPLE_TEST"]; + } + } + + id_pre { # implicit id + apply { + symbols_enabled = ["SIMPLE_PRE"]; + } + } +}