scripting.tcl 25 KB

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