]> git.proxmox.com Git - ovs.git/blame - tests/ovsdb-cluster.at
raft: Fix the problem of stuck in candidate role forever.
[ovs.git] / tests / ovsdb-cluster.at
CommitLineData
1b1d2e6d
BP
1OVS_START_SHELL_HELPERS
2# ovsdb_check_cluster N_SERVERS SCHEMA_FUNC OUTPUT TRANSACTION...
3ovsdb_check_cluster () {
4 local n=$1 schema_func=$2 output=$3
5 shift; shift; shift
6
7 $schema_func > schema
8 schema=`ovsdb-tool schema-name schema`
9 AT_CHECK([ovsdb-tool '-vPATTERN:console:%c|%p|%m' create-cluster s1.db schema unix:s1.raft], [0], [], [stderr])
10 AT_CHECK([grep -v 'from ephemeral to persistent' stderr], [1])
11 cid=`ovsdb-tool db-cid s1.db`
12 for i in `seq 2 $n`; do
13 AT_CHECK([ovsdb-tool join-cluster s$i.db $schema unix:s$i.raft unix:s1.raft])
14 done
15
16 on_exit 'kill `cat *.pid`'
17 for i in `seq $n`; do
5a0e4aec 18 AT_CHECK([ovsdb-server -vraft -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s$i.log --pidfile=s$i.pid --unixctl=s$i --remote=punix:s$i.ovsdb s$i.db])
1b1d2e6d
BP
19 done
20 for i in `seq $n`; do
d97af428 21 AT_CHECK([ovsdb_client_wait unix:s$i.ovsdb $schema connected])
1b1d2e6d
BP
22 done
23
24 for txn
25 do
15394e0f 26 AT_CHECK([ovsdb-client -vjsonrpc -vconsole:off -vsyslog:off -vvlog:off --log-file transact unix:s1.ovsdb,unix:s2.ovsdb,unix:s3.ovsdb "$txn"], [0], [stdout])
1b1d2e6d
BP
27 cat stdout >> output
28 done
29 AT_CHECK_UNQUOTED([uuidfilt output], [0], [$output])
30 for i in `seq $n`; do
5a0e4aec 31 OVS_APP_EXIT_AND_WAIT_BY_TARGET([`pwd`/s$i], [s$i.pid])
1b1d2e6d
BP
32 done
33
34 AT_CHECK([ovsdb-tool check-cluster s*.db])
35}
36OVS_END_SHELL_HELPERS
37
38# Test a 1-server cluster.
39AT_BANNER([OVSDB - clustered transactions (1 server)])
40m4_define([OVSDB_CHECK_EXECUTION],
41 [AT_SETUP([$1 - cluster of 1])
42 AT_KEYWORDS([ovsdb server positive unix cluster cluster1 $5])
43 ovsdb_check_cluster 1 "$2" '$4' m4_foreach([txn], [$3], ['txn' ])
44 AT_CLEANUP])
45EXECUTION_EXAMPLES
46
47# Test a 3-server cluster.
48AT_BANNER([OVSDB - clustered transactions (3 servers)])
49m4_define([OVSDB_CHECK_EXECUTION],
50 [AT_SETUP([$1 - cluster of 3])
51 AT_KEYWORDS([ovsdb server positive unix cluster cluster3 $5])
52 ovsdb_check_cluster 3 "$2" '$4' m4_foreach([txn], [$3], ['txn' ])
53 AT_CLEANUP])
54EXECUTION_EXAMPLES
55
56# Test a 5-server cluster.
57AT_BANNER([OVSDB - clustered transactions (5 servers)])
58m4_define([OVSDB_CHECK_EXECUTION],
59 [AT_SETUP([$1 - cluster of 5])
60 AT_KEYWORDS([ovsdb server positive unix cluster cluster5 $5])
61 ovsdb_check_cluster 5 "$2" '$4' m4_foreach([txn], [$3], ['txn' ])
62 AT_CLEANUP])
63EXECUTION_EXAMPLES
eb692258
HZ
64\f
65
ca367fa5
HZ
66AT_BANNER([OVSDB - disconnect from cluster])
67
89771c1e 68OVS_START_SHELL_HELPERS
923f01ca
HZ
69# ovsdb_test_cluster_disconnect N_SERVERS LEADER_OR_FOLLOWER [CHECK_FLAPPING]
70# Test server disconnected from the cluster.
71# N_SERVERS: Number of servers in the cluster.
72# LEADER_OR_FOLLOWER: The role of the server that is disconnected from the
73# cluster: "leader" or "follower".
74# CHECK_FLAPPING: Whether to check if is_disconnected flapped. "yes", "no".
89771c1e 75ovsdb_test_cluster_disconnect () {
923f01ca
HZ
76 n=$1
77 leader_or_follower=$2
78 check_flapping=$3
89771c1e
HZ
79 schema_name=`ovsdb-tool schema-name $abs_srcdir/idltest.ovsschema`
80 ordinal_schema > schema
81 AT_CHECK([ovsdb-tool '-vPATTERN:console:%c|%p|%m' create-cluster s1.db $abs_srcdir/idltest.ovsschema unix:s1.raft], [0], [], [stderr])
82 cid=`ovsdb-tool db-cid s1.db`
83 schema_name=`ovsdb-tool schema-name $abs_srcdir/idltest.ovsschema`
923f01ca 84 for i in `seq 2 $n`; do
89771c1e
HZ
85 AT_CHECK([ovsdb-tool join-cluster s$i.db $schema_name unix:s$i.raft unix:s1.raft])
86 done
87
88 on_exit 'kill `cat *.pid`'
923f01ca 89 for i in `seq $n`; do
89771c1e
HZ
90 AT_CHECK([ovsdb-server -v -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s$i.log --pidfile=s$i.pid --unixctl=s$i --remote=punix:s$i.ovsdb s$i.db])
91 done
923f01ca 92 for i in `seq $n`; do
89771c1e
HZ
93 AT_CHECK([ovsdb_client_wait unix:s$i.ovsdb $schema_name connected])
94 done
95
96 AT_CHECK([ovsdb-client transact unix:s1.ovsdb '[["idltest",
97 {"op": "insert",
98 "table": "simple",
99 "row": {"i": 1}}]]'], [0], [ignore], [ignore])
100
101 # When a node is disconnected from the cluster, the IDL should disconnect
102 # and retry even if it uses a single remote, because the remote IP can be
103 # a VIP on a load-balance. So we use single remote to test here.
104 if test $leader_or_follower == "leader"; then
105 target=1
923f01ca
HZ
106 shutdown=`seq $(($n/2 + 1)) $n`
107 cleanup=`seq $(($n/2))`
89771c1e 108 else
923f01ca 109 target=$n
89771c1e 110
923f01ca
HZ
111 # shutdown followers before the leader (s1) so that there is no chance for
112 # s$n to become leader during the process.
113 shutdown="`seq 2 $(($n/2 + 1))` 1"
114 cleanup=`seq $(($n/2 + 2)) $n`
89771c1e 115 fi
923f01ca
HZ
116 echo shutdown=$shutdown
117 echo cleanup=$cleanup
89771c1e
HZ
118
119 # Connect to $target. Use "wait" to trigger a non-op transaction so
120 # that test-ovsdb will not quit.
121
122 test-ovsdb '-vPATTERN:console:test-ovsdb|%c|%m' -v -t10 idl unix:s$target.ovsdb '[["idltest",
123 {"op": "wait",
124 "table": "simple",
125 "where": [["i", "==", 1]],
126 "columns": ["i"],
127 "until": "==",
128 "rows": [{"i": 1}]}]]' > test-ovsdb.log 2>&1 &
129 echo $! > test-ovsdb.pid
ca367fa5 130
89771c1e 131 OVS_WAIT_UNTIL([grep "000: i=1" test-ovsdb.log])
ca367fa5 132
923f01ca
HZ
133 # Start collecting raft_is_connected logs for $target before shutting down
134 # any servers.
135 tail -f s$target.log > raft_is_connected.log &
136 echo $! > tail.pid
137
89771c1e
HZ
138 # Shutdown the other servers so that $target is disconnected from the cluster.
139 for i in $shutdown; do
140 OVS_APP_EXIT_AND_WAIT_BY_TARGET([`pwd`/s$i], [s$i.pid])
141 done
142
143 # The test-ovsdb should detect the disconnect and retry.
144 OVS_WAIT_UNTIL([grep disconnect test-ovsdb.log])
145
923f01ca
HZ
146 # The $target debug log should show raft_is_connected: false.
147 OVS_WAIT_UNTIL([grep "raft_is_connected: false" raft_is_connected.log])
148
149 # Save the current count of "raft_is_connected: true"
150 count_old=`grep "raft_is_connected: true" raft_is_connected.log | wc -l`
151 echo count_old $count_old
152
153 if test X$check_flapping == X"yes"; then
154 sleep 10
155 fi
156 # Make sure raft_is_connected didn't flap from false to true.
157 count_new=`grep "raft_is_connected: true" raft_is_connected.log | wc -l`
158 echo count_new $count_new
159 AT_CHECK([test $count_new == $count_old])
160
161 for i in $cleanup; do
162 OVS_APP_EXIT_AND_WAIT_BY_TARGET([`pwd`/s$i], [s$i.pid])
163 done
89771c1e
HZ
164}
165OVS_END_SHELL_HELPERS
166
167AT_SETUP([OVSDB cluster - follower disconnect from cluster, single remote])
168AT_KEYWORDS([ovsdb server negative unix cluster disconnect])
923f01ca 169ovsdb_test_cluster_disconnect 3 follower
89771c1e
HZ
170AT_CLEANUP
171
172AT_SETUP([OVSDB cluster - leader disconnect from cluster, single remote])
173AT_KEYWORDS([ovsdb server negative unix cluster disconnect])
923f01ca
HZ
174ovsdb_test_cluster_disconnect 3 leader
175AT_CLEANUP
176
177AT_SETUP([OVSDB cluster - leader disconnect from cluster, check flapping])
178AT_KEYWORDS([ovsdb server negative unix cluster disconnect])
179ovsdb_test_cluster_disconnect 5 leader yes
ca367fa5 180AT_CLEANUP
89771c1e 181
2833885f
HZ
182AT_SETUP([OVSDB cluster - initial status should be disconnected])
183AT_KEYWORDS([ovsdb server negative unix cluster disconnect])
184
185n=3
186schema_name=`ovsdb-tool schema-name $abs_srcdir/idltest.ovsschema`
187ordinal_schema > schema
188AT_CHECK([ovsdb-tool '-vPATTERN:console:%c|%p|%m' create-cluster s1.db $abs_srcdir/idltest.ovsschema unix:s1.raft], [0], [], [stderr])
189cid=`ovsdb-tool db-cid s1.db`
190schema_name=`ovsdb-tool schema-name $abs_srcdir/idltest.ovsschema`
191for i in `seq 2 $n`; do
192 AT_CHECK([ovsdb-tool join-cluster s$i.db $schema_name unix:s$i.raft unix:s1.raft])
193done
194
195on_exit 'kill `cat *.pid`'
196for i in `seq $n`; do
197 AT_CHECK([ovsdb-server -v -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s$i.log --pidfile=s$i.pid --unixctl=s$i --remote=punix:s$i.ovsdb s$i.db])
198done
199for i in `seq $n`; do
200 AT_CHECK([ovsdb_client_wait unix:s$i.ovsdb $schema_name connected])
201done
202
203# Stop all servers, and start the s1 only, to test initial connection status
204# when there is no leader yet.
205for i in `seq 1 $n`; do
206 OVS_APP_EXIT_AND_WAIT_BY_TARGET([`pwd`/s$i], [s$i.pid])
207done
208i=1
209AT_CHECK([ovsdb-server -v -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s$i.log --pidfile=s$i.pid --unixctl=s$i --remote=punix:s$i.ovsdb s$i.db])
210
211# The initial status should be disconnected. So wait should fail.
212AT_CHECK([ovsdb_client_wait --timeout=1 unix:s$i.ovsdb $schema_name connected], [142], [ignore], [ignore])
213OVS_APP_EXIT_AND_WAIT_BY_TARGET([`pwd`/s$i], [s$i.pid])
214
215AT_CLEANUP
216
ca367fa5
HZ
217\f
218
8e354614
HZ
219AT_BANNER([OVSDB cluster election timer change])
220
221AT_SETUP([OVSDB cluster - election timer change])
222AT_KEYWORDS([ovsdb server positive unix cluster timer])
223
224n=3
225schema_name=`ovsdb-tool schema-name $abs_srcdir/idltest.ovsschema`
226ordinal_schema > schema
227AT_CHECK([ovsdb-tool '-vPATTERN:console:%c|%p|%m' create-cluster s1.db $abs_srcdir/idltest.ovsschema unix:s1.raft], [0], [], [stderr])
228cid=`ovsdb-tool db-cid s1.db`
229schema_name=`ovsdb-tool schema-name $abs_srcdir/idltest.ovsschema`
230for i in `seq 2 $n`; do
231 AT_CHECK([ovsdb-tool join-cluster s$i.db $schema_name unix:s$i.raft unix:s1.raft])
232done
233
234on_exit 'kill `cat *.pid`'
235for i in `seq $n`; do
236 AT_CHECK([ovsdb-server -v -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s$i.log --pidfile=s$i.pid --unixctl=s$i --remote=punix:s$i.ovsdb s$i.db])
237done
238for i in `seq $n`; do
239 AT_CHECK([ovsdb_client_wait unix:s$i.ovsdb $schema_name connected])
240done
241
242# Change not allowed through follower.
243AT_CHECK([ovs-appctl -t "`pwd`"/s2 cluster/change-election-timer $schema_name 2000], [2], [], [ignore])
244
245# Timer cannot be changed to bigger than 2x the original value.
246AT_CHECK([ovs-appctl -t "`pwd`"/s1 cluster/change-election-timer $schema_name 4000], [2], [], [ignore])
247
248AT_CHECK([ovs-appctl -t "`pwd`"/s1 cluster/change-election-timer $schema_name 2000], [0], [dnl
249change of election timer initiated.
250], [])
251OVS_WAIT_UNTIL([ovs-appctl -t "`pwd`"/s1 cluster/status $schema_name | grep "Election timer: 2000"])
252OVS_WAIT_UNTIL([ovs-appctl -t "`pwd`"/s2 cluster/status $schema_name | grep "Election timer: 2000"])
253
254AT_CHECK([ovs-appctl -t "`pwd`"/s1 cluster/change-election-timer $schema_name 4000], [0], [dnl
255change of election timer initiated.
256], [])
257OVS_WAIT_UNTIL([ovs-appctl -t "`pwd`"/s1 cluster/status $schema_name | grep "Election timer: 4000"])
258OVS_WAIT_UNTIL([ovs-appctl -t "`pwd`"/s2 cluster/status $schema_name | grep "Election timer: 4000"])
259
260# Latest timer should be used after restart
261for i in `seq $n`; do
262 printf "\ns$i: stopping\n"
263 OVS_APP_EXIT_AND_WAIT_BY_TARGET([`pwd`/s$i], [s$i.pid])
264done
265for i in `seq $n`; do
266 AT_CHECK([ovsdb-server -v -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s$i.log --pidfile=s$i.pid --unixctl=s$i --remote=punix:s$i.ovsdb s$i.db])
267done
268OVS_WAIT_UNTIL([ovs-appctl -t "`pwd`"/s1 cluster/status $schema_name | grep "Election timer: 4000"])
269OVS_WAIT_UNTIL([ovs-appctl -t "`pwd`"/s2 cluster/status $schema_name | grep "Election timer: 4000"])
270
6d034053
HZ
271# Wait until cluster is ready
272for i in `seq $n`; do
273 OVS_WAIT_WHILE([ovs-appctl -t "`pwd`"/s$i cluster/status $schema_name | grep "Leader: unknown"])
274done
275
9bfb280a
HZ
276# Latest timer should be restored after DB compact and restart.
277# This is to test the install_snapshot RPC.
278
9bfb280a
HZ
279# Compact online
280for i in `seq $n`; do
281 AT_CHECK([ovs-appctl -t "`pwd`"/s$i ovsdb-server/compact])
282done
283
9bfb280a
HZ
284for i in `seq $n`; do
285 printf "\ns$i: stopping\n"
286 OVS_APP_EXIT_AND_WAIT_BY_TARGET([`pwd`/s$i], [s$i.pid])
287done
288for i in `seq $n`; do
289 AT_CHECK([ovsdb-server -v -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s$i.log --pidfile=s$i.pid --unixctl=s$i --remote=punix:s$i.ovsdb s$i.db])
290done
291for i in `seq $n`; do
292 OVS_WAIT_UNTIL([ovs-appctl -t "`pwd`"/s$i cluster/status $schema_name | grep "Election timer: 4000"])
293done
294
295# Wait until cluster is ready
296for i in `seq $n`; do
297 OVS_WAIT_WHILE([ovs-appctl -t "`pwd`"/s$i cluster/status $schema_name | grep "Leader: unknown"])
298done
299
300# Newly joined member should use latest timer value
301AT_CHECK([ovsdb-tool join-cluster s4.db $schema_name unix:s4.raft unix:s1.raft])
302AT_CHECK([ovsdb-server -v -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s4.log --pidfile=s4.pid --unixctl=s4 --remote=punix:s4.ovsdb s4.db])
303OVS_WAIT_UNTIL([ovs-appctl -t "`pwd`"/s4 cluster/status $schema_name | grep "Election timer: 4000"])
304# for i in `seq 10`; do
305# ovs-appctl -t "`pwd`"/s4 cluster/status $schema_name
306# sleep 1
307# done
308
8e354614
HZ
309AT_CLEANUP
310
bda1f6b6
HZ
311\f
312AT_BANNER([OVSDB cluster install snapshot RPC])
313
314AT_SETUP([OVSDB cluster - install snapshot RPC])
315AT_KEYWORDS([ovsdb server positive unix cluster snapshot])
316
317n=3
318schema_name=`ovsdb-tool schema-name $abs_srcdir/idltest.ovsschema`
319ordinal_schema > schema
320AT_CHECK([ovsdb-tool '-vPATTERN:console:%c|%p|%m' create-cluster s1.db $abs_srcdir/idltest.ovsschema unix:s1.raft], [0], [], [stderr])
321cid=`ovsdb-tool db-cid s1.db`
322schema_name=`ovsdb-tool schema-name $abs_srcdir/idltest.ovsschema`
323for i in `seq 2 $n`; do
324 AT_CHECK([ovsdb-tool join-cluster s$i.db $schema_name unix:s$i.raft unix:s1.raft])
325done
326
327on_exit 'kill `cat *.pid`'
328for i in `seq $n`; do
329 AT_CHECK([ovsdb-server -v -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s$i.log --pidfile=s$i.pid --unixctl=s$i --remote=punix:s$i.ovsdb s$i.db])
330done
331for i in `seq $n`; do
332 AT_CHECK([ovsdb_client_wait unix:s$i.ovsdb $schema_name connected])
333done
334
335# Kill one follower (s2) and write some data to cluster, so that the follower is falling behind
336printf "\ns2: stopping\n"
337OVS_APP_EXIT_AND_WAIT_BY_TARGET([`pwd`/s2], [s2.pid])
338
339AT_CHECK([ovsdb-client transact unix:s1.ovsdb '[["idltest",
340 {"op": "insert",
341 "table": "simple",
342 "row": {"i": 1}}]]'], [0], [ignore], [ignore])
343
344# Compact leader online to generate snapshot
345AT_CHECK([ovs-appctl -t "`pwd`"/s1 ovsdb-server/compact])
346
347# Start the follower s2 again.
348AT_CHECK([ovsdb-server -v -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s2.log --pidfile=s2.pid --unixctl=s2 --remote=punix:s2.ovsdb s2.db])
349AT_CHECK([ovsdb_client_wait unix:s2.ovsdb $schema_name connected])
350
351# A client transaction through s2. During this transaction, there will be a
352# install_snapshot RPC because s2 detects it is behind and s1 doesn't have the
353# pre_log_index requested by s2 because it is already compacted.
354# After the install_snapshot RPC process, the transaction through s2 should
355# succeed.
356AT_CHECK([ovsdb-client transact unix:s2.ovsdb '[["idltest",
357 {"op": "insert",
358 "table": "simple",
359 "row": {"i": 1}}]]'], [0], [ignore], [ignore])
360
361for i in `seq $n`; do
362 OVS_APP_EXIT_AND_WAIT_BY_TARGET([`pwd`/s$i], [s$i.pid])
363done
364
365AT_CLEANUP
366
8e354614
HZ
367\f
368
eb692258
HZ
369OVS_START_SHELL_HELPERS
370# ovsdb_cluster_failure_test SCHEMA_FUNC OUTPUT TRANSACTION...
371ovsdb_cluster_failure_test () {
372 # Initial state: s1 is leader, s2 and s3 are followers
373 remote_1=$1
374 remote_2=$2
375 crash_node=$3
376 crash_command=$4
377 if test "$crash_node" == "1"; then
378 new_leader=$5
379 fi
380
817db730 381 cp $top_srcdir/vswitchd/vswitch.ovsschema schema
eb692258
HZ
382 schema=`ovsdb-tool schema-name schema`
383 AT_CHECK([ovsdb-tool '-vPATTERN:console:%c|%p|%m' create-cluster s1.db schema unix:s1.raft], [0], [], [dnl
817db730 384ovsdb|WARN|schema: changed 30 columns in 'Open_vSwitch' database from ephemeral to persistent, including 'status' column in 'Manager' table, because clusters do not support ephemeral columns
eb692258
HZ
385])
386
387 n=3
388 join_cluster() {
389 local i=$1
390 others=
391 for j in `seq 1 $n`; do
392 if test $i != $j; then
393 others="$others unix:s$j.raft"
394 fi
395 done
396 AT_CHECK([ovsdb-tool join-cluster s$i.db $schema unix:s$i.raft $others])
397 }
398 start_server() {
399 local i=$1
400 printf "\ns$i: starting\n"
401 AT_CHECK([ovsdb-server -vjsonrpc -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s$i.log --pidfile=s$i.pid --unixctl=s$i --remote=punix:s$i.ovsdb s$i.db])
402 }
403 connect_server() {
404 local i=$1
405 printf "\ns$i: waiting to connect to storage\n"
406 AT_CHECK([ovsdb_client_wait --log-file=connect$i.log unix:s$i.ovsdb $schema connected])
407 }
408 cid=`ovsdb-tool db-cid s1.db`
409 for i in `seq 2 $n`; do join_cluster $i; done
410
411 on_exit 'kill `cat *.pid`'
412 for i in `seq $n`; do start_server $i; done
413 for i in `seq $n`; do connect_server $i; done
414
817db730 415 db=unix:s$remote_1.ovsdb,unix:s$remote_2.ovsdb
eb692258
HZ
416
417 # To ensure $new_leader node the new leader, we delay election timer for
418 # the other follower.
419 if test -n "$new_leader"; then
420 if test "$new_leader" == "2"; then
421 delay_election_node=3
422 else
423 delay_election_node=2
424 fi
425 AT_CHECK([ovs-appctl -t "`pwd`"/s$delay_election_node cluster/failure-test delay-election], [0], [ignore])
426 fi
427 AT_CHECK([ovs-appctl -t "`pwd`"/s$crash_node cluster/failure-test $crash_command], [0], [ignore])
15394e0f 428 AT_CHECK([ovs-vsctl -v --db="$db" --no-leader-only --no-shuffle-remotes --no-wait create QoS type=x], [0], [ignore], [ignore])
eb692258
HZ
429
430 # Make sure that the node really crashed.
431 AT_CHECK([ls s$crash_node.ovsdb], [2], [ignore], [ignore])
432 # XXX: Client will fail if remotes contains unix socket that doesn't exist (killed).
817db730
BP
433 if test "$remote_1" = "$crash_node"; then
434 db=unix:s$remote_2.ovsdb
eb692258 435 fi
817db730 436 AT_CHECK([ovs-vsctl --db="$db" --no-leader-only --no-wait --columns=type --bare list QoS], [0], [x
eb692258
HZ
437])
438}
439OVS_END_SHELL_HELPERS
440AT_BANNER([OVSDB - cluster failure with pending transaction])
441
442AT_SETUP([OVSDB cluster - txn on follower-2, leader crash before sending appendReq, follower-2 becomes leader])
443AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
eb692258
HZ
444ovsdb_cluster_failure_test 2 3 1 crash-before-sending-append-request 2
445AT_CLEANUP
446
447AT_SETUP([OVSDB cluster - txn on follower-2, leader crash before sending appendReq, follower-3 becomes leader])
448AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
449ovsdb_cluster_failure_test 2 3 1 crash-before-sending-append-request 3
450AT_CLEANUP
451
452AT_SETUP([OVSDB cluster - txn on follower-2, leader crash before sending execRep, follower-2 becomes leader])
453AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
eb692258
HZ
454ovsdb_cluster_failure_test 2 3 1 crash-before-sending-execute-command-reply 2
455AT_CLEANUP
456
457AT_SETUP([OVSDB cluster - txn on follower-2, leader crash before sending execRep, follower-3 becomes leader])
458AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
eb692258
HZ
459ovsdb_cluster_failure_test 2 3 1 crash-before-sending-execute-command-reply 3
460AT_CLEANUP
461
462AT_SETUP([OVSDB cluster - txn on follower-2, leader crash after sending execRep, follower-2 becomes leader])
463AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
eb692258
HZ
464ovsdb_cluster_failure_test 2 3 1 crash-after-sending-execute-command-reply 2
465AT_CLEANUP
466
467AT_SETUP([OVSDB cluster - txn on follower-2, leader crash after sending execRep, follower-3 becomes leader])
468AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
469ovsdb_cluster_failure_test 2 3 1 crash-after-sending-execute-command-reply 3
470AT_CLEANUP
471
472AT_SETUP([OVSDB cluster - txn on leader, leader crash before sending appendReq, follower-2 becomes leader])
473AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
eb692258
HZ
474ovsdb_cluster_failure_test 1 2 1 crash-before-sending-append-request 2
475AT_CLEANUP
476
477AT_SETUP([OVSDB cluster - txn on leader, leader crash before sending appendReq, follower-3 becomes leader])
478AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
479ovsdb_cluster_failure_test 1 2 1 crash-before-sending-append-request 3
480AT_CLEANUP
481
482AT_SETUP([OVSDB cluster - txn on leader, leader crash after sending appendReq, follower-2 becomes leader])
483AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
484# XXX: Detect and skip repeated transaction before enabling this test
485AT_CHECK([exit 77])
486ovsdb_cluster_failure_test 1 2 1 crash-after-sending-append-request 2
487AT_CLEANUP
488
489AT_SETUP([OVSDB cluster - txn on leader, leader crash after sending appendReq, follower-3 becomes leader])
490AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
491# XXX: Detect and skip repeated transaction before enabling this test
492AT_CHECK([exit 77])
493ovsdb_cluster_failure_test 1 2 1 crash-after-sending-append-request 3
494AT_CLEANUP
495
496AT_SETUP([OVSDB cluster - txn on follower-2, follower-2 crash before sending execReq, reconnect to follower-3])
497AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
498ovsdb_cluster_failure_test 2 3 2 crash-before-sending-execute-command-request
499AT_CLEANUP
500
501AT_SETUP([OVSDB cluster - txn on follower-2, follower-2 crash before sending execReq, reconnect to leader])
502AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
503ovsdb_cluster_failure_test 2 1 2 crash-before-sending-execute-command-request
504AT_CLEANUP
505
506AT_SETUP([OVSDB cluster - txn on follower-2, follower-2 crash after sending execReq, reconnect to follower-3])
507AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
508# XXX: Detect and skip repeated transaction before enabling this test
509AT_CHECK([exit 77])
510ovsdb_cluster_failure_test 2 3 2 crash-after-sending-execute-command-request
511AT_CLEANUP
512
513AT_SETUP([OVSDB cluster - txn on follower-2, follower-2 crash after sending execReq, reconnect to leader])
514AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
515# XXX: Detect and skip repeated transaction before enabling this test
516AT_CHECK([exit 77])
517ovsdb_cluster_failure_test 2 1 2 crash-after-sending-execute-command-request
518AT_CLEANUP
519
520AT_SETUP([OVSDB cluster - txn on leader, follower-2 crash after receiving appendReq for the update])
521AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
522ovsdb_cluster_failure_test 1 1 2 crash-after-receiving-append-request-update
523AT_CLEANUP
524
525AT_SETUP([OVSDB cluster - txn on follower-2, follower-3 crash after receiving appendReq for the update])
526AT_KEYWORDS([ovsdb server negative unix cluster pending-txn])
527ovsdb_cluster_failure_test 2 2 3 crash-after-receiving-append-request-update
528AT_CLEANUP
529
93ee4209
HZ
530\f
531AT_SETUP([OVSDB cluster - competing candidates])
532AT_KEYWORDS([ovsdb server negative unix cluster competing-candidates])
533
534n=3
535schema_name=`ovsdb-tool schema-name $abs_srcdir/idltest.ovsschema`
536ordinal_schema > schema
537AT_CHECK([ovsdb-tool '-vPATTERN:console:%c|%p|%m' create-cluster s1.db $abs_srcdir/idltest.ovsschema unix:s1.raft], [0], [], [stderr])
538cid=`ovsdb-tool db-cid s1.db`
539schema_name=`ovsdb-tool schema-name $abs_srcdir/idltest.ovsschema`
540for i in `seq 2 $n`; do
541 AT_CHECK([ovsdb-tool join-cluster s$i.db $schema_name unix:s$i.raft unix:s1.raft])
542done
543
544on_exit 'kill `cat *.pid`'
545for i in `seq $n`; do
546 AT_CHECK([ovsdb-server -v -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s$i.log --pidfile=s$i.pid --unixctl=s$i --remote=punix:s$i.ovsdb s$i.db])
547done
548for i in `seq $n`; do
549 AT_CHECK([ovsdb_client_wait unix:s$i.ovsdb $schema_name connected])
550done
551
552# We need to simulate the situation when 2 candidates starts election with same
553# term.
554#
555# Before triggering leader election, tell follower s2 don't send vote request (simulating
556# vote-request lost or not handled in time), and tell follower s3 to delay
557# election timer to make sure s3 doesn't send vote-request before s2 enters
558# term 2.
559AT_CHECK([ovs-appctl -t "`pwd`"/s2 cluster/failure-test dont-send-vote-request], [0], [ignore])
560AT_CHECK([ovs-appctl -t "`pwd`"/s3 cluster/failure-test delay-election], [0], [ignore])
561
562# Restart leader, which will become follower, and both old followers will start
563# election as candidate. The new follower (old leader) will vote one of them,
564# and the other candidate should step back as follower as again.
565kill -9 `cat s1.pid`
566AT_CHECK([ovsdb-server -v -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s1.log --pidfile=s1.pid --unixctl=s1 --remote=punix:s1.ovsdb s1.db])
567
568# Tell s1 to delay election timer so that it won't start election before s3
569# becomes candidate.
570AT_CHECK([ovs-appctl -t "`pwd`"/s1 cluster/failure-test delay-election], [0], [ignore])
571
572OVS_WAIT_UNTIL([ovs-appctl -t "`pwd`"/s1 cluster/status $schema_name | grep "Term: 2"])
573
574for i in `seq $n`; do
575 OVS_WAIT_WHILE([ovs-appctl -t "`pwd`"/s$i cluster/status $schema_name | grep "candidate"])
576 AT_CHECK([ovsdb_client_wait unix:s$i.ovsdb $schema_name connected])
577done
578
579for i in `seq $n`; do
580 OVS_APP_EXIT_AND_WAIT_BY_TARGET([`pwd`/s$i], [s$i.pid])
581done
582
583AT_CLEANUP
584
1b1d2e6d
BP
585\f
586AT_BANNER([OVSDB - cluster tests])
587
588# Torture test.
589OVS_START_SHELL_HELPERS
590ovsdb_torture_test () {
5a0e4aec
BP
591 local n=$1 # Number of cluster members
592 local victim=$2 # Cluster member to kill or remove
1b1d2e6d 593 local variant=$3 # 'kill' and restart or 'remove' and add
817db730 594 cp $top_srcdir/vswitchd/vswitch.ovsschema schema
1b1d2e6d
BP
595 schema=`ovsdb-tool schema-name schema`
596 AT_CHECK([ovsdb-tool '-vPATTERN:console:%c|%p|%m' create-cluster s1.db schema unix:s1.raft], [0], [], [dnl
817db730 597ovsdb|WARN|schema: changed 30 columns in 'Open_vSwitch' database from ephemeral to persistent, including 'status' column in 'Manager' table, because clusters do not support ephemeral columns
1b1d2e6d
BP
598])
599
600 join_cluster() {
601 local i=$1
5a0e4aec
BP
602 others=
603 for j in `seq 1 $n`; do
604 if test $i != $j; then
605 others="$others unix:s$j.raft"
1b1d2e6d 606 fi
5a0e4aec
BP
607 done
608 AT_CHECK([ovsdb-tool join-cluster s$i.db $schema unix:s$i.raft $others])
1b1d2e6d
BP
609 }
610
611 start_server() {
612 local i=$1
5a0e4aec
BP
613 printf "\ns$i: starting\n"
614 AT_CHECK([ovsdb-server -vjsonrpc -vconsole:off -vsyslog:off --detach --no-chdir --log-file=s$i.log --pidfile=s$i.pid --unixctl=s$i --remote=punix:s$i.ovsdb s$i.db])
1b1d2e6d
BP
615 }
616 stop_server() {
617 local i=$1
5a0e4aec 618 printf "\ns$i: stopping\n"
1b1d2e6d
BP
619 OVS_APP_EXIT_AND_WAIT_BY_TARGET([`pwd`/s$i], [s$i.pid])
620 }
621 connect_server() {
622 local i=$1
5a0e4aec 623 printf "\ns$i: waiting to connect to storage\n"
d97af428 624 AT_CHECK([ovsdb_client_wait --log-file=connect$i.log unix:s$i.ovsdb $schema connected])
1b1d2e6d
BP
625 }
626 remove_server() {
627 local i=$1
5a0e4aec 628 printf "\ns$i: removing from cluster\n"
15394e0f 629 AT_CHECK([ovs-appctl -t "`pwd`"/s$i cluster/leave Open_vSwitch])
5a0e4aec 630 printf "\ns$i: waiting for removal to complete\n"
d97af428 631 AT_CHECK([ovsdb_client_wait --log-file=remove$i.log unix:s$i.ovsdb $schema removed])
c7b5c534 632 stop_server $i
1b1d2e6d
BP
633 }
634 add_server() {
635 local i=$1
5a0e4aec 636 rm s$i.db
1b1d2e6d 637 join_cluster $i
5a0e4aec
BP
638 start_server $i
639 connect_server $i
1b1d2e6d
BP
640 }
641
642 cid=`ovsdb-tool db-cid s1.db`
643 for i in `seq 2 $n`; do join_cluster $i; done
644
645 on_exit 'kill `cat *.pid`'
646 for i in `seq $n`; do start_server $i; done
647 for i in `seq $n`; do connect_server $i; done
648
817db730 649 db=unix:s1.ovsdb
1b1d2e6d 650 for i in `seq 2 $n`; do
817db730 651 db=$db,unix:s$i.ovsdb
1b1d2e6d 652 done
1b1d2e6d 653
0f954f32 654 n1=10 n2=5 n3=50
817db730 655 echo "starting $n1*$n2 ovs-vsctl processes..."
1b1d2e6d 656 for i in $(seq 0 $(expr $n1 - 1) ); do
5a0e4aec 657 (for j in $(seq $n2); do
1b1d2e6d 658 : > $i-$j.running
817db730 659 txn="add Open_vSwitch . external_ids $i-$j=$i-$j"
0f954f32 660 for k in $(seq $n3); do
817db730 661 txn="$txn -- add Open_vSwitch . external_ids $i-$j-$k=$i-$j-$k"
0f954f32 662 done
817db730 663 run_as "ovs-vsctl($i-$j)" ovs-vsctl "-vPATTERN:console:ovs-vsctl($i-$j)|%D{%H:%M:%S}|%05N|%c|%p|%m" --log-file=$i-$j.log -vfile -vsyslog:off -vtimeval:off --timeout=120 --db="$db" --no-leader-only --no-wait $txn
5a0e4aec
BP
664 status=$?
665 if test $status != 0; then
666 echo "$i-$j exited with status $status" > $i-$j:$status
1b1d2e6d
BP
667 fi
668 rm $i-$j.running
5a0e4aec
BP
669 done
670 : > $i.done)&
1b1d2e6d
BP
671 done
672 echo "...done"
1b1d2e6d 673
817db730 674 echo "waiting for ovs-vsctl processes to exit..."
6c8dd8ca 675 # Use file instead of var because code inside "while" runs in a subshell.
7ee9c6e0 676 echo 0 > phase
0f03ae37 677 i=0
0f954f32 678 (while :; do echo; sleep 0.1; done) | while read REPLY; do
1b1d2e6d 679 printf "t=%2d s:" $i
5a0e4aec 680 done=0
1b1d2e6d 681 for j in $(seq 0 $(expr $n1 - 1)); do
5a0e4aec
BP
682 if test -f $j.done; then
683 printf " $j"
684 done=$(expr $done + 1)
1b1d2e6d 685 fi
5a0e4aec
BP
686 done
687 printf '\n'
688 if test $done = $n1; then
689 break
1b1d2e6d
BP
690 fi
691
7ee9c6e0 692 case $(cat phase) in # (
5a0e4aec 693 0)
0f954f32 694 if test $done -ge $(expr $n1 / 10); then
5a0e4aec
BP
695 if test $variant = kill; then
696 stop_server $victim
697 else
698 remove_server $victim
699 fi
7ee9c6e0 700 echo 1 > phase
5a0e4aec 701 next=$(expr $i + 2)
1b1d2e6d 702 fi
5a0e4aec 703 ;; # (
1b1d2e6d 704 1)
5a0e4aec
BP
705 if test $i -ge $next; then
706 if test $variant = kill; then
707 start_server $victim
708 connect_server $victim
709 else
710 add_server $victim
711 fi
7ee9c6e0 712 echo 2 > phase
5a0e4aec
BP
713 fi
714 ;;
715 esac
716
717 i=$(expr $i + 1)
1b1d2e6d
BP
718 done
719 echo "...done"
7ee9c6e0 720 AT_CHECK([if test $(cat phase) != 2; then exit 77; fi])
1b1d2e6d 721
dff60a1e
BP
722 for i in $(seq 0 $(expr $n1 - 1) ); do
723 for j in `seq $n2`; do
724 echo "$i-$j=$i-$j"
0f954f32
HZ
725 for k in `seq $n3`; do
726 echo "$i-$j-$k=$i-$j-$k"
727 done
dff60a1e
BP
728 done
729 done | sort > expout
15394e0f 730 AT_CHECK([ovs-vsctl --db="$db" --no-wait --log-file=finalize.log -vtimeval:off -vfile -vsyslog:off --bare get Open_vSwitch . external-ids | tr ',' '\n' | sed 's/[[{}"" ]]//g' | sort], [0], [expout])
1b1d2e6d
BP
731
732 for i in `seq $n`; do
7ee9c6e0 733 if test $i != $victim || test $(cat phase) != 1; then
5a0e4aec
BP
734 stop_server $i
735 fi
1b1d2e6d
BP
736 done
737
738 # We ignore stdout because non-fatal warnings get printed there.
739 AT_CHECK([ovsdb-tool check-cluster s*.db], [0], [ignore])
740}
741OVS_END_SHELL_HELPERS
742
743AT_SETUP([OVSDB 3-server torture test - kill/restart leader])
744AT_KEYWORDS([ovsdb server positive unix cluster cluster3])
745ovsdb_torture_test 3 1 kill
746AT_CLEANUP
747AT_SETUP([OVSDB 3-server torture test - kill/restart follower 1])
748AT_KEYWORDS([ovsdb server positive unix cluster cluster3])
749ovsdb_torture_test 3 2 kill
750AT_CLEANUP
751AT_SETUP([OVSDB 3-server torture test - kill/restart follower 2])
752AT_KEYWORDS([ovsdb server positive unix cluster cluster3])
753ovsdb_torture_test 3 3 kill
754AT_CLEANUP
755AT_SETUP([OVSDB 5-server torture test - kill/restart leader])
756AT_KEYWORDS([ovsdb server positive unix cluster cluster5])
757ovsdb_torture_test 5 1 kill
758AT_CLEANUP
759AT_SETUP([OVSDB 5-server torture test - kill/restart follower 1])
760AT_KEYWORDS([ovsdb server positive unix cluster cluster5])
761ovsdb_torture_test 5 2 kill
762AT_CLEANUP
763AT_SETUP([OVSDB 5-server torture test - kill/restart follower 2])
764AT_KEYWORDS([ovsdb server positive unix cluster cluster5])
765ovsdb_torture_test 5 3 kill
766AT_CLEANUP
767AT_SETUP([OVSDB 5-server torture test - kill/restart follower 3])
768AT_KEYWORDS([ovsdb server positive unix cluster cluster5])
769ovsdb_torture_test 5 4 kill
770AT_CLEANUP
771AT_SETUP([OVSDB 5-server torture test - kill/restart follower 4])
772AT_KEYWORDS([ovsdb server positive unix cluster cluster5])
773ovsdb_torture_test 5 5 kill
774AT_CLEANUP
775
776AT_SETUP([OVSDB 3-server torture test - remove/re-add leader])
777AT_KEYWORDS([ovsdb server positive unix cluster cluster3])
778ovsdb_torture_test 3 1 remove
779AT_CLEANUP
780AT_SETUP([OVSDB 3-server torture test - remove/re-add follower 1])
781AT_KEYWORDS([ovsdb server positive unix cluster cluster3])
782ovsdb_torture_test 3 2 remove
783AT_CLEANUP
784AT_SETUP([OVSDB 3-server torture test - remove/re-add follower 2])
785AT_KEYWORDS([ovsdb server positive unix cluster cluster3])
786ovsdb_torture_test 3 3 remove
787AT_CLEANUP
788AT_SETUP([OVSDB 5-server torture test - remove/re-add leader])
789AT_KEYWORDS([ovsdb server positive unix cluster cluster5])
790ovsdb_torture_test 5 1 remove
791AT_CLEANUP
792AT_SETUP([OVSDB 5-server torture test - remove/re-add follower 1])
793AT_KEYWORDS([ovsdb server positive unix cluster cluster5])
794ovsdb_torture_test 5 2 remove
795AT_CLEANUP
796AT_SETUP([OVSDB 5-server torture test - remove/re-add follower 2])
797AT_KEYWORDS([ovsdb server positive unix cluster cluster5])
798ovsdb_torture_test 5 3 remove
799AT_CLEANUP
800AT_SETUP([OVSDB 5-server torture test - remove/re-add follower 3])
801AT_KEYWORDS([ovsdb server positive unix cluster cluster5])
802ovsdb_torture_test 5 4 remove
803AT_CLEANUP
804AT_SETUP([OVSDB 5-server torture test - remove/re-add follower 4])
805AT_KEYWORDS([ovsdb server positive unix cluster cluster5])
806ovsdb_torture_test 5 5 remove
807AT_CLEANUP