2
0

scripting.tcl 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  1. start_server {tags {"scripting"}} {
  2. test {EVAL - Does Lua interpreter replies to our requests?} {
  3. r eval {return 'hello'} 0
  4. } {hello}
  5. test {EVAL - Lua integer -> Redis protocol type conversion} {
  6. r eval {return 100.5} 0
  7. } {100}
  8. test {EVAL - Lua string -> Redis protocol type conversion} {
  9. r eval {return 'hello world'} 0
  10. } {hello world}
  11. test {EVAL - Lua true boolean -> Redis protocol type conversion} {
  12. r eval {return true} 0
  13. } {1}
  14. test {EVAL - Lua false boolean -> Redis protocol type conversion} {
  15. r eval {return false} 0
  16. } {}
  17. test {EVAL - Lua status code reply -> Redis protocol type conversion} {
  18. r eval {return {ok='fine'}} 0
  19. } {fine}
  20. test {EVAL - Lua error reply -> Redis protocol type conversion} {
  21. catch {
  22. r eval {return {err='this is an error'}} 0
  23. } e
  24. set _ $e
  25. } {this is an error}
  26. test {EVAL - Lua table -> Redis protocol type conversion} {
  27. r eval {return {1,2,3,'ciao',{1,2}}} 0
  28. } {1 2 3 ciao {1 2}}
  29. test {EVAL - Are the KEYS and ARGV arrays populated correctly?} {
  30. r eval {return {KEYS[1],KEYS[2],ARGV[1],ARGV[2]}} 2 a b c d
  31. } {a b c d}
  32. test {EVAL - is Lua able to call Redis API?} {
  33. r set mykey myval
  34. r eval {return redis.call('get',KEYS[1])} 1 mykey
  35. } {myval}
  36. test {EVALSHA - Can we call a SHA1 if already defined?} {
  37. r evalsha fd758d1589d044dd850a6f05d52f2eefd27f033f 1 mykey
  38. } {myval}
  39. test {EVALSHA - Can we call a SHA1 in uppercase?} {
  40. r evalsha FD758D1589D044DD850A6F05D52F2EEFD27F033F 1 mykey
  41. } {myval}
  42. test {EVALSHA - Do we get an error on invalid SHA1?} {
  43. catch {r evalsha NotValidShaSUM 0} e
  44. set _ $e
  45. } {NOSCRIPT*}
  46. test {EVALSHA - Do we get an error on non defined SHA1?} {
  47. catch {r evalsha ffd632c7d33e571e9f24556ebed26c3479a87130 0} e
  48. set _ $e
  49. } {NOSCRIPT*}
  50. test {EVAL - Redis integer -> Lua type conversion} {
  51. r eval {
  52. local foo = redis.pcall('incr','x')
  53. return {type(foo),foo}
  54. } 0
  55. } {number 1}
  56. test {EVAL - Redis bulk -> Lua type conversion} {
  57. r set mykey myval
  58. r eval {
  59. local foo = redis.pcall('get','mykey')
  60. return {type(foo),foo}
  61. } 0
  62. } {string myval}
  63. test {EVAL - Redis multi bulk -> Lua type conversion} {
  64. r del mylist
  65. r rpush mylist a
  66. r rpush mylist b
  67. r rpush mylist c
  68. r eval {
  69. local foo = redis.pcall('lrange','mylist',0,-1)
  70. return {type(foo),foo[1],foo[2],foo[3],# foo}
  71. } 0
  72. } {table a b c 3}
  73. test {EVAL - Redis status reply -> Lua type conversion} {
  74. r eval {
  75. local foo = redis.pcall('set','mykey','myval')
  76. return {type(foo),foo['ok']}
  77. } 0
  78. } {table OK}
  79. test {EVAL - Redis error reply -> Lua type conversion} {
  80. r set mykey myval
  81. r eval {
  82. local foo = redis.pcall('incr','mykey')
  83. return {type(foo),foo['err']}
  84. } 0
  85. } {table {ERR value is not an integer or out of range}}
  86. test {EVAL - Redis nil bulk reply -> Lua type conversion} {
  87. r del mykey
  88. r eval {
  89. local foo = redis.pcall('get','mykey')
  90. return {type(foo),foo == false}
  91. } 0
  92. } {boolean 1}
  93. test {EVAL - Is the Lua client using the currently selected DB?} {
  94. r set mykey "this is DB 9"
  95. r select 10
  96. r set mykey "this is DB 10"
  97. r eval {return redis.pcall('get','mykey')} 0
  98. } {this is DB 10}
  99. test {EVAL - SELECT inside Lua should not affect the caller} {
  100. # here we DB 10 is selected
  101. r set mykey "original value"
  102. r eval {return redis.pcall('select','9')} 0
  103. set res [r get mykey]
  104. r select 9
  105. set res
  106. } {original value}
  107. if 0 {
  108. test {EVAL - Script can't run more than configured time limit} {
  109. r config set lua-time-limit 1
  110. catch {
  111. r eval {
  112. local i = 0
  113. while true do i=i+1 end
  114. } 0
  115. } e
  116. set _ $e
  117. } {*execution time*}
  118. }
  119. test {EVAL - Scripts can't run certain commands} {
  120. set e {}
  121. catch {r eval {return redis.pcall('spop','x')} 0} e
  122. set e
  123. } {*not allowed*}
  124. test {EVAL - Scripts can't run certain commands} {
  125. set e {}
  126. catch {
  127. r eval "redis.pcall('randomkey'); return redis.pcall('set','x','ciao')" 0
  128. } e
  129. set e
  130. } {*not allowed after*}
  131. test {EVAL - No arguments to redis.call/pcall is considered an error} {
  132. set e {}
  133. catch {r eval {return redis.call()} 0} e
  134. set e
  135. } {*one argument*}
  136. test {EVAL - redis.call variant raises a Lua error on Redis cmd error (1)} {
  137. set e {}
  138. catch {
  139. r eval "redis.call('nosuchcommand')" 0
  140. } e
  141. set e
  142. } {*Unknown Redis*}
  143. test {EVAL - redis.call variant raises a Lua error on Redis cmd error (1)} {
  144. set e {}
  145. catch {
  146. r eval "redis.call('get','a','b','c')" 0
  147. } e
  148. set e
  149. } {*number of args*}
  150. test {EVAL - redis.call variant raises a Lua error on Redis cmd error (1)} {
  151. set e {}
  152. r set foo bar
  153. catch {
  154. r eval {redis.call('lpush',KEYS[1],'val')} 1 foo
  155. } e
  156. set e
  157. } {*against a key*}
  158. test {EVAL - JSON numeric decoding} {
  159. # We must return the table as a string because otherwise
  160. # Redis converts floats to ints and we get 0 and 1023 instead
  161. # of 0.0003 and 1023.2 as the parsed output.
  162. r eval {return
  163. table.concat(
  164. cjson.decode(
  165. "[0.0, -5e3, -1, 0.3e-3, 1023.2, 0e10]"), " ")
  166. } 0
  167. } {0 -5000 -1 0.0003 1023.2 0}
  168. test {EVAL - JSON string decoding} {
  169. r eval {local decoded = cjson.decode('{"keya": "a", "keyb": "b"}')
  170. return {decoded.keya, decoded.keyb}
  171. } 0
  172. } {a b}
  173. test {EVAL - cmsgpack can pack double?} {
  174. r eval {local encoded = cmsgpack.pack(0.1)
  175. local h = ""
  176. for i = 1, #encoded do
  177. h = h .. string.format("%02x",string.byte(encoded,i))
  178. end
  179. return h
  180. } 0
  181. } {cb3fb999999999999a}
  182. test {EVAL - cmsgpack can pack negative int64?} {
  183. r eval {local encoded = cmsgpack.pack(-1099511627776)
  184. local h = ""
  185. for i = 1, #encoded do
  186. h = h .. string.format("%02x",string.byte(encoded,i))
  187. end
  188. return h
  189. } 0
  190. } {d3ffffff0000000000}
  191. test {EVAL - cmsgpack can pack and unpack circular references?} {
  192. r eval {local a = {x=nil,y=5}
  193. local b = {x=a}
  194. a['x'] = b
  195. local encoded = cmsgpack.pack(a)
  196. local h = ""
  197. -- cmsgpack encodes to a depth of 16, but can't encode
  198. -- references, so the encoded object has a deep copy recusive
  199. -- depth of 16.
  200. for i = 1, #encoded do
  201. h = h .. string.format("%02x",string.byte(encoded,i))
  202. end
  203. -- when unpacked, re.x.x != re because the unpack creates
  204. -- individual tables down to a depth of 16.
  205. -- (that's why the encoded output is so large)
  206. local re = cmsgpack.unpack(encoded)
  207. assert(re)
  208. assert(re.x)
  209. assert(re.x.x.y == re.y)
  210. assert(re.x.x.x.x.y == re.y)
  211. assert(re.x.x.x.x.x.x.y == re.y)
  212. assert(re.x.x.x.x.x.x.x.x.x.x.y == re.y)
  213. -- maximum working depth:
  214. assert(re.x.x.x.x.x.x.x.x.x.x.x.x.x.x.y == re.y)
  215. -- now the last x would be b above and has no y
  216. assert(re.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x)
  217. -- so, the final x.x is at the depth limit and was assigned nil
  218. assert(re.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x == nil)
  219. return {h, re.x.x.x.x.x.x.x.x.y == re.y, re.y == 5}
  220. } 0
  221. } {82a17905a17881a17882a17905a17881a17882a17905a17881a17882a17905a17881a17882a17905a17881a17882a17905a17881a17882a17905a17881a17882a17905a17881a178c0 1 1}
  222. test {EVAL - Numerical sanity check from bitop} {
  223. r eval {assert(0x7fffffff == 2147483647, "broken hex literals");
  224. assert(0xffffffff == -1 or 0xffffffff == 2^32-1,
  225. "broken hex literals");
  226. assert(tostring(-1) == "-1", "broken tostring()");
  227. assert(tostring(0xffffffff) == "-1" or
  228. tostring(0xffffffff) == "4294967295",
  229. "broken tostring()")
  230. } 0
  231. } {}
  232. test {EVAL - Verify minimal bitop functionality} {
  233. r eval {assert(bit.tobit(1) == 1);
  234. assert(bit.band(1) == 1);
  235. assert(bit.bxor(1,2) == 3);
  236. assert(bit.bor(1,2,4,8,16,32,64,128) == 255)
  237. } 0
  238. } {}
  239. test {SCRIPTING FLUSH - is able to clear the scripts cache?} {
  240. r set mykey myval
  241. set v [r evalsha fd758d1589d044dd850a6f05d52f2eefd27f033f 1 mykey]
  242. assert_equal $v myval
  243. set e ""
  244. r script flush
  245. catch {r evalsha fd758d1589d044dd850a6f05d52f2eefd27f033f 1 mykey} e
  246. set e
  247. } {NOSCRIPT*}
  248. test {SCRIPT EXISTS - can detect already defined scripts?} {
  249. r eval "return 1+1" 0
  250. r script exists a27e7e8a43702b7046d4f6a7ccf5b60cef6b9bd9 a27e7e8a43702b7046d4f6a7ccf5b60cef6b9bda
  251. } {1 0}
  252. test {SCRIPT LOAD - is able to register scripts in the scripting cache} {
  253. list \
  254. [r script load "return 'loaded'"] \
  255. [r evalsha b534286061d4b9e4026607613b95c06c06015ae8 0]
  256. } {b534286061d4b9e4026607613b95c06c06015ae8 loaded}
  257. test "In the context of Lua the output of random commands gets ordered" {
  258. r del myset
  259. r sadd myset a b c d e f g h i l m n o p q r s t u v z aa aaa azz
  260. r eval {return redis.call('smembers',KEYS[1])} 1 myset
  261. } {a aa aaa azz b c d e f g h i l m n o p q r s t u v z}
  262. test "SORT is normally not alpha re-ordered for the scripting engine" {
  263. r del myset
  264. r sadd myset 1 2 3 4 10
  265. r eval {return redis.call('sort',KEYS[1],'desc')} 1 myset
  266. } {10 4 3 2 1}
  267. test "SORT BY <constant> output gets ordered for scripting" {
  268. r del myset
  269. r sadd myset a b c d e f g h i l m n o p q r s t u v z aa aaa azz
  270. r eval {return redis.call('sort',KEYS[1],'by','_')} 1 myset
  271. } {a aa aaa azz b c d e f g h i l m n o p q r s t u v z}
  272. test "SORT BY <constant> with GET gets ordered for scripting" {
  273. r del myset
  274. r sadd myset a b c
  275. r eval {return redis.call('sort',KEYS[1],'by','_','get','#','get','_:*')} 1 myset
  276. } {a {} b {} c {}}
  277. test "redis.sha1hex() implementation" {
  278. list [r eval {return redis.sha1hex('')} 0] \
  279. [r eval {return redis.sha1hex('Pizza & Mandolino')} 0]
  280. } {da39a3ee5e6b4b0d3255bfef95601890afd80709 74822d82031af7493c20eefa13bd07ec4fada82f}
  281. test {Globals protection reading an undeclared global variable} {
  282. catch {r eval {return a} 0} e
  283. set e
  284. } {*ERR*attempted to access unexisting global*}
  285. test {Globals protection setting an undeclared global*} {
  286. catch {r eval {a=10} 0} e
  287. set e
  288. } {*ERR*attempted to create global*}
  289. test {Test an example script DECR_IF_GT} {
  290. set decr_if_gt {
  291. local current
  292. current = redis.call('get',KEYS[1])
  293. if not current then return nil end
  294. if current > ARGV[1] then
  295. return redis.call('decr',KEYS[1])
  296. else
  297. return redis.call('get',KEYS[1])
  298. end
  299. }
  300. r set foo 5
  301. set res {}
  302. lappend res [r eval $decr_if_gt 1 foo 2]
  303. lappend res [r eval $decr_if_gt 1 foo 2]
  304. lappend res [r eval $decr_if_gt 1 foo 2]
  305. lappend res [r eval $decr_if_gt 1 foo 2]
  306. lappend res [r eval $decr_if_gt 1 foo 2]
  307. set res
  308. } {4 3 2 2 2}
  309. test {Scripting engine resets PRNG at every script execution} {
  310. set rand1 [r eval {return tostring(math.random())} 0]
  311. set rand2 [r eval {return tostring(math.random())} 0]
  312. assert_equal $rand1 $rand2
  313. }
  314. test {Scripting engine PRNG can be seeded correctly} {
  315. set rand1 [r eval {
  316. math.randomseed(ARGV[1]); return tostring(math.random())
  317. } 0 10]
  318. set rand2 [r eval {
  319. math.randomseed(ARGV[1]); return tostring(math.random())
  320. } 0 10]
  321. set rand3 [r eval {
  322. math.randomseed(ARGV[1]); return tostring(math.random())
  323. } 0 20]
  324. assert_equal $rand1 $rand2
  325. assert {$rand2 ne $rand3}
  326. }
  327. test {EVAL does not leak in the Lua stack} {
  328. r set x 0
  329. # Use a non blocking client to speedup the loop.
  330. set rd [redis_deferring_client]
  331. for {set j 0} {$j < 10000} {incr j} {
  332. $rd eval {return redis.call("incr",KEYS[1])} 1 x
  333. }
  334. for {set j 0} {$j < 10000} {incr j} {
  335. $rd read
  336. }
  337. assert {[s used_memory_lua] < 1024*100}
  338. $rd close
  339. r get x
  340. } {10000}
  341. test {EVAL processes writes from AOF in read-only slaves} {
  342. r flushall
  343. r config set appendonly yes
  344. r eval {redis.call("set",KEYS[1],"100")} 1 foo
  345. r eval {redis.call("incr",KEYS[1])} 1 foo
  346. r eval {redis.call("incr",KEYS[1])} 1 foo
  347. wait_for_condition 50 100 {
  348. [s aof_rewrite_in_progress] == 0
  349. } else {
  350. fail "AOF rewrite can't complete after CONFIG SET appendonly yes."
  351. }
  352. r config set slave-read-only yes
  353. r slaveof 127.0.0.1 0
  354. r debug loadaof
  355. set res [r get foo]
  356. r slaveof no one
  357. set res
  358. } {102}
  359. test {We can call scripts rewriting client->argv from Lua} {
  360. r del myset
  361. r sadd myset a b c
  362. r mset a 1 b 2 c 3 d 4
  363. assert {[r spop myset] ne {}}
  364. assert {[r spop myset 1] ne {}}
  365. assert {[r spop myset] ne {}}
  366. assert {[r mget a b c d] eq {1 2 3 4}}
  367. assert {[r spop myset] eq {}}
  368. }
  369. test {Call Redis command with many args from Lua (issue #1764)} {
  370. r eval {
  371. local i
  372. local x={}
  373. redis.call('del','mylist')
  374. for i=1,100 do
  375. table.insert(x,i)
  376. end
  377. redis.call('rpush','mylist',unpack(x))
  378. return redis.call('lrange','mylist',0,-1)
  379. } 0
  380. } {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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100}
  381. test {Number conversion precision test (issue #1118)} {
  382. r eval {
  383. local value = 9007199254740991
  384. redis.call("set","foo",value)
  385. return redis.call("get","foo")
  386. } 0
  387. } {9007199254740991}
  388. test {String containing number precision test (regression of issue #1118)} {
  389. r eval {
  390. redis.call("set", "key", "12039611435714932082")
  391. return redis.call("get", "key")
  392. } 0
  393. } {12039611435714932082}
  394. test {Verify negative arg count is error instead of crash (issue #1842)} {
  395. catch { r eval { return "hello" } -12 } e
  396. set e
  397. } {ERR Number of keys can't be negative}
  398. test {Correct handling of reused argv (issue #1939)} {
  399. r eval {
  400. for i = 0, 10 do
  401. redis.call('SET', 'a', '1')
  402. redis.call('MGET', 'a', 'b', 'c')
  403. redis.call('EXPIRE', 'a', 0)
  404. redis.call('GET', 'a')
  405. redis.call('MGET', 'a', 'b', 'c')
  406. end
  407. } 0
  408. }
  409. }
  410. # Start a new server since the last test in this stanza will kill the
  411. # instance at all.
  412. start_server {tags {"scripting"}} {
  413. test {Timedout read-only scripts can be killed by SCRIPT KILL} {
  414. set rd [redis_deferring_client]
  415. r config set lua-time-limit 10
  416. $rd eval {while true do end} 0
  417. after 200
  418. catch {r ping} e
  419. assert_match {BUSY*} $e
  420. r script kill
  421. after 200 ; # Give some time to Lua to call the hook again...
  422. assert_equal [r ping] "PONG"
  423. }
  424. test {Timedout script link is still usable after Lua returns} {
  425. r config set lua-time-limit 10
  426. r eval {for i=1,100000 do redis.call('ping') end return 'ok'} 0
  427. r ping
  428. } {PONG}
  429. test {Timedout scripts that modified data can't be killed by SCRIPT KILL} {
  430. set rd [redis_deferring_client]
  431. r config set lua-time-limit 10
  432. $rd eval {redis.call('set',KEYS[1],'y'); while true do end} 1 x
  433. after 200
  434. catch {r ping} e
  435. assert_match {BUSY*} $e
  436. catch {r script kill} e
  437. assert_match {UNKILLABLE*} $e
  438. catch {r ping} e
  439. assert_match {BUSY*} $e
  440. }
  441. # Note: keep this test at the end of this server stanza because it
  442. # kills the server.
  443. test {SHUTDOWN NOSAVE can kill a timedout script anyway} {
  444. # The server sould be still unresponding to normal commands.
  445. catch {r ping} e
  446. assert_match {BUSY*} $e
  447. catch {r shutdown nosave}
  448. # Make sure the server was killed
  449. catch {set rd [redis_deferring_client]} e
  450. assert_match {*connection refused*} $e
  451. }
  452. }
  453. start_server {tags {"scripting repl"}} {
  454. start_server {} {
  455. test {Before the slave connects we issue two EVAL commands} {
  456. # One with an error, but still executing a command.
  457. # SHA is: 67164fc43fa971f76fd1aaeeaf60c1c178d25876
  458. catch {
  459. r eval {redis.call('incr',KEYS[1]); redis.call('nonexisting')} 1 x
  460. }
  461. # One command is correct:
  462. # SHA is: 6f5ade10a69975e903c6d07b10ea44c6382381a5
  463. r eval {return redis.call('incr',KEYS[1])} 1 x
  464. } {2}
  465. test {Connect a slave to the main instance} {
  466. r -1 slaveof [srv 0 host] [srv 0 port]
  467. wait_for_condition 50 100 {
  468. [s -1 role] eq {slave} &&
  469. [string match {*master_link_status:up*} [r -1 info replication]]
  470. } else {
  471. fail "Can't turn the instance into a slave"
  472. }
  473. }
  474. test {Now use EVALSHA against the master, with both SHAs} {
  475. # The server should replicate successful and unsuccessful
  476. # commands as EVAL instead of EVALSHA.
  477. catch {
  478. r evalsha 67164fc43fa971f76fd1aaeeaf60c1c178d25876 1 x
  479. }
  480. r evalsha 6f5ade10a69975e903c6d07b10ea44c6382381a5 1 x
  481. } {4}
  482. test {If EVALSHA was replicated as EVAL, 'x' should be '4'} {
  483. wait_for_condition 50 100 {
  484. [r -1 get x] eq {4}
  485. } else {
  486. fail "Expected 4 in x, but value is '[r -1 get x]'"
  487. }
  488. }
  489. test {Replication of script multiple pushes to list with BLPOP} {
  490. set rd [redis_deferring_client]
  491. $rd brpop a 0
  492. r eval {
  493. redis.call("lpush",KEYS[1],"1");
  494. redis.call("lpush",KEYS[1],"2");
  495. } 1 a
  496. set res [$rd read]
  497. $rd close
  498. wait_for_condition 50 100 {
  499. [r -1 lrange a 0 -1] eq [r lrange a 0 -1]
  500. } else {
  501. fail "Expected list 'a' in slave and master to be the same, but they are respectively '[r -1 lrange a 0 -1]' and '[r lrange a 0 -1]'"
  502. }
  503. set res
  504. } {a 1}
  505. test {EVALSHA replication when first call is readonly} {
  506. r del x
  507. r eval {if tonumber(ARGV[1]) > 0 then redis.call('incr', KEYS[1]) end} 1 x 0
  508. r evalsha 6e0e2745aa546d0b50b801a20983b70710aef3ce 1 x 0
  509. r evalsha 6e0e2745aa546d0b50b801a20983b70710aef3ce 1 x 1
  510. wait_for_condition 50 100 {
  511. [r -1 get x] eq {1}
  512. } else {
  513. fail "Expected 1 in x, but value is '[r -1 get x]'"
  514. }
  515. }
  516. test {Lua scripts using SELECT are replicated correctly} {
  517. r eval {
  518. redis.call("set","foo1","bar1")
  519. redis.call("select","10")
  520. redis.call("incr","x")
  521. redis.call("select","11")
  522. redis.call("incr","z")
  523. } 0
  524. r eval {
  525. redis.call("set","foo1","bar1")
  526. redis.call("select","10")
  527. redis.call("incr","x")
  528. redis.call("select","11")
  529. redis.call("incr","z")
  530. } 0
  531. wait_for_condition 50 100 {
  532. [r -1 debug digest] eq [r debug digest]
  533. } else {
  534. fail "Master-Slave desync after Lua script using SELECT."
  535. }
  536. }
  537. }
  538. }