ctdb-tests: Strengthen node state checking in ctdb disable/enable test
authorMartin Schwenke <martin@meltin.net>
Wed, 30 Sep 2020 00:48:38 +0000 (10:48 +1000)
committerAmitay Isaacs <amitay@samba.org>
Tue, 6 Oct 2020 04:32:06 +0000 (04:32 +0000)
Check that the desired state is set on all nodes instead of just the
test node.  This ensures that node flags have correctly propagated
across the cluster.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14513
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 Oct  6 04:32:06 UTC 2020 on sn-devel-184

ctdb/tests/INTEGRATION/failover/pubips.030.disable_enable.sh

index 9a1616ceefc95e3cd3830a5098f5ec90a7ac7585..3f400975e6605031fb862ab91132723e5fc63e39 100755 (executable)
@@ -14,10 +14,10 @@ select_test_node_and_ips
 
 echo "Disabling node $test_node"
 try_command_on_node 1 $CTDB disable -n $test_node
-wait_until_node_has_status $test_node disabled
+wait_until_node_has_status $test_node disabled 30 all
 wait_until_node_has_no_ips "$test_node"
 
 echo "Re-enabling node $test_node"
 try_command_on_node 1 $CTDB enable -n $test_node
-wait_until_node_has_status $test_node enabled
+wait_until_node_has_status $test_node enabled 30 all
 wait_until_node_has_some_ips "$test_node"