File: crashing.sh

package info (click to toggle)
finit 4.14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,216 kB
  • sloc: ansic: 17,060; sh: 6,281; makefile: 532
file content (62 lines) | stat: -rwxr-xr-x 1,174 bytes parent folder | download
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
57
58
59
60
61
62
#!/bin/sh
# Verifies that Finit calls post:script for crashing services

set -eu

TEST_DIR=$(dirname "$0")

test_teardown()
{
    say "Running test teardown."
    run "rm -f $FINIT_CONF" "/tmp/post"
}

crashit()
{
    nm=$1

    say 'Simulate service crash (kill -9 ..)'
    i=0
    laps=100
    while [ $i -lt $laps ]; do
	i=$((i + 1))
	say "Lap $i/$laps, killing service $nm ..." # we have this, no sleep needed
	if ! run "slay $nm"; then
	    break;
	fi
    done
}

test_one()
{
    type=$1
    shift
    nm=$1
    shift
    args=$*

    say "Add service stanza in $FINIT_CONF"
    run "echo service log:stderr oncrash:script post:/bin/post.sh $nm $args > $FINIT_CONF"

    say 'Reload Finit'
    run "initctl reload"

    if [ "$type" = "sig" ]; then
	retry "assert_num_children 1 $nm"
	run "initctl status $nm"
	crashit "$nm"
    fi

    retry "assert_status $nm crashed" 500
    run "cat /tmp/post"
    assert_file_contains "/tmp/post" "POST"
    run "rm -f /tmp/post"
}

# shellcheck source=/dev/null
. "$TEST_DIR/lib/setup.sh"

#run "initctl debug"

test_one sig service.sh "       -- Test crashing service.sh"
test_one app serv       "-np -c -- Test crashing serv"