summaryrefslogtreecommitdiff
path: root/test/units/testsuite-41.sh
blob: e7993e8df789eff1e88197cb402c2d97125b5670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env bash
set -eux
set -o pipefail

# wait this many secs for each test service to succeed in what is being tested
MAX_SECS=60

systemd-analyze log-level debug
systemd-analyze log-target console

# test one: Restart=on-failure should restart the service
systemd-run --unit=one -p Type=oneshot -p Restart=on-failure /bin/bash -c "exit 1" \
    && { echo 'unexpected success'; exit 1; }

for ((secs = 0; secs < MAX_SECS; secs++)); do
  [[ "$(systemctl show one.service -P NRestarts)" -le 0 ]] || break
  sleep 1
done
if [[ "$(systemctl show one.service -P NRestarts)" -le 0 ]]; then
  exit 1
fi

TMP_FILE="/tmp/test-41-oneshot-restart-test"

: >$TMP_FILE

# test two: make sure StartLimitBurst correctly limits the number of restarts
# and restarts execution of the unit from the first ExecStart=
systemd-run --unit=two \
            -p StartLimitIntervalSec=120 \
            -p StartLimitBurst=3 \
            -p Type=oneshot \
            -p Restart=on-failure \
            -p ExecStart="/bin/bash -c \"printf a >>  $TMP_FILE\"" /bin/bash -c "exit 1" \
    && { echo 'unexpected success'; exit 1; }

# wait for at least 3 restarts
for ((secs = 0; secs < MAX_SECS; secs++)); do
  [[ $(cat $TMP_FILE) != "aaa" ]] || break
  sleep 1
done
if [[ $(cat $TMP_FILE) != "aaa" ]]; then
  exit 1
fi

# wait for 5 more seconds to make sure there aren't excess restarts
sleep 5
if [[ $(cat $TMP_FILE) != "aaa" ]]; then
  exit 1
fi

systemd-analyze log-level info

echo OK >/testok

exit 0