list.rs 41 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478
  1. use crate::{
  2. check_arg, connection::Connection, error::Error, value::bytes_to_number, value::checksum,
  3. value::Value,
  4. };
  5. use bytes::Bytes;
  6. use std::collections::VecDeque;
  7. use tokio::time::{sleep, Duration, Instant};
  8. #[allow(clippy::needless_range_loop)]
  9. fn remove_element(
  10. conn: &Connection,
  11. key: &Bytes,
  12. count: usize,
  13. front: bool,
  14. ) -> Result<Value, Error> {
  15. conn.db().get_map_or(
  16. key,
  17. |v| match v {
  18. Value::List(x) => {
  19. let mut x = x.write();
  20. if count == 0 {
  21. // Return a single element
  22. return Ok((if front { x.pop_front() } else { x.pop_back() })
  23. .map_or(Value::Null, |x| x.clone_value()));
  24. }
  25. let mut ret = vec![None; count];
  26. for i in 0..count {
  27. if front {
  28. ret[i] = x.pop_front();
  29. } else {
  30. ret[i] = x.pop_back();
  31. }
  32. }
  33. let ret: Vec<Value> = ret
  34. .iter()
  35. .filter(|v| v.is_some())
  36. .map(|x| x.as_ref().unwrap().clone_value())
  37. .collect();
  38. Ok(if ret.is_empty() {
  39. Value::Null
  40. } else {
  41. ret.into()
  42. })
  43. }
  44. _ => Err(Error::WrongType),
  45. },
  46. || Ok(Value::Null),
  47. )
  48. }
  49. pub async fn blpop(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  50. let timeout = Instant::now() + Duration::from_secs(bytes_to_number(&args[args.len() - 1])?);
  51. let len = args.len() - 1;
  52. loop {
  53. for key in args[1..len].iter() {
  54. match remove_element(conn, key, 0, true)? {
  55. Value::Null => (),
  56. n => return Ok(vec![Value::Blob(key.clone()), n].into()),
  57. };
  58. }
  59. if Instant::now() >= timeout {
  60. break;
  61. }
  62. sleep(Duration::from_millis(100)).await;
  63. }
  64. Ok(Value::Null)
  65. }
  66. pub async fn brpop(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  67. let timeout = Instant::now() + Duration::from_secs(bytes_to_number(&args[args.len() - 1])?);
  68. let len = args.len() - 1;
  69. loop {
  70. for key in args[1..len].iter() {
  71. match remove_element(conn, key, 0, false)? {
  72. Value::Null => (),
  73. n => return Ok(vec![Value::Blob(key.clone()), n].into()),
  74. };
  75. }
  76. if Instant::now() >= timeout {
  77. break;
  78. }
  79. sleep(Duration::from_millis(100)).await;
  80. }
  81. Ok(Value::Null)
  82. }
  83. pub async fn lindex(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  84. conn.db().get_map_or(
  85. &args[1],
  86. |v| match v {
  87. Value::List(x) => {
  88. let mut index: i64 = bytes_to_number(&args[2])?;
  89. let x = x.read();
  90. if index < 0 {
  91. index += x.len() as i64;
  92. }
  93. Ok(x.get(index as usize)
  94. .map_or(Value::Null, |x| x.clone_value()))
  95. }
  96. _ => Err(Error::WrongType),
  97. },
  98. || Ok(0.into()),
  99. )
  100. }
  101. pub async fn linsert(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  102. let is_before = if check_arg!(args, 2, "BEFORE") {
  103. true
  104. } else if check_arg!(args, 2, "AFTER") {
  105. false
  106. } else {
  107. return Err(Error::Syntax);
  108. };
  109. conn.db().get_map_or(
  110. &args[1],
  111. |v| match v {
  112. Value::List(x) => {
  113. let pivot = checksum::Ref::new(&args[3]);
  114. let mut x = x.write();
  115. let mut found = false;
  116. for (key, val) in x.iter().enumerate() {
  117. if *val == pivot {
  118. let id = if is_before { key } else { key + 1 };
  119. let value = checksum::Value::new(args[4].clone());
  120. if id > x.len() {
  121. x.push_back(value);
  122. } else {
  123. x.insert(id as usize, value);
  124. }
  125. found = true;
  126. break;
  127. }
  128. }
  129. if found {
  130. Ok((x.len() as i64).into())
  131. } else {
  132. Ok((-1).into())
  133. }
  134. }
  135. _ => Err(Error::WrongType),
  136. },
  137. || Ok(0.into()),
  138. )
  139. }
  140. pub async fn llen(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  141. conn.db().get_map_or(
  142. &args[1],
  143. |v| match v {
  144. Value::List(x) => Ok((x.read().len() as i64).into()),
  145. _ => Err(Error::WrongType),
  146. },
  147. || Ok(0.into()),
  148. )
  149. }
  150. pub async fn lmove(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  151. let source_is_left = if check_arg!(args, 3, "LEFT") {
  152. true
  153. } else if check_arg!(args, 3, "RIGHT") {
  154. false
  155. } else {
  156. return Err(Error::Syntax);
  157. };
  158. let target_is_left = if check_arg!(args, 4, "LEFT") {
  159. true
  160. } else if check_arg!(args, 4, "RIGHT") {
  161. false
  162. } else {
  163. return Err(Error::Syntax);
  164. };
  165. conn.db().get_map_or(
  166. &args[1],
  167. |v| match v {
  168. Value::List(source) => conn.db().get_map_or(
  169. &args[2],
  170. |v| match v {
  171. Value::List(target) => {
  172. let element = if source_is_left {
  173. source.write().pop_front()
  174. } else {
  175. source.write().pop_back()
  176. };
  177. if let Some(element) = element {
  178. let ret = element.clone_value();
  179. if target_is_left {
  180. target.write().push_front(element);
  181. } else {
  182. target.write().push_back(element);
  183. }
  184. Ok(ret)
  185. } else {
  186. Ok(Value::Null)
  187. }
  188. }
  189. _ => Err(Error::WrongType),
  190. },
  191. || {
  192. let element = if source_is_left {
  193. source.write().pop_front()
  194. } else {
  195. source.write().pop_back()
  196. };
  197. if let Some(element) = element {
  198. let ret = element.clone_value();
  199. let mut h = VecDeque::new();
  200. h.push_front(element);
  201. conn.db().set(&args[2], h.into(), None);
  202. Ok(ret)
  203. } else {
  204. Ok(Value::Null)
  205. }
  206. },
  207. ),
  208. _ => Err(Error::WrongType),
  209. },
  210. || Ok(Value::Null),
  211. )
  212. }
  213. pub async fn lpop(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  214. let count = if args.len() > 2 {
  215. bytes_to_number(&args[2])?
  216. } else {
  217. 0
  218. };
  219. remove_element(conn, &args[1], count, true)
  220. }
  221. pub async fn lpos(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  222. let mut index = 3;
  223. let element = checksum::Ref::new(&args[2]);
  224. let rank = if check_arg!(args, index, "RANK") {
  225. index += 2;
  226. Some(bytes_to_number::<usize>(&args[index - 1])?)
  227. } else {
  228. None
  229. };
  230. let count = if check_arg!(args, index, "COUNT") {
  231. index += 2;
  232. Some(bytes_to_number::<usize>(&args[index - 1])?)
  233. } else {
  234. None
  235. };
  236. let max_len = if check_arg!(args, index, "MAXLEN") {
  237. index += 2;
  238. bytes_to_number::<i64>(&args[index - 1])?
  239. } else {
  240. -1
  241. };
  242. if index != args.len() {
  243. return Err(Error::Syntax);
  244. }
  245. conn.db().get_map_or(
  246. &args[1],
  247. |v| match v {
  248. Value::List(x) => {
  249. let x = x.read();
  250. let mut ret: Vec<Value> = vec![];
  251. for (i, val) in x.iter().enumerate() {
  252. if *val == element {
  253. // Match!
  254. if let Some(count) = count {
  255. ret.push((i as i64).into());
  256. if ret.len() > count {
  257. return Ok(ret.into());
  258. }
  259. } else if let Some(rank) = rank {
  260. ret.push((i as i64).into());
  261. if ret.len() == rank {
  262. return Ok(ret[rank - 1].clone());
  263. }
  264. } else {
  265. // return first match!
  266. return Ok((i as i64).into());
  267. }
  268. }
  269. if (i as i64) == max_len {
  270. break;
  271. }
  272. }
  273. if count.is_some() {
  274. Ok(ret.into())
  275. } else {
  276. Ok(Value::Null)
  277. }
  278. }
  279. _ => Err(Error::WrongType),
  280. },
  281. || {
  282. Ok(if count.is_some() {
  283. Value::Array(vec![])
  284. } else {
  285. Value::Null
  286. })
  287. },
  288. )
  289. }
  290. pub async fn lpush(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  291. let is_push_x = check_arg!(args, 0, "LPUSHX");
  292. conn.db().get_map_or(
  293. &args[1],
  294. |v| match v {
  295. Value::List(x) => {
  296. let mut x = x.write();
  297. for val in args.iter().skip(2) {
  298. x.push_front(checksum::Value::new(val.clone()));
  299. }
  300. Ok((x.len() as i64).into())
  301. }
  302. _ => Err(Error::WrongType),
  303. },
  304. || {
  305. if is_push_x {
  306. return Ok(0.into());
  307. }
  308. let mut h = VecDeque::new();
  309. for val in args.iter().skip(2) {
  310. h.push_front(checksum::Value::new(val.clone()));
  311. }
  312. let len = h.len() as i64;
  313. conn.db().set(&args[1], h.into(), None);
  314. Ok(len.into())
  315. },
  316. )
  317. }
  318. pub async fn lrange(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  319. conn.db().get_map_or(
  320. &args[1],
  321. |v| match v {
  322. Value::List(x) => {
  323. let mut start: i64 = bytes_to_number(&args[2])?;
  324. let mut end: i64 = bytes_to_number(&args[3])?;
  325. let mut ret = vec![];
  326. let x = x.read();
  327. if start < 0 {
  328. start += x.len() as i64;
  329. }
  330. if end < 0 {
  331. end += x.len() as i64;
  332. }
  333. for (i, val) in x.iter().enumerate() {
  334. if i >= start as usize && i <= end as usize {
  335. ret.push(val.clone_value());
  336. }
  337. }
  338. Ok(ret.into())
  339. }
  340. _ => Err(Error::WrongType),
  341. },
  342. || Ok(Value::Array(vec![])),
  343. )
  344. }
  345. pub async fn lrem(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  346. conn.db().get_map_or(
  347. &args[1],
  348. |v| match v {
  349. Value::List(x) => {
  350. let element = checksum::Ref::new(&args[3]);
  351. let limit: i64 = bytes_to_number(&args[2])?;
  352. let mut x = x.write();
  353. let (is_reverse, limit) = if limit < 0 {
  354. (true, -limit)
  355. } else {
  356. (false, limit)
  357. };
  358. let mut keep = vec![true; x.len()];
  359. let mut removed = 0;
  360. let len = x.len();
  361. for i in 0..len {
  362. let i = if is_reverse { len - 1 - i } else { i };
  363. if let Some(value) = x.get(i) {
  364. if *value == element {
  365. keep[i] = false;
  366. removed += 1;
  367. if removed == limit {
  368. break;
  369. }
  370. }
  371. }
  372. }
  373. let mut i = 0;
  374. x.retain(|_| {
  375. i += 1;
  376. keep[i - 1]
  377. });
  378. Ok(removed.into())
  379. }
  380. _ => Err(Error::WrongType),
  381. },
  382. || Ok(0.into()),
  383. )
  384. }
  385. pub async fn lset(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  386. conn.db().get_map_or(
  387. &args[1],
  388. |v| match v {
  389. Value::List(x) => {
  390. let mut index: i64 = bytes_to_number(&args[2])?;
  391. let mut x = x.write();
  392. if index < 0 {
  393. index += x.len() as i64;
  394. }
  395. if let Some(x) = x.get_mut(index as usize) {
  396. *x = checksum::Value::new(args[3].clone());
  397. Ok(Value::OK)
  398. } else {
  399. Err(Error::OutOfRange)
  400. }
  401. }
  402. _ => Err(Error::WrongType),
  403. },
  404. || Err(Error::NotFound),
  405. )
  406. }
  407. pub async fn ltrim(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  408. conn.db().get_map_or(
  409. &args[1],
  410. |v| match v {
  411. Value::List(x) => {
  412. let mut start: i64 = bytes_to_number(&args[2])?;
  413. let mut end: i64 = bytes_to_number(&args[3])?;
  414. let mut x = x.write();
  415. if start < 0 {
  416. start += x.len() as i64;
  417. }
  418. if end < 0 {
  419. end += x.len() as i64;
  420. }
  421. let mut i = 0;
  422. x.retain(|_| {
  423. let retain = i >= start && i <= end;
  424. i += 1;
  425. retain
  426. });
  427. Ok(Value::OK)
  428. }
  429. _ => Err(Error::WrongType),
  430. },
  431. || Ok(Value::OK),
  432. )
  433. }
  434. pub async fn rpop(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  435. let count = if args.len() > 2 {
  436. bytes_to_number(&args[2])?
  437. } else {
  438. 0
  439. };
  440. remove_element(conn, &args[1], count, false)
  441. }
  442. pub async fn rpoplpush(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  443. lmove(
  444. conn,
  445. &[
  446. "lmove".into(),
  447. args[1].clone(),
  448. args[2].clone(),
  449. "RIGHT".into(),
  450. "LEFT".into(),
  451. ],
  452. )
  453. .await
  454. }
  455. pub async fn rpush(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  456. let is_push_x = check_arg!(args, 0, "RPUSHX");
  457. conn.db().get_map_or(
  458. &args[1],
  459. |v| match v {
  460. Value::List(x) => {
  461. let mut x = x.write();
  462. for val in args.iter().skip(2) {
  463. x.push_back(checksum::Value::new(val.clone()));
  464. }
  465. Ok((x.len() as i64).into())
  466. }
  467. _ => Err(Error::WrongType),
  468. },
  469. || {
  470. if is_push_x {
  471. return Ok(0.into());
  472. }
  473. let mut h = VecDeque::new();
  474. for val in args.iter().skip(2) {
  475. h.push_back(checksum::Value::new(val.clone()));
  476. }
  477. let len = h.len() as i64;
  478. conn.db().set(&args[1], h.into(), None);
  479. Ok(len.into())
  480. },
  481. )
  482. }
  483. #[cfg(test)]
  484. mod test {
  485. use crate::{
  486. cmd::test::{create_connection, run_command},
  487. error::Error,
  488. value::Value,
  489. };
  490. use tokio::time::{sleep, Duration, Instant};
  491. #[tokio::test]
  492. async fn blpop_no_waiting() {
  493. let c = create_connection();
  494. assert_eq!(
  495. Ok(Value::Integer(5)),
  496. run_command(&c, &["lpush", "foo", "1", "2", "3", "4", "5"]).await,
  497. );
  498. assert_eq!(
  499. Ok(Value::Array(vec![
  500. Value::Blob("foo".into()),
  501. Value::Blob("5".into()),
  502. ])),
  503. run_command(&c, &["blpop", "foo", "1"]).await
  504. );
  505. }
  506. #[tokio::test]
  507. async fn blpop_timeout() {
  508. let c = create_connection();
  509. let x = Instant::now();
  510. assert_eq!(
  511. Ok(Value::Null),
  512. run_command(&c, &["blpop", "foobar", "1"]).await
  513. );
  514. assert!(Instant::now() - x > Duration::from_millis(1000));
  515. }
  516. #[tokio::test]
  517. async fn blpop_wait_insert() {
  518. let c = create_connection();
  519. let x = Instant::now();
  520. // Query command that will block connection until some data is inserted
  521. // to foobar, foo, bar or the 5 seconds timeout happens.
  522. //
  523. // We are issuing the command, sleeping a little bit then adding data to
  524. // foobar, before actually waiting on the result.
  525. let waiting = run_command(&c, &["blpop", "foobar", "foo", "bar", "5"]);
  526. // Sleep 1 second before inserting new data
  527. sleep(Duration::from_millis(1000)).await;
  528. assert_eq!(
  529. Ok(Value::Integer(5)),
  530. run_command(&c, &["lpush", "foo", "1", "2", "3", "4", "5"]).await,
  531. );
  532. // Read the output of the first blpop command now.
  533. assert_eq!(
  534. Ok(Value::Array(vec![
  535. Value::Blob("foo".into()),
  536. Value::Blob("5".into()),
  537. ])),
  538. waiting.await
  539. );
  540. assert!(Instant::now() - x > Duration::from_millis(1000));
  541. assert!(Instant::now() - x < Duration::from_millis(5000));
  542. }
  543. #[tokio::test]
  544. async fn lrem_1() {
  545. let c = create_connection();
  546. assert_eq!(
  547. Ok(Value::Integer(5)),
  548. run_command(
  549. &c,
  550. &["rpush", "mylist", "hello", "hello", "world", "hello", "hello"]
  551. )
  552. .await
  553. );
  554. assert_eq!(
  555. Ok(Value::Integer(3)),
  556. run_command(&c, &["lrem", "mylist", "3", "hello"]).await
  557. );
  558. assert_eq!(
  559. Ok(Value::Array(vec![
  560. Value::Blob("world".into()),
  561. Value::Blob("hello".into()),
  562. ])),
  563. run_command(&c, &["lrange", "mylist", "0", "-1"]).await
  564. );
  565. }
  566. #[tokio::test]
  567. async fn lrem_2() {
  568. let c = create_connection();
  569. assert_eq!(
  570. Ok(Value::Integer(5)),
  571. run_command(
  572. &c,
  573. &["rpush", "mylist", "hello", "hello", "world", "hello", "hello"]
  574. )
  575. .await
  576. );
  577. assert_eq!(
  578. Ok(Value::Integer(2)),
  579. run_command(&c, &["lrem", "mylist", "-2", "hello"]).await
  580. );
  581. assert_eq!(
  582. Ok(Value::Array(vec![
  583. Value::Blob("hello".into()),
  584. Value::Blob("hello".into()),
  585. Value::Blob("world".into()),
  586. ])),
  587. run_command(&c, &["lrange", "mylist", "0", "-1"]).await
  588. );
  589. assert_eq!(
  590. Ok(Value::Integer(1)),
  591. run_command(&c, &["lrem", "mylist", "1", "hello"]).await
  592. );
  593. assert_eq!(
  594. Ok(Value::Array(vec![
  595. Value::Blob("hello".into()),
  596. Value::Blob("world".into()),
  597. ])),
  598. run_command(&c, &["lrange", "mylist", "0", "-1"]).await
  599. );
  600. }
  601. #[tokio::test]
  602. async fn lrem_3() {
  603. let c = create_connection();
  604. assert_eq!(
  605. Ok(Value::Integer(5)),
  606. run_command(
  607. &c,
  608. &["rpush", "mylist", "hello", "hello", "world", "hello", "hello"]
  609. )
  610. .await
  611. );
  612. assert_eq!(
  613. Ok(Value::Integer(4)),
  614. run_command(&c, &["lrem", "mylist", "-100", "hello"]).await
  615. );
  616. assert_eq!(
  617. Ok(Value::Array(vec![Value::Blob("world".into()),])),
  618. run_command(&c, &["lrange", "mylist", "0", "-1"]).await
  619. );
  620. }
  621. #[tokio::test]
  622. async fn lrem_4() {
  623. let c = create_connection();
  624. assert_eq!(
  625. Ok(Value::Integer(5)),
  626. run_command(
  627. &c,
  628. &["rpush", "mylist", "hello", "hello", "world", "hello", "hello"]
  629. )
  630. .await
  631. );
  632. assert_eq!(
  633. Ok(Value::Integer(4)),
  634. run_command(&c, &["lrem", "mylist", "100", "hello"]).await
  635. );
  636. assert_eq!(
  637. Ok(Value::Array(vec![Value::Blob("world".into()),])),
  638. run_command(&c, &["lrange", "mylist", "0", "-1"]).await
  639. );
  640. }
  641. #[tokio::test]
  642. async fn brpop_no_waiting() {
  643. let c = create_connection();
  644. assert_eq!(
  645. Ok(Value::Integer(5)),
  646. run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await,
  647. );
  648. assert_eq!(
  649. Ok(Value::Array(vec![
  650. Value::Blob("foo".into()),
  651. Value::Blob("5".into()),
  652. ])),
  653. run_command(&c, &["brpop", "foo", "1"]).await
  654. );
  655. }
  656. #[tokio::test]
  657. async fn brpop_timeout() {
  658. let c = create_connection();
  659. let x = Instant::now();
  660. assert_eq!(
  661. Ok(Value::Null),
  662. run_command(&c, &["brpop", "foobar", "1"]).await
  663. );
  664. assert!(Instant::now() - x > Duration::from_millis(1000));
  665. }
  666. #[tokio::test]
  667. async fn brpop_wait_insert() {
  668. let c = create_connection();
  669. let x = Instant::now();
  670. // Query command that will block connection until some data is inserted
  671. // to foobar, foo, bar or the 5 seconds timeout happens.
  672. //
  673. // We are issuing the command, sleeping a little bit then adding data to
  674. // foobar, before actually waiting on the result.
  675. let waiting = run_command(&c, &["brpop", "foobar", "foo", "bar", "5"]);
  676. // Sleep 1 second before inserting new data
  677. sleep(Duration::from_millis(1000)).await;
  678. assert_eq!(
  679. Ok(Value::Integer(5)),
  680. run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await,
  681. );
  682. // Read the output of the first blpop command now.
  683. assert_eq!(
  684. Ok(Value::Array(vec![
  685. Value::Blob("foo".into()),
  686. Value::Blob("5".into()),
  687. ])),
  688. waiting.await
  689. );
  690. assert!(Instant::now() - x > Duration::from_millis(1000));
  691. assert!(Instant::now() - x < Duration::from_millis(5000));
  692. }
  693. #[tokio::test]
  694. async fn lindex() {
  695. let c = create_connection();
  696. assert_eq!(
  697. Ok(Value::Integer(5)),
  698. run_command(&c, &["lpush", "foo", "1", "2", "3", "4", "5"]).await
  699. );
  700. assert_eq!(
  701. Ok(Value::Array(vec![
  702. Value::Blob("5".into()),
  703. Value::Blob("4".into()),
  704. Value::Blob("3".into()),
  705. Value::Blob("2".into()),
  706. Value::Blob("1".into()),
  707. ])),
  708. run_command(&c, &["lrange", "foo", "0", "-1"]).await
  709. );
  710. assert_eq!(
  711. Ok(Value::Blob("5".into())),
  712. run_command(&c, &["lindex", "foo", "0"]).await
  713. );
  714. assert_eq!(
  715. Ok(Value::Blob("1".into())),
  716. run_command(&c, &["lindex", "foo", "-1"]).await
  717. );
  718. assert_eq!(
  719. Ok(Value::Null),
  720. run_command(&c, &["lindex", "foo", "-100"]).await
  721. );
  722. assert_eq!(
  723. Ok(Value::Null),
  724. run_command(&c, &["lindex", "foo", "100"]).await
  725. );
  726. }
  727. #[tokio::test]
  728. async fn linsert_syntax_err() {
  729. let c = create_connection();
  730. assert_eq!(
  731. Ok(Value::Integer(2)),
  732. run_command(&c, &["rpush", "foo", "hello", "world"]).await
  733. );
  734. assert_eq!(
  735. Err(Error::Syntax),
  736. run_command(&c, &["linsert", "foo", "beforex", "world", "there"]).await
  737. );
  738. }
  739. #[tokio::test]
  740. async fn linsert_before() {
  741. let c = create_connection();
  742. assert_eq!(
  743. Ok(Value::Integer(2)),
  744. run_command(&c, &["rpush", "foo", "hello", "world"]).await
  745. );
  746. assert_eq!(
  747. Ok(Value::Integer(3)),
  748. run_command(&c, &["linsert", "foo", "before", "world", "there"]).await
  749. );
  750. assert_eq!(
  751. Ok(Value::Array(vec![
  752. Value::Blob("hello".into()),
  753. Value::Blob("there".into()),
  754. Value::Blob("world".into()),
  755. ])),
  756. run_command(&c, &["lrange", "foo", "0", "-1"]).await,
  757. );
  758. }
  759. #[tokio::test]
  760. async fn linsert_after() {
  761. let c = create_connection();
  762. assert_eq!(
  763. Ok(Value::Integer(2)),
  764. run_command(&c, &["rpush", "foo", "hello", "world"]).await
  765. );
  766. assert_eq!(
  767. Ok(Value::Integer(3)),
  768. run_command(&c, &["linsert", "foo", "after", "world", "there"]).await
  769. );
  770. assert_eq!(
  771. Ok(Value::Array(vec![
  772. Value::Blob("hello".into()),
  773. Value::Blob("world".into()),
  774. Value::Blob("there".into()),
  775. ])),
  776. run_command(&c, &["lrange", "foo", "0", "-1"]).await,
  777. );
  778. }
  779. #[tokio::test]
  780. async fn linsert_before_after() {
  781. let c = create_connection();
  782. assert_eq!(
  783. Ok(Value::Integer(2)),
  784. run_command(&c, &["rpush", "foo", "hello", "world"]).await
  785. );
  786. assert_eq!(
  787. Ok(Value::Integer(3)),
  788. run_command(&c, &["linsert", "foo", "after", "world", "there1"]).await
  789. );
  790. assert_eq!(
  791. Ok(Value::Integer(4)),
  792. run_command(&c, &["linsert", "foo", "before", "world", "there2"]).await
  793. );
  794. assert_eq!(
  795. Ok(Value::Array(vec![
  796. Value::Blob("hello".into()),
  797. Value::Blob("there2".into()),
  798. Value::Blob("world".into()),
  799. Value::Blob("there1".into()),
  800. ])),
  801. run_command(&c, &["lrange", "foo", "0", "-1"]).await,
  802. );
  803. }
  804. #[tokio::test]
  805. async fn linsert_not_found() {
  806. let c = create_connection();
  807. assert_eq!(
  808. Ok(Value::Integer(2)),
  809. run_command(&c, &["rpush", "foo", "hello", "world"]).await
  810. );
  811. assert_eq!(
  812. Ok(Value::Integer(-1)),
  813. run_command(&c, &["linsert", "foo", "after", "worldx", "there"]).await
  814. );
  815. assert_eq!(
  816. Ok(Value::Integer(-1)),
  817. run_command(&c, &["linsert", "foo", "before", "worldx", "there"]).await
  818. );
  819. }
  820. #[tokio::test]
  821. async fn llen() {
  822. let c = create_connection();
  823. assert_eq!(
  824. run_command(&c, &["lpush", "foo", "1", "2", "3", "4", "5"]).await,
  825. run_command(&c, &["llen", "foo"]).await
  826. );
  827. assert_eq!(
  828. Ok(Value::Integer(0)),
  829. run_command(&c, &["llen", "foobar"]).await
  830. );
  831. }
  832. #[tokio::test]
  833. async fn lmove_1() {
  834. let c = create_connection();
  835. assert_eq!(
  836. run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await,
  837. run_command(&c, &["llen", "foo"]).await
  838. );
  839. assert_eq!(
  840. Ok(Value::Blob("1".into())),
  841. run_command(&c, &["lmove", "foo", "bar", "left", "left"]).await
  842. );
  843. assert_eq!(
  844. Ok(Value::Array(vec![Value::Blob("1".into()),])),
  845. run_command(&c, &["lrange", "bar", "0", "-1"]).await
  846. );
  847. assert_eq!(
  848. Ok(Value::Blob("5".into())),
  849. run_command(&c, &["lmove", "foo", "bar", "right", "left"]).await
  850. );
  851. assert_eq!(
  852. Ok(Value::Array(vec![
  853. Value::Blob("5".into()),
  854. Value::Blob("1".into()),
  855. ])),
  856. run_command(&c, &["lrange", "bar", "0", "-1"]).await
  857. );
  858. }
  859. #[tokio::test]
  860. async fn lpop() {
  861. let c = create_connection();
  862. assert_eq!(
  863. Ok(Value::Integer(5)),
  864. run_command(&c, &["lpush", "foo", "1", "2", "3", "4", "5"]).await,
  865. );
  866. assert_eq!(
  867. Ok(Value::Blob("5".into())),
  868. run_command(&c, &["lpop", "foo"]).await
  869. );
  870. assert_eq!(
  871. Ok(Value::Array(vec![Value::Blob("4".into())])),
  872. run_command(&c, &["lpop", "foo", "1"]).await
  873. );
  874. assert_eq!(
  875. Ok(Value::Array(vec![
  876. Value::Blob("3".into()),
  877. Value::Blob("2".into()),
  878. Value::Blob("1".into()),
  879. ])),
  880. run_command(&c, &["lpop", "foo", "55"]).await
  881. );
  882. assert_eq!(
  883. Ok(Value::Null),
  884. run_command(&c, &["lpop", "foo", "55"]).await
  885. );
  886. assert_eq!(Ok(Value::Null), run_command(&c, &["lpop", "foo"]).await);
  887. assert_eq!(
  888. Ok(Value::Integer(0)),
  889. run_command(&c, &["llen", "foobar"]).await
  890. );
  891. }
  892. #[tokio::test]
  893. async fn lpos_single_match() {
  894. let c = create_connection();
  895. assert_eq!(
  896. Ok(Value::Integer(11)),
  897. run_command(
  898. &c,
  899. &["RPUSH", "mylist", "a", "b", "c", "d", "1", "2", "3", "4", "3", "3", "3"]
  900. )
  901. .await
  902. );
  903. assert_eq!(
  904. Ok(Value::Integer(6)),
  905. run_command(&c, &["lpos", "mylist", "3"]).await
  906. );
  907. }
  908. #[tokio::test]
  909. async fn lpos_single_skip() {
  910. let c = create_connection();
  911. assert_eq!(
  912. Ok(Value::Integer(11)),
  913. run_command(
  914. &c,
  915. &["RPUSH", "mylist", "a", "b", "c", "d", "1", "2", "3", "4", "3", "3", "3"]
  916. )
  917. .await
  918. );
  919. assert_eq!(
  920. Ok(Value::Integer(8)),
  921. run_command(&c, &["lpos", "mylist", "3", "rank", "2"]).await
  922. );
  923. }
  924. #[tokio::test]
  925. async fn lpos_single_skip_max_len() {
  926. let c = create_connection();
  927. assert_eq!(
  928. Ok(Value::Integer(11)),
  929. run_command(
  930. &c,
  931. &["RPUSH", "mylist", "a", "b", "c", "d", "1", "2", "3", "4", "3", "3", "3"]
  932. )
  933. .await
  934. );
  935. assert_eq!(
  936. Ok(Value::Null),
  937. run_command(&c, &["lpos", "mylist", "3", "rank", "2", "maxlen", "7"]).await
  938. );
  939. }
  940. #[tokio::test]
  941. async fn lpos_not_found() {
  942. let c = create_connection();
  943. assert_eq!(
  944. Ok(Value::Array(vec![])),
  945. run_command(&c, &["lpos", "mylist", "3", "count", "5", "maxlen", "9"]).await
  946. );
  947. assert_eq!(
  948. Ok(Value::Null),
  949. run_command(&c, &["lpos", "mylist", "3"]).await
  950. );
  951. }
  952. #[tokio::test]
  953. async fn lpos() {
  954. let c = create_connection();
  955. assert_eq!(
  956. Ok(Value::Integer(11)),
  957. run_command(
  958. &c,
  959. &["RPUSH", "mylist", "a", "b", "c", "d", "1", "2", "3", "4", "3", "3", "3"]
  960. )
  961. .await
  962. );
  963. assert_eq!(
  964. Ok(Value::Array(vec![
  965. Value::Integer(6),
  966. Value::Integer(8),
  967. Value::Integer(9),
  968. ])),
  969. run_command(&c, &["lpos", "mylist", "3", "count", "5", "maxlen", "9"]).await
  970. );
  971. }
  972. #[tokio::test]
  973. async fn lpush() {
  974. let c = create_connection();
  975. assert_eq!(
  976. Ok(Value::Integer(5)),
  977. run_command(&c, &["lpush", "foo", "1", "2", "3", "4", "5"]).await
  978. );
  979. assert_eq!(
  980. Ok(Value::Array(vec![
  981. Value::Blob("5".into()),
  982. Value::Blob("4".into()),
  983. Value::Blob("3".into()),
  984. Value::Blob("2".into()),
  985. Value::Blob("1".into()),
  986. ])),
  987. run_command(&c, &["lrange", "foo", "0", "-1"]).await
  988. );
  989. assert_eq!(
  990. Ok(Value::Integer(10)),
  991. run_command(&c, &["lpush", "foo", "6", "7", "8", "9", "10"]).await
  992. );
  993. assert_eq!(
  994. Ok(Value::Array(vec![
  995. Value::Blob("10".into()),
  996. Value::Blob("9".into()),
  997. Value::Blob("8".into()),
  998. Value::Blob("7".into()),
  999. Value::Blob("6".into()),
  1000. Value::Blob("5".into()),
  1001. Value::Blob("4".into()),
  1002. Value::Blob("3".into()),
  1003. Value::Blob("2".into()),
  1004. Value::Blob("1".into()),
  1005. ])),
  1006. run_command(&c, &["lrange", "foo", "0", "-1"]).await
  1007. );
  1008. }
  1009. #[tokio::test]
  1010. async fn lpush_simple() {
  1011. let c = create_connection();
  1012. assert_eq!(
  1013. Ok(Value::Integer(1)),
  1014. run_command(&c, &["lpush", "foo", "world"]).await
  1015. );
  1016. assert_eq!(
  1017. Ok(Value::Integer(2)),
  1018. run_command(&c, &["lpush", "foo", "hello"]).await
  1019. );
  1020. assert_eq!(
  1021. Ok(Value::Array(vec![
  1022. Value::Blob("hello".into()),
  1023. Value::Blob("world".into()),
  1024. ])),
  1025. run_command(&c, &["lrange", "foo", "0", "-1"]).await
  1026. );
  1027. }
  1028. #[tokio::test]
  1029. async fn lset() {
  1030. let c = create_connection();
  1031. assert_eq!(
  1032. Ok(Value::Integer(5)),
  1033. run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await
  1034. );
  1035. assert_eq!(
  1036. Ok(Value::OK),
  1037. run_command(&c, &["lset", "foo", "-1", "6"]).await,
  1038. );
  1039. assert_eq!(
  1040. Ok(Value::OK),
  1041. run_command(&c, &["lset", "foo", "-2", "7"]).await,
  1042. );
  1043. assert_eq!(
  1044. Ok(Value::OK),
  1045. run_command(&c, &["lset", "foo", "0", "8"]).await,
  1046. );
  1047. assert_eq!(
  1048. Err(Error::OutOfRange),
  1049. run_command(&c, &["lset", "foo", "55", "8"]).await,
  1050. );
  1051. assert_eq!(
  1052. Err(Error::OutOfRange),
  1053. run_command(&c, &["lset", "foo", "-55", "8"]).await,
  1054. );
  1055. assert_eq!(
  1056. Err(Error::NotFound),
  1057. run_command(&c, &["lset", "key_not_exists", "-55", "8"]).await,
  1058. );
  1059. assert_eq!(
  1060. Ok(Value::Blob("6".into())),
  1061. run_command(&c, &["rpop", "foo"]).await
  1062. );
  1063. assert_eq!(
  1064. Ok(Value::Blob("7".into())),
  1065. run_command(&c, &["rpop", "foo"]).await
  1066. );
  1067. assert_eq!(
  1068. Ok(Value::Blob("8".into())),
  1069. run_command(&c, &["lpop", "foo"]).await
  1070. );
  1071. }
  1072. #[tokio::test]
  1073. async fn ltrim() {
  1074. let c = create_connection();
  1075. assert_eq!(
  1076. Ok(Value::Integer(5)),
  1077. run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await
  1078. );
  1079. assert_eq!(
  1080. Ok(Value::OK),
  1081. run_command(&c, &["ltrim", "foo", "1", "-2"]).await
  1082. );
  1083. assert_eq!(
  1084. Ok(Value::Array(vec![
  1085. Value::Blob("2".into()),
  1086. Value::Blob("3".into()),
  1087. Value::Blob("4".into()),
  1088. ])),
  1089. run_command(&c, &["lrange", "foo", "0", "-1"]).await
  1090. );
  1091. }
  1092. #[tokio::test]
  1093. async fn rpop() {
  1094. let c = create_connection();
  1095. assert_eq!(
  1096. Ok(Value::Integer(5)),
  1097. run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await
  1098. );
  1099. assert_eq!(
  1100. Ok(Value::Blob("5".into())),
  1101. run_command(&c, &["rpop", "foo"]).await
  1102. );
  1103. assert_eq!(
  1104. Ok(Value::Array(vec![Value::Blob("4".into())])),
  1105. run_command(&c, &["rpop", "foo", "1"]).await
  1106. );
  1107. assert_eq!(
  1108. Ok(Value::Array(vec![
  1109. Value::Blob("3".into()),
  1110. Value::Blob("2".into()),
  1111. Value::Blob("1".into()),
  1112. ])),
  1113. run_command(&c, &["rpop", "foo", "55"]).await
  1114. );
  1115. assert_eq!(
  1116. Ok(Value::Null),
  1117. run_command(&c, &["rpop", "foo", "55"]).await
  1118. );
  1119. assert_eq!(Ok(Value::Null), run_command(&c, &["rpop", "foo"]).await);
  1120. assert_eq!(
  1121. Ok(Value::Integer(0)),
  1122. run_command(&c, &["llen", "foobar"]).await
  1123. );
  1124. }
  1125. #[tokio::test]
  1126. async fn rpush_simple() {
  1127. let c = create_connection();
  1128. assert_eq!(
  1129. Ok(Value::Integer(1)),
  1130. run_command(&c, &["rpush", "foo", "world"]).await
  1131. );
  1132. assert_eq!(
  1133. Ok(Value::Integer(2)),
  1134. run_command(&c, &["rpush", "foo", "hello"]).await
  1135. );
  1136. assert_eq!(
  1137. Ok(Value::Array(vec![
  1138. Value::Blob("world".into()),
  1139. Value::Blob("hello".into()),
  1140. ])),
  1141. run_command(&c, &["lrange", "foo", "0", "-1"]).await
  1142. );
  1143. }
  1144. #[tokio::test]
  1145. async fn lrange() {
  1146. let c = create_connection();
  1147. assert_eq!(
  1148. Ok(Value::Integer(5)),
  1149. run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await
  1150. );
  1151. assert_eq!(
  1152. Ok(Value::Array(vec![
  1153. Value::Blob("1".into()),
  1154. Value::Blob("2".into()),
  1155. Value::Blob("3".into()),
  1156. Value::Blob("4".into()),
  1157. Value::Blob("5".into()),
  1158. ])),
  1159. run_command(&c, &["lrange", "foo", "0", "-1"]).await
  1160. );
  1161. assert_eq!(
  1162. Ok(Value::Array(vec![
  1163. Value::Blob("1".into()),
  1164. Value::Blob("2".into()),
  1165. Value::Blob("3".into()),
  1166. Value::Blob("4".into()),
  1167. ])),
  1168. run_command(&c, &["lrange", "foo", "0", "-2"]).await
  1169. );
  1170. assert_eq!(
  1171. Ok(Value::Array(vec![
  1172. Value::Blob("4".into()),
  1173. Value::Blob("5".into()),
  1174. ])),
  1175. run_command(&c, &["lrange", "foo", "-2", "-1"]).await
  1176. );
  1177. assert_eq!(
  1178. Ok(Value::Array(vec![Value::Blob("3".into()),])),
  1179. run_command(&c, &["lrange", "foo", "-3", "-3"]).await
  1180. );
  1181. }
  1182. #[tokio::test]
  1183. async fn rpush() {
  1184. let c = create_connection();
  1185. assert_eq!(
  1186. Ok(Value::Integer(5)),
  1187. run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await
  1188. );
  1189. assert_eq!(
  1190. Ok(Value::Array(vec![
  1191. Value::Blob("1".into()),
  1192. Value::Blob("2".into()),
  1193. Value::Blob("3".into()),
  1194. Value::Blob("4".into()),
  1195. Value::Blob("5".into()),
  1196. ])),
  1197. run_command(&c, &["lrange", "foo", "0", "-1"]).await
  1198. );
  1199. assert_eq!(
  1200. Ok(Value::Integer(10)),
  1201. run_command(&c, &["rpush", "foo", "6", "7", "8", "9", "10"]).await
  1202. );
  1203. assert_eq!(
  1204. Ok(Value::Array(vec![
  1205. Value::Blob("1".into()),
  1206. Value::Blob("2".into()),
  1207. Value::Blob("3".into()),
  1208. Value::Blob("4".into()),
  1209. Value::Blob("5".into()),
  1210. Value::Blob("6".into()),
  1211. Value::Blob("7".into()),
  1212. Value::Blob("8".into()),
  1213. Value::Blob("9".into()),
  1214. Value::Blob("10".into()),
  1215. ])),
  1216. run_command(&c, &["lrange", "foo", "0", "-1"]).await
  1217. );
  1218. }
  1219. #[tokio::test]
  1220. async fn rpushx() {
  1221. let c = create_connection();
  1222. assert_eq!(
  1223. Ok(Value::Integer(5)),
  1224. run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await
  1225. );
  1226. assert_eq!(
  1227. Ok(Value::Array(vec![
  1228. Value::Blob("1".into()),
  1229. Value::Blob("2".into()),
  1230. Value::Blob("3".into()),
  1231. Value::Blob("4".into()),
  1232. Value::Blob("5".into()),
  1233. ])),
  1234. run_command(&c, &["lrange", "foo", "0", "-1"]).await
  1235. );
  1236. assert_eq!(
  1237. Ok(Value::Integer(10)),
  1238. run_command(&c, &["rpushx", "foo", "6", "7", "8", "9", "10"]).await
  1239. );
  1240. assert_eq!(
  1241. Ok(Value::Array(vec![
  1242. Value::Blob("1".into()),
  1243. Value::Blob("2".into()),
  1244. Value::Blob("3".into()),
  1245. Value::Blob("4".into()),
  1246. Value::Blob("5".into()),
  1247. Value::Blob("6".into()),
  1248. Value::Blob("7".into()),
  1249. Value::Blob("8".into()),
  1250. Value::Blob("9".into()),
  1251. Value::Blob("10".into()),
  1252. ])),
  1253. run_command(&c, &["lrange", "foo", "0", "-1"]).await
  1254. );
  1255. assert_eq!(
  1256. Ok(Value::Integer(0)),
  1257. run_command(&c, &["rpushx", "foobar", "6", "7", "8", "9", "10"]).await
  1258. );
  1259. }
  1260. }