aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/functional/cases/reload.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/functional/cases/reload.sh b/test/functional/cases/reload.sh
new file mode 100644
index 000000000..cb1ce0ba3
--- /dev/null
+++ b/test/functional/cases/reload.sh
@@ -0,0 +1,23 @@
+# Test rspamd reload
+
+. ${TEST_DIRNAME}/functions.sh
+
+sed -e 's|@@LUA_SCRIPT@@|${TESTDIR}/cases/deps.lua|' < \
+ "$TEST_DIRNAME/configs/lua_test.conf" > \
+ "$TMPDIR/rspamd.conf"
+export RSPAMD_CONFIG="$TMPDIR/rspamd.conf" \
+ STATSDIR=${TMPDIR}
+run_rspamd
+
+run_rspamc symbols \
+ "$TEST_DIRNAME/messages/spam_message.eml"
+check_output 'DEP10'
+
+kill -HUP `cat ${TMPDIR}/rspamd.pid`
+sleep 0.5
+kill -HUP `cat ${TMPDIR}/rspamd.pid`
+sleep 0.5
+
+run_rspamc symbols \
+ "$TEST_DIRNAME/messages/spam_message.eml"
+check_output 'DEP10' \ No newline at end of file