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
|
env = require('test_run')
vclock_diff = require('fast_replica').vclock_diff
test_run = env.new()
SERVERS = { 'autobootstrap_guest1', 'autobootstrap_guest2', 'autobootstrap_guest3' }
--
-- Start servers
--
test_run:create_cluster(SERVERS, "replication", {args="0.1"})
--
-- Wait for full mesh
--
test_run:wait_fullmesh(SERVERS)
--
-- Check vclock
--
vclock1 = test_run:get_vclock('autobootstrap_guest1')
vclock_diff(vclock1, test_run:get_vclock('autobootstrap_guest2'))
vclock_diff(vclock1, test_run:get_vclock('autobootstrap_guest3'))
--
-- Insert rows on each server
--
_ = test_run:cmd("switch autobootstrap_guest1")
_ = box.space.test:insert({box.info.id})
_ = test_run:cmd("switch autobootstrap_guest2")
_ = box.space.test:insert({box.info.id})
_ = test_run:cmd("switch autobootstrap_guest3")
_ = box.space.test:insert({box.info.id})
_ = test_run:cmd("switch default")
--
-- Synchronize
--
vclock = test_run:get_cluster_vclock(SERVERS)
vclock2 = test_run:wait_cluster_vclock(SERVERS, vclock)
vclock_diff(vclock1, vclock2)
--
-- Check result
--
_ = test_run:cmd("switch autobootstrap_guest1")
box.space.test:select()
_ = test_run:cmd("switch autobootstrap_guest2")
box.space.test:select()
_ = test_run:cmd("switch autobootstrap_guest3")
box.space.test:select()
_ = test_run:cmd("switch default")
--
-- Stop servers
--
test_run:drop_cluster(SERVERS)
|