|
@@ -11,7 +11,7 @@ use std::{
|
|
};
|
|
};
|
|
|
|
|
|
pub fn hdel(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
pub fn hdel(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
- conn.db().get_map(
|
|
|
|
|
|
+ conn.db().get_map_or(
|
|
&args[1],
|
|
&args[1],
|
|
|v| match v {
|
|
|v| match v {
|
|
Value::Hash(h) => {
|
|
Value::Hash(h) => {
|
|
@@ -33,44 +33,53 @@ pub fn hdel(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
}
|
|
}
|
|
|
|
|
|
pub fn hexists(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
pub fn hexists(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
- match conn.db().get(&args[1]) {
|
|
|
|
- Value::Hash(h) => Ok(if h.read().get(&args[2]).is_some() {
|
|
|
|
- 1_i64.into()
|
|
|
|
- } else {
|
|
|
|
- 0_i64.into()
|
|
|
|
- }),
|
|
|
|
- Value::Null => Ok(0_i64.into()),
|
|
|
|
- _ => Err(Error::WrongType),
|
|
|
|
- }
|
|
|
|
|
|
+ conn.db().get_map_or(
|
|
|
|
+ &args[1],
|
|
|
|
+ |v| match v {
|
|
|
|
+ Value::Hash(h) => Ok(if h.read().get(&args[2]).is_some() {
|
|
|
|
+ 1_i64.into()
|
|
|
|
+ } else {
|
|
|
|
+ 0_i64.into()
|
|
|
|
+ }),
|
|
|
|
+ _ => Err(Error::WrongType),
|
|
|
|
+ },
|
|
|
|
+ || Ok(0_i64.into()),
|
|
|
|
+ )
|
|
}
|
|
}
|
|
|
|
|
|
pub fn hget(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
pub fn hget(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
- match conn.db().get(&args[1]) {
|
|
|
|
- Value::Hash(h) => Ok(if let Some(v) = h.read().get(&args[2]) {
|
|
|
|
- Value::Blob(v.clone())
|
|
|
|
- } else {
|
|
|
|
- Value::Null
|
|
|
|
- }),
|
|
|
|
- Value::Null => Ok(Value::Null),
|
|
|
|
- _ => Err(Error::WrongType),
|
|
|
|
- }
|
|
|
|
|
|
+ conn.db().get_map_or(
|
|
|
|
+ &args[1],
|
|
|
|
+ |v| match v {
|
|
|
|
+ Value::Hash(h) => Ok(if let Some(v) = h.read().get(&args[2]) {
|
|
|
|
+ Value::Blob(v.clone())
|
|
|
|
+ } else {
|
|
|
|
+ Value::Null
|
|
|
|
+ }),
|
|
|
|
+ _ => Err(Error::WrongType),
|
|
|
|
+ },
|
|
|
|
+ || Ok(Value::Null),
|
|
|
|
+ )
|
|
}
|
|
}
|
|
|
|
|
|
pub fn hgetall(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
pub fn hgetall(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
- match conn.db().get(&args[1]) {
|
|
|
|
- Value::Hash(h) => {
|
|
|
|
- let mut ret = vec![];
|
|
|
|
|
|
+ conn.db().get_map_or(
|
|
|
|
+ &args[1],
|
|
|
|
+ |v| match v {
|
|
|
|
+ Value::Hash(h) => {
|
|
|
|
+ let mut ret = vec![];
|
|
|
|
|
|
- for (key, value) in h.read().iter() {
|
|
|
|
- ret.push(Value::Blob(key.clone()));
|
|
|
|
- ret.push(Value::Blob(value.clone()));
|
|
|
|
- }
|
|
|
|
|
|
+ for (key, value) in h.read().iter() {
|
|
|
|
+ ret.push(Value::Blob(key.clone()));
|
|
|
|
+ ret.push(Value::Blob(value.clone()));
|
|
|
|
+ }
|
|
|
|
|
|
- Ok(ret.into())
|
|
|
|
- }
|
|
|
|
- Value::Null => Ok(Value::Array(vec![])),
|
|
|
|
- _ => Err(Error::WrongType),
|
|
|
|
- }
|
|
|
|
|
|
+ Ok(ret.into())
|
|
|
|
+ }
|
|
|
|
+ _ => Err(Error::WrongType),
|
|
|
|
+ },
|
|
|
|
+ || Ok(Value::Array(vec![])),
|
|
|
|
+ )
|
|
}
|
|
}
|
|
|
|
|
|
pub fn hincrby<
|
|
pub fn hincrby<
|
|
@@ -79,7 +88,7 @@ pub fn hincrby<
|
|
conn: &Connection,
|
|
conn: &Connection,
|
|
args: &[Bytes],
|
|
args: &[Bytes],
|
|
) -> Result<Value, Error> {
|
|
) -> Result<Value, Error> {
|
|
- conn.db().get_map(
|
|
|
|
|
|
+ conn.db().get_map_or(
|
|
&args[1],
|
|
&args[1],
|
|
|v| match v {
|
|
|v| match v {
|
|
Value::Hash(h) => {
|
|
Value::Hash(h) => {
|
|
@@ -107,49 +116,58 @@ pub fn hincrby<
|
|
}
|
|
}
|
|
|
|
|
|
pub fn hkeys(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
pub fn hkeys(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
- match conn.db().get(&args[1]) {
|
|
|
|
- Value::Hash(h) => {
|
|
|
|
- let mut ret = vec![];
|
|
|
|
|
|
+ conn.db().get_map_or(
|
|
|
|
+ &args[1],
|
|
|
|
+ |v| match v {
|
|
|
|
+ Value::Hash(h) => {
|
|
|
|
+ let mut ret = vec![];
|
|
|
|
|
|
- for key in h.read().keys() {
|
|
|
|
- ret.push(Value::Blob(key.clone()));
|
|
|
|
- }
|
|
|
|
|
|
+ for key in h.read().keys() {
|
|
|
|
+ ret.push(Value::Blob(key.clone()));
|
|
|
|
+ }
|
|
|
|
|
|
- Ok(ret.into())
|
|
|
|
- }
|
|
|
|
- Value::Null => Ok(Value::Array(vec![])),
|
|
|
|
- _ => Err(Error::WrongType),
|
|
|
|
- }
|
|
|
|
|
|
+ Ok(ret.into())
|
|
|
|
+ }
|
|
|
|
+ _ => Err(Error::WrongType),
|
|
|
|
+ },
|
|
|
|
+ || Ok(Value::Array(vec![])),
|
|
|
|
+ )
|
|
}
|
|
}
|
|
|
|
|
|
pub fn hlen(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
pub fn hlen(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
- match conn.db().get(&args[1]) {
|
|
|
|
- Value::Hash(h) => Ok((h.read().len() as i64).into()),
|
|
|
|
- Value::Null => Ok(0_i64.into()),
|
|
|
|
- _ => Err(Error::WrongType),
|
|
|
|
- }
|
|
|
|
|
|
+ conn.db().get_map_or(
|
|
|
|
+ &args[1],
|
|
|
|
+ |v| match v {
|
|
|
|
+ Value::Hash(h) => Ok((h.read().len() as i64).into()),
|
|
|
|
+ _ => Err(Error::WrongType),
|
|
|
|
+ },
|
|
|
|
+ || Ok(0_i64.into()),
|
|
|
|
+ )
|
|
}
|
|
}
|
|
|
|
|
|
pub fn hmget(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
pub fn hmget(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
- match conn.db().get(&args[1]) {
|
|
|
|
- Value::Hash(h) => {
|
|
|
|
- let h = h.read();
|
|
|
|
-
|
|
|
|
- Ok((&args[2..])
|
|
|
|
- .iter()
|
|
|
|
- .map(|key| {
|
|
|
|
- if let Some(value) = h.get(key) {
|
|
|
|
- Value::Blob(value.clone())
|
|
|
|
- } else {
|
|
|
|
- Value::Null
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- .collect::<Vec<Value>>()
|
|
|
|
- .into())
|
|
|
|
- }
|
|
|
|
- Value::Null => Ok(Value::Array(vec![])),
|
|
|
|
- _ => Err(Error::WrongType),
|
|
|
|
- }
|
|
|
|
|
|
+ conn.db().get_map_or(
|
|
|
|
+ &args[1],
|
|
|
|
+ |v| match v {
|
|
|
|
+ Value::Hash(h) => {
|
|
|
|
+ let h = h.read();
|
|
|
|
+
|
|
|
|
+ Ok((&args[2..])
|
|
|
|
+ .iter()
|
|
|
|
+ .map(|key| {
|
|
|
|
+ if let Some(value) = h.get(key) {
|
|
|
|
+ Value::Blob(value.clone())
|
|
|
|
+ } else {
|
|
|
|
+ Value::Null
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ .collect::<Vec<Value>>()
|
|
|
|
+ .into())
|
|
|
|
+ }
|
|
|
|
+ _ => Err(Error::WrongType),
|
|
|
|
+ },
|
|
|
|
+ || Ok(Value::Array(vec![])),
|
|
|
|
+ )
|
|
}
|
|
}
|
|
|
|
|
|
pub fn hrandfield(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
pub fn hrandfield(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
@@ -174,53 +192,56 @@ pub fn hrandfield(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
(1, true, 1)
|
|
(1, true, 1)
|
|
};
|
|
};
|
|
|
|
|
|
- match conn.db().get(&args[1]) {
|
|
|
|
- Value::Hash(h) => {
|
|
|
|
- let mut ret = vec![];
|
|
|
|
- let mut i = 0;
|
|
|
|
- let mut rand_sorted = BTreeMap::new();
|
|
|
|
- let mut rng = rand::thread_rng();
|
|
|
|
- let h = h.read();
|
|
|
|
-
|
|
|
|
- for _ in 0..repeat {
|
|
|
|
- for (key, value) in h.iter() {
|
|
|
|
- let rand = rng.gen::<u64>();
|
|
|
|
- rand_sorted.insert((rand, i), (key, value));
|
|
|
|
- i += 1;
|
|
|
|
|
|
+ conn.db().get_map_or(
|
|
|
|
+ &args[1],
|
|
|
|
+ |v| match v {
|
|
|
|
+ Value::Hash(h) => {
|
|
|
|
+ let mut ret = vec![];
|
|
|
|
+ let mut i = 0;
|
|
|
|
+ let mut rand_sorted = BTreeMap::new();
|
|
|
|
+ let mut rng = rand::thread_rng();
|
|
|
|
+ let h = h.read();
|
|
|
|
+
|
|
|
|
+ for _ in 0..repeat {
|
|
|
|
+ for (key, value) in h.iter() {
|
|
|
|
+ let rand = rng.gen::<u64>();
|
|
|
|
+ rand_sorted.insert((rand, i), (key, value));
|
|
|
|
+ i += 1;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
|
|
- i = 0;
|
|
|
|
- for val in rand_sorted.values() {
|
|
|
|
- if single {
|
|
|
|
- return Ok(Value::Blob(val.0.clone()));
|
|
|
|
- }
|
|
|
|
|
|
+ i = 0;
|
|
|
|
+ for val in rand_sorted.values() {
|
|
|
|
+ if single {
|
|
|
|
+ return Ok(Value::Blob(val.0.clone()));
|
|
|
|
+ }
|
|
|
|
|
|
- if i == count {
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
|
|
+ if i == count {
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
|
|
- ret.push(Value::Blob(val.0.clone()));
|
|
|
|
|
|
+ ret.push(Value::Blob(val.0.clone()));
|
|
|
|
+
|
|
|
|
+ if with_values {
|
|
|
|
+ ret.push(Value::Blob(val.1.clone()));
|
|
|
|
+ }
|
|
|
|
|
|
- if with_values {
|
|
|
|
- ret.push(Value::Blob(val.1.clone()));
|
|
|
|
|
|
+ i += 1;
|
|
}
|
|
}
|
|
|
|
|
|
- i += 1;
|
|
|
|
|
|
+ Ok(ret.into())
|
|
}
|
|
}
|
|
-
|
|
|
|
- Ok(ret.into())
|
|
|
|
- }
|
|
|
|
- Value::Null => Ok(Value::Array(vec![])),
|
|
|
|
- _ => Err(Error::WrongType),
|
|
|
|
- }
|
|
|
|
|
|
+ _ => Err(Error::WrongType),
|
|
|
|
+ },
|
|
|
|
+ || Ok(Value::Array(vec![])),
|
|
|
|
+ )
|
|
}
|
|
}
|
|
|
|
|
|
pub fn hset(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
pub fn hset(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
if args.len() % 2 == 1 {
|
|
if args.len() % 2 == 1 {
|
|
return Err(Error::InvalidArgsCount("hset".to_owned()));
|
|
return Err(Error::InvalidArgsCount("hset".to_owned()));
|
|
}
|
|
}
|
|
- conn.db().get_map(
|
|
|
|
|
|
+ conn.db().get_map_or(
|
|
&args[1],
|
|
&args[1],
|
|
|v| match v {
|
|
|v| match v {
|
|
Value::Hash(h) => {
|
|
Value::Hash(h) => {
|
|
@@ -249,7 +270,7 @@ pub fn hset(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
}
|
|
}
|
|
|
|
|
|
pub fn hsetnx(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
pub fn hsetnx(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
- conn.db().get_map(
|
|
|
|
|
|
+ conn.db().get_map_or(
|
|
&args[1],
|
|
&args[1],
|
|
|v| match v {
|
|
|v| match v {
|
|
Value::Hash(h) => {
|
|
Value::Hash(h) => {
|
|
@@ -278,29 +299,176 @@ pub fn hsetnx(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
}
|
|
}
|
|
|
|
|
|
pub fn hstrlen(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
pub fn hstrlen(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
- match conn.db().get(&args[1]) {
|
|
|
|
- Value::Hash(h) => Ok(if let Some(v) = h.read().get(&args[2]) {
|
|
|
|
- (v.len() as i64).into()
|
|
|
|
- } else {
|
|
|
|
- 0_i64.into()
|
|
|
|
- }),
|
|
|
|
- Value::Null => Ok(0_i64.into()),
|
|
|
|
- _ => Err(Error::WrongType),
|
|
|
|
- }
|
|
|
|
|
|
+ conn.db().get_map_or(
|
|
|
|
+ &args[1],
|
|
|
|
+ |v| match v {
|
|
|
|
+ Value::Hash(h) => Ok(if let Some(v) = h.read().get(&args[2]) {
|
|
|
|
+ (v.len() as i64).into()
|
|
|
|
+ } else {
|
|
|
|
+ 0_i64.into()
|
|
|
|
+ }),
|
|
|
|
+ _ => Err(Error::WrongType),
|
|
|
|
+ },
|
|
|
|
+ || Ok(0_i64.into()),
|
|
|
|
+ )
|
|
}
|
|
}
|
|
|
|
|
|
pub fn hvals(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
pub fn hvals(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
- match conn.db().get(&args[1]) {
|
|
|
|
- Value::Hash(h) => {
|
|
|
|
- let mut ret = vec![];
|
|
|
|
|
|
+ conn.db().get_map_or(
|
|
|
|
+ &args[1],
|
|
|
|
+ |v| match v {
|
|
|
|
+ Value::Hash(h) => {
|
|
|
|
+ let mut ret = vec![];
|
|
|
|
+
|
|
|
|
+ for value in h.read().values() {
|
|
|
|
+ ret.push(Value::Blob(value.clone()));
|
|
|
|
+ }
|
|
|
|
|
|
- for value in h.read().values() {
|
|
|
|
- ret.push(Value::Blob(value.clone()));
|
|
|
|
|
|
+ Ok(ret.into())
|
|
}
|
|
}
|
|
|
|
+ _ => Err(Error::WrongType),
|
|
|
|
+ },
|
|
|
|
+ || Ok(Value::Array(vec![])),
|
|
|
|
+ )
|
|
|
|
+}
|
|
|
|
|
|
- Ok(ret.into())
|
|
|
|
- }
|
|
|
|
- Value::Null => Ok(Value::Array(vec![])),
|
|
|
|
- _ => Err(Error::WrongType),
|
|
|
|
|
|
+#[cfg(test)]
|
|
|
|
+mod test {
|
|
|
|
+ use crate::{
|
|
|
|
+ cmd::test::{create_connection, run_command},
|
|
|
|
+ value::Value,
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+ #[test]
|
|
|
|
+ fn hget() {
|
|
|
|
+ let c = create_connection();
|
|
|
|
+ let r = run_command(&c, &["hset", "foo", "f1", "1", "f2", "2", "f3", "3"]);
|
|
|
|
+
|
|
|
|
+ assert_eq!(Ok(Value::Integer(3)), r);
|
|
|
|
+
|
|
|
|
+ let r = run_command(&c, &["hget", "foo", "f1"]);
|
|
|
|
+ assert_eq!(Ok(Value::Blob("1".into())), r);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ #[test]
|
|
|
|
+ fn hgetall() {
|
|
|
|
+ let c = create_connection();
|
|
|
|
+ let r = run_command(&c, &["hset", "foo", "f1", "1", "f2", "2", "f3", "3"]);
|
|
|
|
+
|
|
|
|
+ assert_eq!(Ok(Value::Integer(3)), r);
|
|
|
|
+
|
|
|
|
+ let r = run_command(&c, &["hgetall", "foo"]);
|
|
|
|
+ match r {
|
|
|
|
+ Ok(Value::Array(x)) => {
|
|
|
|
+ assert_eq!(6, x.len());
|
|
|
|
+ assert!(
|
|
|
|
+ x[0] == Value::Blob("f1".into())
|
|
|
|
+ || x[0] == Value::Blob("f2".into())
|
|
|
|
+ || x[0] == Value::Blob("f3".into())
|
|
|
|
+ )
|
|
|
|
+ }
|
|
|
|
+ _ => assert!(false),
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ #[test]
|
|
|
|
+ fn hrandfield() {
|
|
|
|
+ let c = create_connection();
|
|
|
|
+ let r = run_command(&c, &["hset", "foo", "f1", "1", "f2", "2", "f3", "3"]);
|
|
|
|
+
|
|
|
|
+ assert_eq!(Ok(Value::Integer(3)), r);
|
|
|
|
+
|
|
|
|
+ let r = run_command(&c, &["hrandfield", "foo"]);
|
|
|
|
+ match r {
|
|
|
|
+ Ok(Value::Blob(x)) => {
|
|
|
|
+ let x = unsafe { std::str::from_utf8_unchecked(&x) };
|
|
|
|
+ assert!(x == "f1".to_owned() || x == "f2".to_owned() || x == "f3".to_owned());
|
|
|
|
+ }
|
|
|
|
+ _ => assert!(false),
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ #[test]
|
|
|
|
+ fn hmget() {
|
|
|
|
+ let c = create_connection();
|
|
|
|
+ let r = run_command(&c, &["hset", "foo", "f1", "1", "f2", "2", "f3", "3"]);
|
|
|
|
+
|
|
|
|
+ assert_eq!(Ok(Value::Integer(3)), r);
|
|
|
|
+
|
|
|
|
+ let r = run_command(&c, &["hmget", "foo", "f1", "f2"]);
|
|
|
|
+ assert_eq!(
|
|
|
|
+ Ok(Value::Array(vec![
|
|
|
|
+ Value::Blob("1".into()),
|
|
|
|
+ Value::Blob("2".into()),
|
|
|
|
+ ])),
|
|
|
|
+ r
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ #[test]
|
|
|
|
+ fn hexists() {
|
|
|
|
+ let c = create_connection();
|
|
|
|
+ let r = run_command(&c, &["hset", "foo", "f1", "1", "f2", "2", "f3", "3"]);
|
|
|
|
+
|
|
|
|
+ assert_eq!(Ok(Value::Integer(3)), r);
|
|
|
|
+
|
|
|
|
+ assert_eq!(
|
|
|
|
+ Ok(Value::Integer(1)),
|
|
|
|
+ run_command(&c, &["hexists", "foo", "f1"])
|
|
|
|
+ );
|
|
|
|
+ assert_eq!(
|
|
|
|
+ Ok(Value::Integer(1)),
|
|
|
|
+ run_command(&c, &["hexists", "foo", "f3"])
|
|
|
|
+ );
|
|
|
|
+ assert_eq!(
|
|
|
|
+ Ok(Value::Integer(0)),
|
|
|
|
+ run_command(&c, &["hexists", "foo", "f4"])
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+ #[test]
|
|
|
|
+ fn hstrlen() {
|
|
|
|
+ let c = create_connection();
|
|
|
|
+ let r = run_command(&c, &["hset", "foo", "f1", "1", "f2", "2", "f3", "3"]);
|
|
|
|
+
|
|
|
|
+ assert_eq!(Ok(Value::Integer(3)), r);
|
|
|
|
+
|
|
|
|
+ let r = run_command(&c, &["hstrlen", "foo", "f1"]);
|
|
|
|
+ assert_eq!(Ok(Value::Integer(1)), r);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ #[test]
|
|
|
|
+ fn hlen() {
|
|
|
|
+ let c = create_connection();
|
|
|
|
+ let r = run_command(&c, &["hset", "foo", "f1", "1", "f2", "2", "f3", "3"]);
|
|
|
|
+
|
|
|
|
+ assert_eq!(Ok(Value::Integer(3)), r);
|
|
|
|
+
|
|
|
|
+ let r = run_command(&c, &["hset", "foo", "f1", "2", "f4", "2", "f5", "3"]);
|
|
|
|
+ assert_eq!(Ok(Value::Integer(2)), r);
|
|
|
|
+
|
|
|
|
+ let r = run_command(&c, &["hlen", "foo"]);
|
|
|
|
+ assert_eq!(Ok(Value::Integer(5)), r);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ #[test]
|
|
|
|
+ fn hkeys() {
|
|
|
|
+ let c = create_connection();
|
|
|
|
+ let r = run_command(&c, &["hset", "foo", "f1", "1"]);
|
|
|
|
+
|
|
|
|
+ assert_eq!(Ok(Value::Integer(1)), r);
|
|
|
|
+
|
|
|
|
+ let r = run_command(&c, &["hkeys", "foo"]);
|
|
|
|
+ assert_eq!(Ok(Value::Array(vec![Value::Blob("f1".into()),])), r);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ #[test]
|
|
|
|
+ fn hvals() {
|
|
|
|
+ let c = create_connection();
|
|
|
|
+ let r = run_command(&c, &["hset", "foo", "f1", "1"]);
|
|
|
|
+
|
|
|
|
+ assert_eq!(Ok(Value::Integer(1)), r);
|
|
|
|
+
|
|
|
|
+ let r = run_command(&c, &["hvals", "foo"]);
|
|
|
|
+ assert_eq!(Ok(Value::Array(vec![Value::Blob("1".into()),])), r);
|
|
}
|
|
}
|
|
}
|
|
}
|