2021-11-22 19:21:43 +03:00
#!/usr/bin/env bash
# SPDX-License-Identifier: LGPL-2.1-or-later
set -ex
set -o pipefail
# Wait for a service to enter a state within a timeout period, if it doesn't
# enter the desired state within the timeout period then this function will
# exit the test case with a non zero exit code.
wait_on_state_or_fail ( ) {
service = $1
expected_state = $2
timeout = $3
state = $( systemctl show " $service " --property= ActiveState --value)
while [ " $state " != " $expected_state " ] ; do
if [ " $timeout " = "0" ] ; then
systemd-analyze log-level info
exit 1
fi
timeout = $(( timeout - 1 ))
sleep 1
state = $( systemctl show " $service " --property= ActiveState --value)
done
}
systemd-analyze log-level debug
cat >/run/systemd/system/testservice-failure-68.service <<EOF
[ Unit]
OnFailure = testservice-failure-exit-handler-68.service
[ Service]
2022-03-01 12:07:23 +03:00
ExecStart = sh -c "exit 1"
2021-11-22 19:21:43 +03:00
EOF
2022-02-09 14:50:19 +03:00
cat >/run/systemd/system/testservice-failure-68-template.service <<EOF
[ Unit]
OnFailure = testservice-failure-exit-handler-68-template@%n.service
[ Service]
2022-03-01 12:07:23 +03:00
ExecStart = sh -c "exit 1"
2022-02-09 14:50:19 +03:00
EOF
2021-11-22 19:21:43 +03:00
cat >/run/systemd/system/testservice-success-68.service <<EOF
[ Unit]
OnSuccess = testservice-success-exit-handler-68.service
[ Service]
2022-03-01 12:07:23 +03:00
ExecStart = sh -c "exit 0"
2021-11-22 19:21:43 +03:00
EOF
2022-02-09 14:50:19 +03:00
cat >/run/systemd/system/testservice-success-68-template.service <<EOF
[ Unit]
OnSuccess = testservice-success-exit-handler-68-template@%n.service
[ Service]
2022-03-01 12:07:23 +03:00
ExecStart = sh -c "exit 0"
2022-02-09 14:50:19 +03:00
EOF
2021-11-22 19:21:43 +03:00
# Script to check that when an OnSuccess= dependency fires, the correct
2022-02-09 14:48:30 +03:00
# MONITOR* env variables are passed.
2022-03-01 12:07:23 +03:00
cat >/tmp/check_on_success.sh <<"EOF"
#!/bin/sh
2021-11-22 19:21:43 +03:00
set -ex
2022-03-10 17:47:41 +03:00
env | sort
2022-03-01 12:07:23 +03:00
if [ " $MONITOR_SERVICE_RESULT " != "success" ] ; then
echo " MONITOR_SERVICE_RESULT was ' $MONITOR_SERVICE_RESULT ', expected 'success' "
exit 1
2022-02-09 14:48:30 +03:00
fi
2022-03-01 12:07:23 +03:00
if [ " $MONITOR_EXIT_CODE " != "exited" ] ; then
echo " MONITOR_EXIT_CODE was ' $MONITOR_EXIT_CODE ', expected 'exited' "
exit 1
2022-02-09 14:48:30 +03:00
fi
2022-03-01 12:07:23 +03:00
if [ " $MONITOR_EXIT_STATUS " != "0" ] ; then
echo " MONITOR_EXIT_STATUS was ' $MONITOR_EXIT_STATUS ', expected '0' "
exit 1
2022-02-09 14:48:30 +03:00
fi
2022-03-01 12:07:23 +03:00
if [ -z " $MONITOR_INVOCATION_ID " ] ; then
echo "MONITOR_INVOCATION_ID unset"
exit 1
2022-02-09 14:48:30 +03:00
fi
2022-03-01 12:07:23 +03:00
if [ " $MONITOR_UNIT " != "testservice-success-68.service" ] &&
[ " $MONITOR_UNIT " != "testservice-success-68-template.service" ] &&
[ " $MONITOR_UNIT " != "testservice-transient-success-68.service" ] ; then
echo " MONITOR_UNIT was ' $MONITOR_UNIT ', expected 'testservice[-transient]-success-68[-template].service' "
exit 1
2022-02-09 14:48:30 +03:00
fi
2021-11-22 19:21:43 +03:00
2022-03-01 12:07:23 +03:00
exit 0
2021-11-22 19:21:43 +03:00
EOF
chmod +x /tmp/check_on_success.sh
cat >/run/systemd/system/testservice-success-exit-handler-68.service <<EOF
[ Service]
ExecStartPre = /tmp/check_on_success.sh
ExecStart = /tmp/check_on_success.sh
EOF
2022-03-24 15:45:03 +03:00
cp /run/systemd/system/testservice-success-exit-handler-68.service \
/run/systemd/system/testservice-transient-success-exit-handler-68.service
2022-02-09 14:50:19 +03:00
# Template version.
cat >/run/systemd/system/testservice-success-exit-handler-68-template@.service <<EOF
[ Service]
ExecStartPre = echo "triggered by %i"
ExecStartPre = /tmp/check_on_success.sh
ExecStart = /tmp/check_on_success.sh
EOF
2021-11-22 19:21:43 +03:00
# Script to check that when an OnFailure= dependency fires, the correct
2022-02-09 14:48:30 +03:00
# MONITOR* env variables are passed.
2022-03-01 12:07:23 +03:00
cat >/tmp/check_on_failure.sh <<"EOF"
#!/bin/sh
2021-11-22 19:21:43 +03:00
set -ex
2022-03-10 17:47:41 +03:00
env | sort
2022-03-01 12:07:23 +03:00
if [ " $MONITOR_SERVICE_RESULT " != "exit-code" ] ; then
echo " MONITOR_SERVICE_RESULT was ' $MONITOR_SERVICE_RESULT ', expected 'exit-code' "
exit 1
2022-02-09 14:48:30 +03:00
fi
2022-03-01 12:07:23 +03:00
if [ " $MONITOR_EXIT_CODE " != "exited" ] ; then
echo " MONITOR_EXIT_CODE was ' $MONITOR_EXIT_CODE ', expected 'exited' "
exit 1
2022-02-09 14:48:30 +03:00
fi
2022-03-01 12:07:23 +03:00
if [ " $MONITOR_EXIT_STATUS " != "1" ] ; then
echo " MONITOR_EXIT_STATUS was ' $MONITOR_EXIT_STATUS ', expected '1' "
exit 1
2022-02-09 14:48:30 +03:00
fi
2022-03-01 12:07:23 +03:00
if [ -z " $MONITOR_INVOCATION_ID " ] ; then
echo "MONITOR_INVOCATION_ID unset"
exit 1
2022-02-09 14:48:30 +03:00
fi
2022-03-01 12:07:23 +03:00
if [ " $MONITOR_UNIT " != "testservice-failure-68.service" ] &&
[ " $MONITOR_UNIT " != "testservice-failure-68-template.service" ] &&
[ " $MONITOR_UNIT " != "testservice-transient-failure-68.service" ] ; then
echo " MONITOR_UNIT was ' $MONITOR_UNIT ', expected 'testservice[-transient]-failure-68[-template].service' "
exit 1
2022-02-09 14:48:30 +03:00
fi
2021-11-22 19:21:43 +03:00
2022-03-01 12:07:23 +03:00
exit 0
2021-11-22 19:21:43 +03:00
EOF
chmod +x /tmp/check_on_failure.sh
cat >/run/systemd/system/testservice-failure-exit-handler-68.service <<EOF
[ Service]
2022-03-01 12:49:26 +03:00
# repeat the check to make sure that values are set correctly on repeated invocations
Type = oneshot
2021-11-22 19:21:43 +03:00
ExecStartPre = /tmp/check_on_failure.sh
2022-03-01 12:49:26 +03:00
ExecStartPre = /tmp/check_on_failure.sh
ExecStart = /tmp/check_on_failure.sh
2021-11-22 19:21:43 +03:00
ExecStart = /tmp/check_on_failure.sh
2022-03-01 12:49:26 +03:00
ExecStartPost = test -z '$MONITOR_SERVICE_RESULT'
2021-11-22 19:21:43 +03:00
EOF
2022-03-24 15:45:03 +03:00
cp /run/systemd/system/testservice-failure-exit-handler-68.service \
/run/systemd/system/testservice-transient-failure-exit-handler-68.service
2022-02-09 14:50:19 +03:00
# Template version.
cat >/run/systemd/system/testservice-failure-exit-handler-68-template@.service <<EOF
[ Service]
2022-03-01 12:49:26 +03:00
Type = oneshot
2022-02-09 14:50:19 +03:00
ExecStartPre = echo "triggered by %i"
ExecStartPre = /tmp/check_on_failure.sh
2022-03-01 12:49:26 +03:00
ExecStartPre = /tmp/check_on_failure.sh
ExecStart = /tmp/check_on_failure.sh
2022-02-09 14:50:19 +03:00
ExecStart = /tmp/check_on_failure.sh
2022-03-01 12:49:26 +03:00
ExecStartPost = test -z '$MONITOR_SERVICE_RESULT'
2022-02-09 14:50:19 +03:00
EOF
2021-11-22 19:21:43 +03:00
systemctl daemon-reload
2022-03-10 17:47:41 +03:00
: "-------I----------------------------------------------------"
2021-11-22 19:21:43 +03:00
systemctl start testservice-failure-68.service
wait_on_state_or_fail "testservice-failure-exit-handler-68.service" "inactive" "10"
2022-03-10 17:47:41 +03:00
: "-------II---------------------------------------------------"
2021-11-22 19:21:43 +03:00
systemctl start testservice-success-68.service
wait_on_state_or_fail "testservice-success-exit-handler-68.service" "inactive" "10"
# Test some transient units since these exit very quickly.
2022-03-10 17:47:41 +03:00
: "-------III--------------------------------------------------"
2022-03-24 15:45:03 +03:00
systemd-run --unit= testservice-transient-success-68 \
--property= OnSuccess = testservice-transient-success-exit-handler-68.service \
sh -c "exit 0"
2021-11-22 19:21:43 +03:00
wait_on_state_or_fail "testservice-success-exit-handler-68.service" "inactive" "10"
2022-03-10 17:47:41 +03:00
: "-------IIII-------------------------------------------------"
2022-03-24 15:45:03 +03:00
systemd-run --unit= testservice-transient-failure-68 \
--property= OnFailure = testservice-transient-failure-exit-handler-68.service \
sh -c "exit 1"
2021-11-22 19:21:43 +03:00
wait_on_state_or_fail "testservice-failure-exit-handler-68.service" "inactive" "10"
2022-02-09 14:50:19 +03:00
# Test template handlers too
2022-03-10 17:47:41 +03:00
: "-------V---------------------------------------------------"
2022-02-09 14:50:19 +03:00
systemctl start testservice-success-68-template.service
wait_on_state_or_fail "testservice-success-exit-handler-68-template@testservice-success-68-template.service.service" "inactive" "10"
2022-03-10 17:47:41 +03:00
: "-------VI----------------------------------------------------"
systemctl start testservice-failure-68-template.service
wait_on_state_or_fail "testservice-failure-exit-handler-68-template@testservice-failure-68-template.service.service" "inactive" "10"
2021-11-22 19:21:43 +03:00
systemd-analyze log-level info
echo OK >/testok
exit 0