From: avtikhon <avtikhon@tarantool.org> To: Alexander Turenko <alexander.turenko@tarantool.org> Cc: avtikhon <avtikhon@tarantool.org>, tarantool-patches@freelists.org Subject: [tarantool-patches] [PATCH v1] test: need to wait for upstream/downstream status Date: Tue, 16 Apr 2019 08:45:22 +0300 [thread overview] Message-ID: <887b72d40ae9e9b573658cc971fe2ea524070b8a.1555393509.git.avtikhon@tarantool.org> (raw) It is needed to wait for upstream/downstream status, otherwise error occurs: [025] --- replication/show_error_on_disconnect.result Fri Apr 12 14:49:26 2019 [025] +++ replication/show_error_on_disconnect.reject Tue Apr 16 07:35:41 2019 [025] @@ -77,11 +77,12 @@ [025] ... [025] box.info.replication[other_id].upstream.status [025] --- [025] -- stopped [025] +- sync [025] ... [025] box.info.replication[other_id].upstream.message:match("Missing") [025] --- [025] -- Missing [025] +- error: '[string "return box.info.replication[other_id].upstrea..."]:1: attempt to [025] + index field ''message'' (a nil value)' [025] ... [025] test_run:cmd("switch master_quorum2") [025] --- [025] Close #4161 --- test/replication/show_error_on_disconnect.result | 12 ++++++------ test/replication/show_error_on_disconnect.test.lua | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/test/replication/show_error_on_disconnect.result b/test/replication/show_error_on_disconnect.result index af082203b..ef239af39 100644 --- a/test/replication/show_error_on_disconnect.result +++ b/test/replication/show_error_on_disconnect.result @@ -75,9 +75,9 @@ box.space.test:select() other_id = box.info.id % 2 + 1 --- ... -box.info.replication[other_id].upstream.status +test_run:wait_upstream(box.info.replication[other_id], 'stopped') --- -- stopped +- true ... box.info.replication[other_id].upstream.message:match("Missing") --- @@ -96,17 +96,17 @@ box.space.test:select() other_id = box.info.id % 2 + 1 --- ... -box.info.replication[other_id].upstream.status +test_run:wait_upstream(box.info.replication[other_id], 'follow') --- -- follow +- true ... box.info.replication[other_id].upstream.message --- - null ... -box.info.replication[other_id].downstream.status +test_run:wait_downstream(box.info.replication[other_id], 'stopped') --- -- stopped +- true ... box.info.replication[other_id].downstream.message:match("Missing") --- diff --git a/test/replication/show_error_on_disconnect.test.lua b/test/replication/show_error_on_disconnect.test.lua index 40e9dbc5e..191c5b090 100644 --- a/test/replication/show_error_on_disconnect.test.lua +++ b/test/replication/show_error_on_disconnect.test.lua @@ -30,14 +30,14 @@ box.cfg{replication = repl} require('fiber').sleep(0.1) box.space.test:select() other_id = box.info.id % 2 + 1 -box.info.replication[other_id].upstream.status +test_run:wait_upstream(box.info.replication[other_id], 'stopped') box.info.replication[other_id].upstream.message:match("Missing") test_run:cmd("switch master_quorum2") box.space.test:select() other_id = box.info.id % 2 + 1 -box.info.replication[other_id].upstream.status +test_run:wait_upstream(box.info.replication[other_id], 'follow') box.info.replication[other_id].upstream.message -box.info.replication[other_id].downstream.status +test_run:wait_downstream(box.info.replication[other_id], 'stopped') box.info.replication[other_id].downstream.message:match("Missing") test_run:cmd("switch default") -- Cleanup. -- 2.17.1
reply other threads:[~2019-04-16 5:45 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=887b72d40ae9e9b573658cc971fe2ea524070b8a.1555393509.git.avtikhon@tarantool.org \ --to=avtikhon@tarantool.org \ --cc=alexander.turenko@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='Re: [tarantool-patches] [PATCH v1] test: need to wait for upstream/downstream status' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox