mirror of
https://github.com/samba-team/samba.git
synced 2025-01-25 06:04:04 +03:00
5b7bc0ae13
Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> Autobuild-User(master): Amitay Isaacs <amitay@samba.org> Autobuild-Date(master): Tue Aug 29 15:03:33 CEST 2017 on sn-devel-144
95 lines
2.0 KiB
Bash
Executable File
95 lines
2.0 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
pidfile="${TEST_VAR_DIR}/sock_daemon_test.pid.$$"
|
|
sockpath="${TEST_VAR_DIR}/sock_daemon_test.sock.$$"
|
|
|
|
remove_files ()
|
|
{
|
|
rm -f "$pidfile"
|
|
rm -f "$sockpath"
|
|
}
|
|
|
|
test_cleanup remove_files
|
|
|
|
result_filter ()
|
|
{
|
|
_pid="[0-9][0-9]*"
|
|
sed -e "s|pid=${_pid}|pid=PID|" \
|
|
-e "s|PID ${_pid}|PID PID|" \
|
|
-e "s|\[${_pid}\]|[PID]|"
|
|
}
|
|
|
|
|
|
ok <<EOF
|
|
test1[PID]: listening on $sockpath
|
|
EOF
|
|
unit_test sock_daemon_test "$pidfile" "$sockpath" 1
|
|
|
|
ok <<EOF
|
|
test2[PID]: listening on $sockpath
|
|
test2[PID]: daemon started, pid=PID
|
|
test2[PID]: Received signal 1
|
|
test2[PID]: Received signal 10
|
|
test2[PID]: Received signal 15
|
|
test2[PID]: Shutting down
|
|
EOF
|
|
unit_test sock_daemon_test "$pidfile" "$sockpath" 2
|
|
|
|
ok <<EOF
|
|
test3[PID]: listening on $sockpath
|
|
test3[PID]: daemon started, pid=PID
|
|
test3[PID]: PID PID gone away, exiting
|
|
test3[PID]: Shutting down
|
|
EOF
|
|
unit_test sock_daemon_test "$pidfile" "$sockpath" 3
|
|
|
|
ok <<EOF
|
|
test4[PID]: daemon started, pid=PID
|
|
test4[PID]: Shutting down
|
|
EOF
|
|
unit_test sock_daemon_test "$pidfile" "$sockpath" 4
|
|
|
|
ok <<EOF
|
|
test5[PID]: listening on $sockpath
|
|
test5[PID]: daemon started, pid=PID
|
|
test5[PID]: Received signal 15
|
|
test5[PID]: Shutting down
|
|
EOF
|
|
unit_test sock_daemon_test "$pidfile" "$sockpath" 5
|
|
|
|
ok <<EOF
|
|
test6[PID]: listening on $sockpath
|
|
test6[PID]: daemon started, pid=PID
|
|
test6[PID]: Shutting down
|
|
EOF
|
|
unit_test sock_daemon_test "$pidfile" "$sockpath" 6
|
|
|
|
ok <<EOF
|
|
test7[PID]: daemon started, pid=PID
|
|
test7[PID]: Received signal 15
|
|
test7[PID]: Shutting down
|
|
EOF
|
|
unit_test sock_daemon_test "$pidfile" "$sockpath" 7
|
|
|
|
ok <<EOF
|
|
test8[PID]: daemon started, pid=PID
|
|
test8[PID]: Received signal 15
|
|
test8[PID]: Shutting down
|
|
test8[PID]: daemon started, pid=PID
|
|
test8[PID]: Received signal 15
|
|
test8[PID]: Shutting down
|
|
EOF
|
|
unit_test sock_daemon_test "$pidfile" "$sockpath" 8
|
|
|
|
ok <<EOF
|
|
test9[PID]: daemon started, pid=PID
|
|
test9[PID]: Received signal 15
|
|
test9[PID]: Shutting down
|
|
test9[PID]: daemon started, pid=PID
|
|
test9[PID]: Received signal 15
|
|
test9[PID]: Shutting down
|
|
EOF
|
|
unit_test sock_daemon_test "$pidfile" "$sockpath" 9
|