12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478 |
- use crate::{
- check_arg, connection::Connection, error::Error, value::bytes_to_number, value::checksum,
- value::Value,
- };
- use bytes::Bytes;
- use std::collections::VecDeque;
- use tokio::time::{sleep, Duration, Instant};
- #[allow(clippy::needless_range_loop)]
- fn remove_element(
- conn: &Connection,
- key: &Bytes,
- count: usize,
- front: bool,
- ) -> Result<Value, Error> {
- conn.db().get_map_or(
- key,
- |v| match v {
- Value::List(x) => {
- let mut x = x.write();
- if count == 0 {
- // Return a single element
- return Ok((if front { x.pop_front() } else { x.pop_back() })
- .map_or(Value::Null, |x| x.clone_value()));
- }
- let mut ret = vec![None; count];
- for i in 0..count {
- if front {
- ret[i] = x.pop_front();
- } else {
- ret[i] = x.pop_back();
- }
- }
- let ret: Vec<Value> = ret
- .iter()
- .filter(|v| v.is_some())
- .map(|x| x.as_ref().unwrap().clone_value())
- .collect();
- Ok(if ret.is_empty() {
- Value::Null
- } else {
- ret.into()
- })
- }
- _ => Err(Error::WrongType),
- },
- || Ok(Value::Null),
- )
- }
- pub async fn blpop(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- let timeout = Instant::now() + Duration::from_secs(bytes_to_number(&args[args.len() - 1])?);
- let len = args.len() - 1;
- loop {
- for key in args[1..len].iter() {
- match remove_element(conn, key, 0, true)? {
- Value::Null => (),
- n => return Ok(vec![Value::Blob(key.clone()), n].into()),
- };
- }
- if Instant::now() >= timeout {
- break;
- }
- sleep(Duration::from_millis(100)).await;
- }
- Ok(Value::Null)
- }
- pub async fn brpop(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- let timeout = Instant::now() + Duration::from_secs(bytes_to_number(&args[args.len() - 1])?);
- let len = args.len() - 1;
- loop {
- for key in args[1..len].iter() {
- match remove_element(conn, key, 0, false)? {
- Value::Null => (),
- n => return Ok(vec![Value::Blob(key.clone()), n].into()),
- };
- }
- if Instant::now() >= timeout {
- break;
- }
- sleep(Duration::from_millis(100)).await;
- }
- Ok(Value::Null)
- }
- pub async fn lindex(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::List(x) => {
- let mut index: i64 = bytes_to_number(&args[2])?;
- let x = x.read();
- if index < 0 {
- index += x.len() as i64;
- }
- Ok(x.get(index as usize)
- .map_or(Value::Null, |x| x.clone_value()))
- }
- _ => Err(Error::WrongType),
- },
- || Ok(0.into()),
- )
- }
- pub async fn linsert(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- let is_before = if check_arg!(args, 2, "BEFORE") {
- true
- } else if check_arg!(args, 2, "AFTER") {
- false
- } else {
- return Err(Error::Syntax);
- };
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::List(x) => {
- let pivot = checksum::Ref::new(&args[3]);
- let mut x = x.write();
- let mut found = false;
- for (key, val) in x.iter().enumerate() {
- if *val == pivot {
- let id = if is_before { key } else { key + 1 };
- let value = checksum::Value::new(args[4].clone());
- if id > x.len() {
- x.push_back(value);
- } else {
- x.insert(id as usize, value);
- }
- found = true;
- break;
- }
- }
- if found {
- Ok((x.len() as i64).into())
- } else {
- Ok((-1).into())
- }
- }
- _ => Err(Error::WrongType),
- },
- || Ok(0.into()),
- )
- }
- pub async fn llen(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::List(x) => Ok((x.read().len() as i64).into()),
- _ => Err(Error::WrongType),
- },
- || Ok(0.into()),
- )
- }
- pub async fn lmove(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- let source_is_left = if check_arg!(args, 3, "LEFT") {
- true
- } else if check_arg!(args, 3, "RIGHT") {
- false
- } else {
- return Err(Error::Syntax);
- };
- let target_is_left = if check_arg!(args, 4, "LEFT") {
- true
- } else if check_arg!(args, 4, "RIGHT") {
- false
- } else {
- return Err(Error::Syntax);
- };
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::List(source) => conn.db().get_map_or(
- &args[2],
- |v| match v {
- Value::List(target) => {
- let element = if source_is_left {
- source.write().pop_front()
- } else {
- source.write().pop_back()
- };
- if let Some(element) = element {
- let ret = element.clone_value();
- if target_is_left {
- target.write().push_front(element);
- } else {
- target.write().push_back(element);
- }
- Ok(ret)
- } else {
- Ok(Value::Null)
- }
- }
- _ => Err(Error::WrongType),
- },
- || {
- let element = if source_is_left {
- source.write().pop_front()
- } else {
- source.write().pop_back()
- };
- if let Some(element) = element {
- let ret = element.clone_value();
- let mut h = VecDeque::new();
- h.push_front(element);
- conn.db().set(&args[2], h.into(), None);
- Ok(ret)
- } else {
- Ok(Value::Null)
- }
- },
- ),
- _ => Err(Error::WrongType),
- },
- || Ok(Value::Null),
- )
- }
- pub async fn lpop(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- let count = if args.len() > 2 {
- bytes_to_number(&args[2])?
- } else {
- 0
- };
- remove_element(conn, &args[1], count, true)
- }
- pub async fn lpos(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- let mut index = 3;
- let element = checksum::Ref::new(&args[2]);
- let rank = if check_arg!(args, index, "RANK") {
- index += 2;
- Some(bytes_to_number::<usize>(&args[index - 1])?)
- } else {
- None
- };
- let count = if check_arg!(args, index, "COUNT") {
- index += 2;
- Some(bytes_to_number::<usize>(&args[index - 1])?)
- } else {
- None
- };
- let max_len = if check_arg!(args, index, "MAXLEN") {
- index += 2;
- bytes_to_number::<i64>(&args[index - 1])?
- } else {
- -1
- };
- if index != args.len() {
- return Err(Error::Syntax);
- }
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::List(x) => {
- let x = x.read();
- let mut ret: Vec<Value> = vec![];
- for (i, val) in x.iter().enumerate() {
- if *val == element {
- // Match!
- if let Some(count) = count {
- ret.push((i as i64).into());
- if ret.len() > count {
- return Ok(ret.into());
- }
- } else if let Some(rank) = rank {
- ret.push((i as i64).into());
- if ret.len() == rank {
- return Ok(ret[rank - 1].clone());
- }
- } else {
- // return first match!
- return Ok((i as i64).into());
- }
- }
- if (i as i64) == max_len {
- break;
- }
- }
- if count.is_some() {
- Ok(ret.into())
- } else {
- Ok(Value::Null)
- }
- }
- _ => Err(Error::WrongType),
- },
- || {
- Ok(if count.is_some() {
- Value::Array(vec![])
- } else {
- Value::Null
- })
- },
- )
- }
- pub async fn lpush(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- let is_push_x = check_arg!(args, 0, "LPUSHX");
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::List(x) => {
- let mut x = x.write();
- for val in args.iter().skip(2) {
- x.push_front(checksum::Value::new(val.clone()));
- }
- Ok((x.len() as i64).into())
- }
- _ => Err(Error::WrongType),
- },
- || {
- if is_push_x {
- return Ok(0.into());
- }
- let mut h = VecDeque::new();
- for val in args.iter().skip(2) {
- h.push_front(checksum::Value::new(val.clone()));
- }
- let len = h.len() as i64;
- conn.db().set(&args[1], h.into(), None);
- Ok(len.into())
- },
- )
- }
- pub async fn lrange(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::List(x) => {
- let mut start: i64 = bytes_to_number(&args[2])?;
- let mut end: i64 = bytes_to_number(&args[3])?;
- let mut ret = vec![];
- let x = x.read();
- if start < 0 {
- start += x.len() as i64;
- }
- if end < 0 {
- end += x.len() as i64;
- }
- for (i, val) in x.iter().enumerate() {
- if i >= start as usize && i <= end as usize {
- ret.push(val.clone_value());
- }
- }
- Ok(ret.into())
- }
- _ => Err(Error::WrongType),
- },
- || Ok(Value::Array(vec![])),
- )
- }
- pub async fn lrem(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::List(x) => {
- let element = checksum::Ref::new(&args[3]);
- let limit: i64 = bytes_to_number(&args[2])?;
- let mut x = x.write();
- let (is_reverse, limit) = if limit < 0 {
- (true, -limit)
- } else {
- (false, limit)
- };
- let mut keep = vec![true; x.len()];
- let mut removed = 0;
- let len = x.len();
- for i in 0..len {
- let i = if is_reverse { len - 1 - i } else { i };
- if let Some(value) = x.get(i) {
- if *value == element {
- keep[i] = false;
- removed += 1;
- if removed == limit {
- break;
- }
- }
- }
- }
- let mut i = 0;
- x.retain(|_| {
- i += 1;
- keep[i - 1]
- });
- Ok(removed.into())
- }
- _ => Err(Error::WrongType),
- },
- || Ok(0.into()),
- )
- }
- pub async fn lset(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::List(x) => {
- let mut index: i64 = bytes_to_number(&args[2])?;
- let mut x = x.write();
- if index < 0 {
- index += x.len() as i64;
- }
- if let Some(x) = x.get_mut(index as usize) {
- *x = checksum::Value::new(args[3].clone());
- Ok(Value::OK)
- } else {
- Err(Error::OutOfRange)
- }
- }
- _ => Err(Error::WrongType),
- },
- || Err(Error::NotFound),
- )
- }
- pub async fn ltrim(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::List(x) => {
- let mut start: i64 = bytes_to_number(&args[2])?;
- let mut end: i64 = bytes_to_number(&args[3])?;
- let mut x = x.write();
- if start < 0 {
- start += x.len() as i64;
- }
- if end < 0 {
- end += x.len() as i64;
- }
- let mut i = 0;
- x.retain(|_| {
- let retain = i >= start && i <= end;
- i += 1;
- retain
- });
- Ok(Value::OK)
- }
- _ => Err(Error::WrongType),
- },
- || Ok(Value::OK),
- )
- }
- pub async fn rpop(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- let count = if args.len() > 2 {
- bytes_to_number(&args[2])?
- } else {
- 0
- };
- remove_element(conn, &args[1], count, false)
- }
- pub async fn rpoplpush(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- lmove(
- conn,
- &[
- "lmove".into(),
- args[1].clone(),
- args[2].clone(),
- "RIGHT".into(),
- "LEFT".into(),
- ],
- )
- .await
- }
- pub async fn rpush(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- let is_push_x = check_arg!(args, 0, "RPUSHX");
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::List(x) => {
- let mut x = x.write();
- for val in args.iter().skip(2) {
- x.push_back(checksum::Value::new(val.clone()));
- }
- Ok((x.len() as i64).into())
- }
- _ => Err(Error::WrongType),
- },
- || {
- if is_push_x {
- return Ok(0.into());
- }
- let mut h = VecDeque::new();
- for val in args.iter().skip(2) {
- h.push_back(checksum::Value::new(val.clone()));
- }
- let len = h.len() as i64;
- conn.db().set(&args[1], h.into(), None);
- Ok(len.into())
- },
- )
- }
- #[cfg(test)]
- mod test {
- use crate::{
- cmd::test::{create_connection, run_command},
- error::Error,
- value::Value,
- };
- use tokio::time::{sleep, Duration, Instant};
- #[tokio::test]
- async fn blpop_no_waiting() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["lpush", "foo", "1", "2", "3", "4", "5"]).await,
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("foo".into()),
- Value::Blob("5".into()),
- ])),
- run_command(&c, &["blpop", "foo", "1"]).await
- );
- }
- #[tokio::test]
- async fn blpop_timeout() {
- let c = create_connection();
- let x = Instant::now();
- assert_eq!(
- Ok(Value::Null),
- run_command(&c, &["blpop", "foobar", "1"]).await
- );
- assert!(Instant::now() - x > Duration::from_millis(1000));
- }
- #[tokio::test]
- async fn blpop_wait_insert() {
- let c = create_connection();
- let x = Instant::now();
- // Query command that will block connection until some data is inserted
- // to foobar, foo, bar or the 5 seconds timeout happens.
- //
- // We are issuing the command, sleeping a little bit then adding data to
- // foobar, before actually waiting on the result.
- let waiting = run_command(&c, &["blpop", "foobar", "foo", "bar", "5"]);
- // Sleep 1 second before inserting new data
- sleep(Duration::from_millis(1000)).await;
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["lpush", "foo", "1", "2", "3", "4", "5"]).await,
- );
- // Read the output of the first blpop command now.
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("foo".into()),
- Value::Blob("5".into()),
- ])),
- waiting.await
- );
- assert!(Instant::now() - x > Duration::from_millis(1000));
- assert!(Instant::now() - x < Duration::from_millis(5000));
- }
- #[tokio::test]
- async fn lrem_1() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(
- &c,
- &["rpush", "mylist", "hello", "hello", "world", "hello", "hello"]
- )
- .await
- );
- assert_eq!(
- Ok(Value::Integer(3)),
- run_command(&c, &["lrem", "mylist", "3", "hello"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("world".into()),
- Value::Blob("hello".into()),
- ])),
- run_command(&c, &["lrange", "mylist", "0", "-1"]).await
- );
- }
- #[tokio::test]
- async fn lrem_2() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(
- &c,
- &["rpush", "mylist", "hello", "hello", "world", "hello", "hello"]
- )
- .await
- );
- assert_eq!(
- Ok(Value::Integer(2)),
- run_command(&c, &["lrem", "mylist", "-2", "hello"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("hello".into()),
- Value::Blob("hello".into()),
- Value::Blob("world".into()),
- ])),
- run_command(&c, &["lrange", "mylist", "0", "-1"]).await
- );
- assert_eq!(
- Ok(Value::Integer(1)),
- run_command(&c, &["lrem", "mylist", "1", "hello"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("hello".into()),
- Value::Blob("world".into()),
- ])),
- run_command(&c, &["lrange", "mylist", "0", "-1"]).await
- );
- }
- #[tokio::test]
- async fn lrem_3() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(
- &c,
- &["rpush", "mylist", "hello", "hello", "world", "hello", "hello"]
- )
- .await
- );
- assert_eq!(
- Ok(Value::Integer(4)),
- run_command(&c, &["lrem", "mylist", "-100", "hello"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![Value::Blob("world".into()),])),
- run_command(&c, &["lrange", "mylist", "0", "-1"]).await
- );
- }
- #[tokio::test]
- async fn lrem_4() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(
- &c,
- &["rpush", "mylist", "hello", "hello", "world", "hello", "hello"]
- )
- .await
- );
- assert_eq!(
- Ok(Value::Integer(4)),
- run_command(&c, &["lrem", "mylist", "100", "hello"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![Value::Blob("world".into()),])),
- run_command(&c, &["lrange", "mylist", "0", "-1"]).await
- );
- }
- #[tokio::test]
- async fn brpop_no_waiting() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await,
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("foo".into()),
- Value::Blob("5".into()),
- ])),
- run_command(&c, &["brpop", "foo", "1"]).await
- );
- }
- #[tokio::test]
- async fn brpop_timeout() {
- let c = create_connection();
- let x = Instant::now();
- assert_eq!(
- Ok(Value::Null),
- run_command(&c, &["brpop", "foobar", "1"]).await
- );
- assert!(Instant::now() - x > Duration::from_millis(1000));
- }
- #[tokio::test]
- async fn brpop_wait_insert() {
- let c = create_connection();
- let x = Instant::now();
- // Query command that will block connection until some data is inserted
- // to foobar, foo, bar or the 5 seconds timeout happens.
- //
- // We are issuing the command, sleeping a little bit then adding data to
- // foobar, before actually waiting on the result.
- let waiting = run_command(&c, &["brpop", "foobar", "foo", "bar", "5"]);
- // Sleep 1 second before inserting new data
- sleep(Duration::from_millis(1000)).await;
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await,
- );
- // Read the output of the first blpop command now.
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("foo".into()),
- Value::Blob("5".into()),
- ])),
- waiting.await
- );
- assert!(Instant::now() - x > Duration::from_millis(1000));
- assert!(Instant::now() - x < Duration::from_millis(5000));
- }
- #[tokio::test]
- async fn lindex() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["lpush", "foo", "1", "2", "3", "4", "5"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("5".into()),
- Value::Blob("4".into()),
- Value::Blob("3".into()),
- Value::Blob("2".into()),
- Value::Blob("1".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await
- );
- assert_eq!(
- Ok(Value::Blob("5".into())),
- run_command(&c, &["lindex", "foo", "0"]).await
- );
- assert_eq!(
- Ok(Value::Blob("1".into())),
- run_command(&c, &["lindex", "foo", "-1"]).await
- );
- assert_eq!(
- Ok(Value::Null),
- run_command(&c, &["lindex", "foo", "-100"]).await
- );
- assert_eq!(
- Ok(Value::Null),
- run_command(&c, &["lindex", "foo", "100"]).await
- );
- }
- #[tokio::test]
- async fn linsert_syntax_err() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(2)),
- run_command(&c, &["rpush", "foo", "hello", "world"]).await
- );
- assert_eq!(
- Err(Error::Syntax),
- run_command(&c, &["linsert", "foo", "beforex", "world", "there"]).await
- );
- }
- #[tokio::test]
- async fn linsert_before() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(2)),
- run_command(&c, &["rpush", "foo", "hello", "world"]).await
- );
- assert_eq!(
- Ok(Value::Integer(3)),
- run_command(&c, &["linsert", "foo", "before", "world", "there"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("hello".into()),
- Value::Blob("there".into()),
- Value::Blob("world".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await,
- );
- }
- #[tokio::test]
- async fn linsert_after() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(2)),
- run_command(&c, &["rpush", "foo", "hello", "world"]).await
- );
- assert_eq!(
- Ok(Value::Integer(3)),
- run_command(&c, &["linsert", "foo", "after", "world", "there"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("hello".into()),
- Value::Blob("world".into()),
- Value::Blob("there".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await,
- );
- }
- #[tokio::test]
- async fn linsert_before_after() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(2)),
- run_command(&c, &["rpush", "foo", "hello", "world"]).await
- );
- assert_eq!(
- Ok(Value::Integer(3)),
- run_command(&c, &["linsert", "foo", "after", "world", "there1"]).await
- );
- assert_eq!(
- Ok(Value::Integer(4)),
- run_command(&c, &["linsert", "foo", "before", "world", "there2"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("hello".into()),
- Value::Blob("there2".into()),
- Value::Blob("world".into()),
- Value::Blob("there1".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await,
- );
- }
- #[tokio::test]
- async fn linsert_not_found() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(2)),
- run_command(&c, &["rpush", "foo", "hello", "world"]).await
- );
- assert_eq!(
- Ok(Value::Integer(-1)),
- run_command(&c, &["linsert", "foo", "after", "worldx", "there"]).await
- );
- assert_eq!(
- Ok(Value::Integer(-1)),
- run_command(&c, &["linsert", "foo", "before", "worldx", "there"]).await
- );
- }
- #[tokio::test]
- async fn llen() {
- let c = create_connection();
- assert_eq!(
- run_command(&c, &["lpush", "foo", "1", "2", "3", "4", "5"]).await,
- run_command(&c, &["llen", "foo"]).await
- );
- assert_eq!(
- Ok(Value::Integer(0)),
- run_command(&c, &["llen", "foobar"]).await
- );
- }
- #[tokio::test]
- async fn lmove_1() {
- let c = create_connection();
- assert_eq!(
- run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await,
- run_command(&c, &["llen", "foo"]).await
- );
- assert_eq!(
- Ok(Value::Blob("1".into())),
- run_command(&c, &["lmove", "foo", "bar", "left", "left"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![Value::Blob("1".into()),])),
- run_command(&c, &["lrange", "bar", "0", "-1"]).await
- );
- assert_eq!(
- Ok(Value::Blob("5".into())),
- run_command(&c, &["lmove", "foo", "bar", "right", "left"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("5".into()),
- Value::Blob("1".into()),
- ])),
- run_command(&c, &["lrange", "bar", "0", "-1"]).await
- );
- }
- #[tokio::test]
- async fn lpop() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["lpush", "foo", "1", "2", "3", "4", "5"]).await,
- );
- assert_eq!(
- Ok(Value::Blob("5".into())),
- run_command(&c, &["lpop", "foo"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![Value::Blob("4".into())])),
- run_command(&c, &["lpop", "foo", "1"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("3".into()),
- Value::Blob("2".into()),
- Value::Blob("1".into()),
- ])),
- run_command(&c, &["lpop", "foo", "55"]).await
- );
- assert_eq!(
- Ok(Value::Null),
- run_command(&c, &["lpop", "foo", "55"]).await
- );
- assert_eq!(Ok(Value::Null), run_command(&c, &["lpop", "foo"]).await);
- assert_eq!(
- Ok(Value::Integer(0)),
- run_command(&c, &["llen", "foobar"]).await
- );
- }
- #[tokio::test]
- async fn lpos_single_match() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(11)),
- run_command(
- &c,
- &["RPUSH", "mylist", "a", "b", "c", "d", "1", "2", "3", "4", "3", "3", "3"]
- )
- .await
- );
- assert_eq!(
- Ok(Value::Integer(6)),
- run_command(&c, &["lpos", "mylist", "3"]).await
- );
- }
- #[tokio::test]
- async fn lpos_single_skip() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(11)),
- run_command(
- &c,
- &["RPUSH", "mylist", "a", "b", "c", "d", "1", "2", "3", "4", "3", "3", "3"]
- )
- .await
- );
- assert_eq!(
- Ok(Value::Integer(8)),
- run_command(&c, &["lpos", "mylist", "3", "rank", "2"]).await
- );
- }
- #[tokio::test]
- async fn lpos_single_skip_max_len() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(11)),
- run_command(
- &c,
- &["RPUSH", "mylist", "a", "b", "c", "d", "1", "2", "3", "4", "3", "3", "3"]
- )
- .await
- );
- assert_eq!(
- Ok(Value::Null),
- run_command(&c, &["lpos", "mylist", "3", "rank", "2", "maxlen", "7"]).await
- );
- }
- #[tokio::test]
- async fn lpos_not_found() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Array(vec![])),
- run_command(&c, &["lpos", "mylist", "3", "count", "5", "maxlen", "9"]).await
- );
- assert_eq!(
- Ok(Value::Null),
- run_command(&c, &["lpos", "mylist", "3"]).await
- );
- }
- #[tokio::test]
- async fn lpos() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(11)),
- run_command(
- &c,
- &["RPUSH", "mylist", "a", "b", "c", "d", "1", "2", "3", "4", "3", "3", "3"]
- )
- .await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Integer(6),
- Value::Integer(8),
- Value::Integer(9),
- ])),
- run_command(&c, &["lpos", "mylist", "3", "count", "5", "maxlen", "9"]).await
- );
- }
- #[tokio::test]
- async fn lpush() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["lpush", "foo", "1", "2", "3", "4", "5"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("5".into()),
- Value::Blob("4".into()),
- Value::Blob("3".into()),
- Value::Blob("2".into()),
- Value::Blob("1".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await
- );
- assert_eq!(
- Ok(Value::Integer(10)),
- run_command(&c, &["lpush", "foo", "6", "7", "8", "9", "10"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("10".into()),
- Value::Blob("9".into()),
- Value::Blob("8".into()),
- Value::Blob("7".into()),
- Value::Blob("6".into()),
- Value::Blob("5".into()),
- Value::Blob("4".into()),
- Value::Blob("3".into()),
- Value::Blob("2".into()),
- Value::Blob("1".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await
- );
- }
- #[tokio::test]
- async fn lpush_simple() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(1)),
- run_command(&c, &["lpush", "foo", "world"]).await
- );
- assert_eq!(
- Ok(Value::Integer(2)),
- run_command(&c, &["lpush", "foo", "hello"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("hello".into()),
- Value::Blob("world".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await
- );
- }
- #[tokio::test]
- async fn lset() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await
- );
- assert_eq!(
- Ok(Value::OK),
- run_command(&c, &["lset", "foo", "-1", "6"]).await,
- );
- assert_eq!(
- Ok(Value::OK),
- run_command(&c, &["lset", "foo", "-2", "7"]).await,
- );
- assert_eq!(
- Ok(Value::OK),
- run_command(&c, &["lset", "foo", "0", "8"]).await,
- );
- assert_eq!(
- Err(Error::OutOfRange),
- run_command(&c, &["lset", "foo", "55", "8"]).await,
- );
- assert_eq!(
- Err(Error::OutOfRange),
- run_command(&c, &["lset", "foo", "-55", "8"]).await,
- );
- assert_eq!(
- Err(Error::NotFound),
- run_command(&c, &["lset", "key_not_exists", "-55", "8"]).await,
- );
- assert_eq!(
- Ok(Value::Blob("6".into())),
- run_command(&c, &["rpop", "foo"]).await
- );
- assert_eq!(
- Ok(Value::Blob("7".into())),
- run_command(&c, &["rpop", "foo"]).await
- );
- assert_eq!(
- Ok(Value::Blob("8".into())),
- run_command(&c, &["lpop", "foo"]).await
- );
- }
- #[tokio::test]
- async fn ltrim() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await
- );
- assert_eq!(
- Ok(Value::OK),
- run_command(&c, &["ltrim", "foo", "1", "-2"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("2".into()),
- Value::Blob("3".into()),
- Value::Blob("4".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await
- );
- }
- #[tokio::test]
- async fn rpop() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await
- );
- assert_eq!(
- Ok(Value::Blob("5".into())),
- run_command(&c, &["rpop", "foo"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![Value::Blob("4".into())])),
- run_command(&c, &["rpop", "foo", "1"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("3".into()),
- Value::Blob("2".into()),
- Value::Blob("1".into()),
- ])),
- run_command(&c, &["rpop", "foo", "55"]).await
- );
- assert_eq!(
- Ok(Value::Null),
- run_command(&c, &["rpop", "foo", "55"]).await
- );
- assert_eq!(Ok(Value::Null), run_command(&c, &["rpop", "foo"]).await);
- assert_eq!(
- Ok(Value::Integer(0)),
- run_command(&c, &["llen", "foobar"]).await
- );
- }
- #[tokio::test]
- async fn rpush_simple() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(1)),
- run_command(&c, &["rpush", "foo", "world"]).await
- );
- assert_eq!(
- Ok(Value::Integer(2)),
- run_command(&c, &["rpush", "foo", "hello"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("world".into()),
- Value::Blob("hello".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await
- );
- }
- #[tokio::test]
- async fn lrange() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("1".into()),
- Value::Blob("2".into()),
- Value::Blob("3".into()),
- Value::Blob("4".into()),
- Value::Blob("5".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("1".into()),
- Value::Blob("2".into()),
- Value::Blob("3".into()),
- Value::Blob("4".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-2"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("4".into()),
- Value::Blob("5".into()),
- ])),
- run_command(&c, &["lrange", "foo", "-2", "-1"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![Value::Blob("3".into()),])),
- run_command(&c, &["lrange", "foo", "-3", "-3"]).await
- );
- }
- #[tokio::test]
- async fn rpush() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("1".into()),
- Value::Blob("2".into()),
- Value::Blob("3".into()),
- Value::Blob("4".into()),
- Value::Blob("5".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await
- );
- assert_eq!(
- Ok(Value::Integer(10)),
- run_command(&c, &["rpush", "foo", "6", "7", "8", "9", "10"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("1".into()),
- Value::Blob("2".into()),
- Value::Blob("3".into()),
- Value::Blob("4".into()),
- Value::Blob("5".into()),
- Value::Blob("6".into()),
- Value::Blob("7".into()),
- Value::Blob("8".into()),
- Value::Blob("9".into()),
- Value::Blob("10".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await
- );
- }
- #[tokio::test]
- async fn rpushx() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["rpush", "foo", "1", "2", "3", "4", "5"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("1".into()),
- Value::Blob("2".into()),
- Value::Blob("3".into()),
- Value::Blob("4".into()),
- Value::Blob("5".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await
- );
- assert_eq!(
- Ok(Value::Integer(10)),
- run_command(&c, &["rpushx", "foo", "6", "7", "8", "9", "10"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Blob("1".into()),
- Value::Blob("2".into()),
- Value::Blob("3".into()),
- Value::Blob("4".into()),
- Value::Blob("5".into()),
- Value::Blob("6".into()),
- Value::Blob("7".into()),
- Value::Blob("8".into()),
- Value::Blob("9".into()),
- Value::Blob("10".into()),
- ])),
- run_command(&c, &["lrange", "foo", "0", "-1"]).await
- );
- assert_eq!(
- Ok(Value::Integer(0)),
- run_command(&c, &["rpushx", "foobar", "6", "7", "8", "9", "10"]).await
- );
- }
- }
|