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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
#!/bin/bash -eu
#
# Test dynamic roles management.
GO=${GO:-go}
ASAN=${ASAN:-}
VERBOSE=${VERBOSE:-0}
DIR=$(mktemp -d)
BINARY=$DIR/main
CLUSTER=127.0.0.1:9001,127.0.0.1:9002,127.0.0.1:9003,127.0.0.1:9004,127.0.0.1:9005,127.0.0.1:9006
N=7
DISK=${DISK:-0}
$GO build -tags libsqlite3 $ASAN ./cmd/dqlite/
set_up_binary() {
cat > "$DIR"/main.go <<EOF
package main
import (
"context"
"fmt"
"os"
"os/signal"
"time"
"path/filepath"
"strconv"
"github.com/canonical/go-dqlite/v2/client"
"github.com/canonical/go-dqlite/v2/app"
"golang.org/x/sys/unix"
)
func main() {
ch := make(chan os.Signal, 5)
signal.Notify(ch, unix.SIGINT)
signal.Notify(ch, unix.SIGTERM)
dir := filepath.Join("$DIR", os.Args[1])
index, _ := strconv.Atoi(os.Args[1])
verbose := $VERBOSE
logFunc := func(l client.LogLevel, format string, a ...interface{}) {
if verbose != 1 {
return
}
fmt.Printf(fmt.Sprintf("%d: %s: %s\n", index, l.String(), format), a...)
}
join := []string{}
if index > 1 {
join = append(join, "127.0.0.1:9001")
}
addr := fmt.Sprintf("127.0.0.1:900%d", index)
if err := os.MkdirAll(dir, 0755); err != nil {
panic(err)
}
app, err := app.New(
dir,
app.WithAddress(addr),
app.WithCluster(join),
app.WithLogFunc(logFunc),
app.WithRolesAdjustmentFrequency(3 * time.Second),
app.WithDiskMode($DISK != 0),
)
if err != nil {
panic(err)
}
ctx, _ := context.WithTimeout(context.Background(), 30 * time.Second)
if err := app.Ready(ctx); err != nil {
panic(err)
}
<-ch
ctx, cancel := context.WithTimeout(context.Background(), 2 * time.Second)
defer cancel()
app.Handover(ctx)
app.Close()
}
EOF
$GO build -o "$BINARY" -tags libsqlite3 $ASAN "$DIR"/main.go
}
start_node() {
n="${1}"
pidfile="${DIR}/pid.${n}"
$BINARY "$n" &
echo "${!}" > "${pidfile}"
}
kill_node() {
n=$1
signal=$2
pidfile="${DIR}/pid.${n}"
if ! [ -e "$pidfile" ]; then
return
fi
pid=$(cat "${pidfile}")
kill -"${signal}" "$pid"
wait "$pid" || true
rm "${pidfile}"
}
# Wait for the cluster to have 3 voters, 2 stand-bys and 1 spare
wait_stable() {
i=0
while true; do
i=$(expr $i + 1)
voters=$(./dqlite -s "$CLUSTER" test .cluster | grep voter | wc -l)
standbys=$(./dqlite -s "$CLUSTER" test .cluster | grep stand-by | wc -l)
spares=$(./dqlite -s "$CLUSTER" test .cluster | grep spare | wc -l)
if [ "$voters" -eq 3 ] && [ "$standbys" -eq 3 ] && [ "$spares" -eq 1 ] ; then
break
fi
if [ "$i" -eq 40 ]; then
echo "Error: node roles not yet stable after 10 seconds"
./dqlite -s "$CLUSTER" test .cluster
exit 1
fi
sleep 0.25
done
}
# Wait for the given node to have the given role
wait_role() {
index=$1
role=$2
i=0
while true; do
i=$(expr $i + 1)
current=$(./dqlite -s "$CLUSTER" test .cluster | grep "127.0.0.1:900${index}" | cut -f 3 -d "|")
if [ "$current" = "$role" ]; then
break
fi
if [ "$i" -eq 40 ]; then
echo "Error: node $index has role $current instead of $role"
./dqlite -s "$CLUSTER" test .cluster
exit 1
fi
sleep 0.25
done
}
set_up_node() {
n=$1
echo "=> Set up test node $n"
start_node "${n}"
}
set_up() {
echo "=> Set up test cluster"
set_up_binary
for i in $(seq $N); do
set_up_node "$i"
done
}
tear_down_node() {
n=$1
echo "=> Tear down test node $n"
kill_node "$n" TERM
}
tear_down() {
err=$?
trap '' HUP INT TERM
echo "=> Tear down test cluster"
for i in $(seq $N -1 1); do
tear_down_node "$i"
done
rm -rf "$DIR"
exit $err
}
sig_handler() {
trap '' EXIT
tear_down
}
trap tear_down EXIT
trap sig_handler HUP INT TERM
set_up
echo "=> Wait for roles to get stable"
wait_stable
# Stop one node at a time gracefully, then check that the cluster is stable.
for i in $(seq 10); do
index=$((1 + RANDOM % $N))
echo "=> Stop node $index"
kill_node $index TERM
echo "=> Wait for roles to get stable"
wait_role $index spare
wait_stable
echo "=> Restart node $index"
start_node $index
sleep 2
done
# Kill one node at a time ungracefully, then check that the cluster is stable.
for i in $(seq 1); do
index=$((1 + RANDOM % $N))
echo "=> Kill node $index"
kill_node $index KILL
echo "=> Wait for roles to get stable"
wait_role $index spare
wait_stable
echo "=> Restart node $index"
start_node $index
sleep 2
done
# Stop two nodes at a time gracefully, then check that the cluster is stable.
for i in $(seq 10); do
index1=$((1 + RANDOM % $N))
index2=$((1 + (index1 + $((RANDOM % ($N - 1)))) % $N))
echo "=> Stop nodes $index1 and $index2"
kill_node $index1 TERM
kill_node $index2 TERM
sleep 2
echo "=> Restart nodes $index1 and $index2"
start_node $index1
start_node $index2
echo "=> Wait for roles to get stable"
wait_stable
sleep 1
done
# Kill two nodes at a time ungracefully, then check that the cluster is stable.
for i in $(seq 10); do
index1=$((1 + RANDOM % $N))
index2=$((1 + (index1 + $((RANDOM % ($N - 1)))) % $N))
echo "=> Stop nodes $index1 and $index2"
kill_node $index1 KILL
kill_node $index2 KILL
sleep 5
echo "=> Restart nodes $index1 and $index2"
start_node $index1
start_node $index2
echo "=> Wait for roles to get stable"
wait_stable
sleep 1
done
echo "=> Test successful"
|