account_create.sim 1.3 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2
system sh/deploy.sh -n dnode1 -i 1
S
scripts  
slguan 已提交
3
system sh/cfg.sh -n dnode1 -c wallevel -v 0
S
slguan 已提交
4
system sh/exec_up.sh -n dnode1 -s start
S
slguan 已提交
5

S
scripts  
slguan 已提交
6
sleep 3000
S
scripts  
Shengliang Guan 已提交
7
sql connect
S
slguan 已提交
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79

print ============================ dnode1 start

$i = 0
$dbPrefix = acdb
$tbPrefix = actb
$db = $dbPrefix . $i
$tb = $tbPrefix . $i
$accountPrefix = acac

print =============== step1-4
sql show accounts
if $rows != 1 then 
  return -1
endi
sql show users
if $rows != 3 then 
  return -1
endi

$i = 0
$acc = $accountPrefix . $i
sql_error create account $acc PASS pass123
sql create account $acc PASS 'pass123'
#sql create account $acc PASS 'pass123' -x step1
#	return -1
#step1:
sql create user $acc PASS 'pass123' -x step2
	return -1
step2:

sql show accounts
if $rows != 2 then 
  return -1
endi

sql show users
if $rows != 3 then 
  return -1
endi

print =============== step5-6
sql drop account $acc
sql drop account $acc -x step5
	return -1
step5:
sql show accounts
if $rows != 1 then 
  return -1
endi
sql show users
if $rows != 3 then 
  return -1
endi

print =============== step7
sql create account $acc PASS 'pass123'
#sql create account $acc PASS 'pass123' -x step7
#	return -1
#step7:

sql show accounts
if $rows != 2 then 
  return -1
endi

sql drop account $acc
sql show accounts
if $rows != 1 then 
  return -1
endi

S
scripts  
slguan 已提交
80
system sh/exec_up.sh -n dnode1 -s stop  -x SIGINT