homework-jianmu/tests/script/unique/mnode/reuse.sim

98 lines
1.9 KiB
Plaintext

system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -m 192.168.0.1 -i 192.168.0.1
system sh/deploy.sh -n dnode2 -m 192.168.0.1 -i 192.168.0.2
system sh/cfg.sh -n dnode1 -c numOfMPeers -v 2
system sh/cfg.sh -n dnode2 -c numOfMPeers -v 2
system sh/cfg.sh -n dnode1 -c secondIp -v 192.168.0.2
system sh/cfg.sh -n dnode2 -c secondIp -v 192.168.0.2
print ========== step1 dnode1 start
system sh/exec.sh -n dnode1 -s start
sleep 3000
sql connect
print ========== step2 connect to dnode1
sql create dnode 192.168.0.2
system sh/exec.sh -n dnode2 -s start
sleep 3000
print ========== step3
sql show dnodes
print 192.168.0.1 freeVnodes $data3_192.168.0.1
print 192.168.0.2 freeVnodes $data3_192.168.0.2
if $rows != 2 then
return -1
endi
if $data3_192.168.0.1 != 4 then
return -1
endi
if $data3_192.168.0.2 != 4 then
return -1
endi
print ========== step4
system sh/exec.sh -n dnode1 -s stop
sleep 3000
$x = 0
step4:
$x = $x + 1
sleep 2000
if $x == 10 then
return -1
endi
sql show mnodes
print 192.168.0.1 ==> $data3_192.168.0.1
print 192.168.0.2 ==> $data3_192.168.0.2
if $data3_192.168.0.2 != master then
goto step4
endi
sql drop dnode 192.168.0.1
print ========== step5
sleep 5000
$x = 0
step5:
$x = $x + 1
sleep 2000
if $x == 10 then
return -1
endi
sql show dnodes
print 192.168.0.1 ==> $data3_192.168.0.1
print 192.168.0.2 ==> $data3_192.168.0.2
if $data3_192.168.0.1 != null then
goto step5
endi
print ========== step6
sql create dnode 192.168.0.1
system sh/deploy.sh -n dnode1 -m 192.168.0.1 -i 192.168.0.1
system sh/cfg.sh -n dnode1 -c numOfMPeers -v 2
system sh/cfg.sh -n dnode1 -c secondIp -v 192.168.0.2
system sh/exec.sh -n dnode1 -s start
$x = 0
step6:
$x = $x + 1
sleep 2000
if $x == 5 then
return -1
endi
sql show dnodes
print 192.168.0.1 ==> $data4_192.168.0.1
print 192.168.0.2 ==> $data4_192.168.0.2
if $data4_192.168.0.2 != ready then
goto step6
endi