From 553dfbe99b6980b114d7ad375e94aacd4bcc29d9 Mon Sep 17 00:00:00 2001 From: "Alexander V. Tikhonov" <avtikhon@tarantool.org> Date: Fri, 7 Jun 2019 16:17:53 +0300 Subject: [PATCH] test: replication/misc fix for high load Fixed test replication/misc to be able to run it on hosts under high load. Changed downstream check to use test_run:wait_downstream() function, to wait for certain box.info.replication values to fix the error: [050] replication/misc.test.lua [ fail ] [050] [050] Test failed! Result content mismatch: [050] --- replication/misc.result Thu Jun 6 06:46:54 2019 [050] +++ replication/misc.reject Fri Jun 7 05:55:00 2019 [050] @@ -622,7 +622,7 @@ [050] ... [050] box.info.replication[2].downstream.status [050] --- [050] -- stopped [050] +- follow [050] ... [050] test_run:cmd("stop server replica") [050] --- Closes #4277 --- test/replication/misc.result | 4 ++-- test/replication/misc.test.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/replication/misc.result b/test/replication/misc.result index 5d7a6512e0..f896ee4a9a 100644 --- a/test/replication/misc.result +++ b/test/replication/misc.result @@ -620,9 +620,9 @@ test_run:wait_log("replica", "REPLICASET_UUID_MISMATCH", nil, 1.0) --- - REPLICASET_UUID_MISMATCH ... -box.info.replication[2].downstream.status +test_run:wait_downstream(2, {status = 'stopped'}) --- -- stopped +- true ... test_run:cmd("stop server replica") --- diff --git a/test/replication/misc.test.lua b/test/replication/misc.test.lua index 5a6cecfaaf..4be12ba3b1 100644 --- a/test/replication/misc.test.lua +++ b/test/replication/misc.test.lua @@ -251,7 +251,7 @@ _ = box.space._schema:replace{'cluster', tostring(uuid.new())} -- master believes replica is in cluster, but their cluster UUIDs differ. test_run:cmd("start server replica") test_run:wait_log("replica", "REPLICASET_UUID_MISMATCH", nil, 1.0) -box.info.replication[2].downstream.status +test_run:wait_downstream(2, {status = 'stopped'}) test_run:cmd("stop server replica") test_run:cmd("cleanup server replica") -- GitLab