unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
blob 92a1f7931d765f246172862abb32d60d9635b869 2220 bytes (raw)
name: tests/restart.sh 	 # note: path name is non-authoritative(*)

 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
 
# GNU Shepherd --- Test restarting services.
# Copyright © 2013, 2014, 2016 Ludovic Courtès <ludo@gnu.org>
# Copyright © 2018 Carlo Zancanaro <carlo@zancanaro.id.au>
#
# This file is part of the GNU Shepherd.
#
# The GNU Shepherd is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at
# your option) any later version.
#
# The GNU Shepherd is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.

shepherd --version
herd --version

socket="t-socket-$$"
conf="t-conf-$$"
log="t-log-$$"
pid="t-pid-$$"

herd="herd -s $socket"

trap "cat $log || true ;
  rm -f $socket $conf $log;
  test -f $pid && kill \`cat $pid\` || true ; rm -f $pid" EXIT

cat > "$conf"<<EOF
(register-services
 (make <service>
   #:provides '(test1)
   #:start (const #t)
   #:stop  (const #t))
 (make <service>
   #:provides '(test2)
   #:requires '(test1)
   #:start (const #t)
   #:stop  (const #t))
 (make <service>
   #:provides '(test3)
   #:requires '(test2)
   #:start (const #t)
   #:stop  (const #t)))
EOF

rm -f "$pid"
shepherd -I -s "$socket" -c "$conf" -l "$log" --pid="$pid" &

while ! test -f "$pid" ; do sleep 0.3 ; done

# Start some test services, and make sure they behave how we expect
$herd start test1
$herd start test2
$herd status test1 | grep started
$herd status test2 | grep started

# Restart test1 and make sure that both services are still running (ie. that
# test2 hasn't been stopped)
$herd restart test1
$herd status test1 | grep started
$herd status test2 | grep started

# Now let's test with a transitive dependency
$herd start test3
$herd status test3 | grep started

# After restarting test1 we want test3 to still be running
$herd restart test1
$herd status test1 | grep started
$herd status test2 | grep started
$herd status test3 | grep started

debug log:

solving 92a1f79 ...
found 92a1f79 in https://yhetil.org/guix-bugs/874lfi65rv.fsf@zancanaro.id.au/

applying [1/1] https://yhetil.org/guix-bugs/874lfi65rv.fsf@zancanaro.id.au/
diff --git a/tests/restart.sh b/tests/restart.sh
new file mode 100644
index 0000000..92a1f79

Checking patch tests/restart.sh...
Applied patch tests/restart.sh cleanly.

index at:
100644 92a1f7931d765f246172862abb32d60d9635b869	tests/restart.sh

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).