diff options
author | Andrew Lewis <nerf@judo.za.org> | 2020-10-16 12:43:03 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2020-10-16 12:43:03 +0200 |
commit | 6eaf140115320e3cc386d4ec1ddb728f2ac3a892 (patch) | |
tree | 83bf6f42d012365f1f92dfa0d22623fd152bb246 /test/functional/lua | |
parent | e5407f6caba295084e61552b743e4e0f1833f802 (diff) | |
download | rspamd-6eaf140115320e3cc386d4ec1ddb728f2ac3a892.tar.gz rspamd-6eaf140115320e3cc386d4ec1ddb728f2ac3a892.zip |
[Test] Map reload: improve test output
Diffstat (limited to 'test/functional/lua')
-rw-r--r-- | test/functional/lua/mapreload.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/functional/lua/mapreload.lua b/test/functional/lua/mapreload.lua index 572da10de..ae20120fe 100644 --- a/test/functional/lua/mapreload.lua +++ b/test/functional/lua/mapreload.lua @@ -7,10 +7,14 @@ rspamd_config:register_symbol({ name = 'MAP_SET_HIT_AND_MISS', score = 1.0, callback = function() - if (test_map:get_key('example.com') and not test_map:get_key('rspamd-test.com')) then + local has_example = test_map:get_key('example.com') + local has_rspamdtest = test_map:get_key('rspamd-test.com') + if has_example and not has_rspamdtest then return true, 'example.com' - elseif (test_map:get_key('rspamd-test.com') and not test_map:get_key('example.com')) then + elseif has_rspamdtest and not has_example then return true, 'rspamd.com' + else + return true, string.format('invalid: has_example=%s, has_rspamdtest=%s', has_example, has_rspamdtest) end end }) |