summaryrefslogtreecommitdiff
path: root/test/scripts/light-system-test.sh
blob: 217fb2c83c0f2079d8d78a515985fac131d3ac36 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/bin/sh

set -o nounset
set -o errexit

top_srcdir=$(cd $(dirname $0)/../..; pwd)

. ${top_srcdir}/test/scripts/testutils.sh

SCRIPTS=${top_srcdir}/test/scripts

tests_start() {
    ${SCRIPTS}/light-system-test-start.sh "$@"
}

tests_stop() {
    ${SCRIPTS}/light-system-test-stop.sh "$@"
}

tests_stop_all() {
    ${SCRIPTS}/light-system-test-stop.sh mergeprimary mergesecondary frontend storage signing
}

${SCRIPTS}/light-system-test-prepare.sh
tests_start signing mergesecondary storage frontend
${top_srcdir}/tools/initlog.py --config machine/merge/catlfish-test.cfg --localconfig machine/merge/catlfish-test-local-merge.cfg
tests_start mergeprimary
${SCRIPTS}/light-system-test-run-1.sh || (echo "Tests failed"; sleep 5; tests_stop_all; false)
sleep 5
tests_stop_all
sleep 5
echo
echo
echo
echo
echo Test 2
echo
echo
echo
echo
echo
tests_start signing mergesecondary storage frontend mergeprimary
${SCRIPTS}/light-system-test-run-2.sh || (echo "Tests failed"; sleep 5; tests_stop_all; false)
sleep 5
tests_stop_all
sleep 5
echo
echo
echo
echo
echo Test 3
echo
echo
echo
echo
echo
${SCRIPTS}/light-system-test-prepare-merge-takeover.sh
tests_start signing mergesecondary storage frontend
${top_srcdir}/tools/initlog.py --config machine/merge/catlfish-test.cfg --localconfig machine/merge/catlfish-test-local-merge.cfg --promote-secondary
tests_start mergeprimary
${SCRIPTS}/light-system-test-run-3.sh || (echo "Tests failed"; sleep 5; tests_stop_all; false)
sleep 5
tests_stop_all
sleep 5
echo
echo
echo
echo
echo Test 4
echo
echo
echo
echo
echo
${SCRIPTS}/light-system-test-prepare-redistribute-frontend.sh
tests_start signing mergesecondary storage frontend mergeprimary
${SCRIPTS}/light-system-test-run-4.sh || (echo "Tests failed"; sleep 5; tests_stop_all; false)

echo
echo
echo
echo
echo Test 5
echo
echo
echo
echo
echo


${SCRIPTS}/light-system-test-run-5.sh || (echo "Tests failed"; sleep 5; tests_stop_all; false)
sleep 5
tests_stop_all