mod.rs 996 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. pub mod client;
  2. pub mod hash;
  3. pub mod key;
  4. pub mod list;
  5. pub mod set;
  6. pub mod string;
  7. #[cfg(test)]
  8. mod test {
  9. use crate::{
  10. connection::{Connection, Connections},
  11. db::Db,
  12. dispatcher::Dispatcher,
  13. error::Error,
  14. value::Value,
  15. };
  16. use bytes::Bytes;
  17. use std::{
  18. net::{IpAddr, Ipv4Addr, SocketAddr},
  19. ops::Deref,
  20. sync::Arc,
  21. };
  22. pub fn create_connection() -> Arc<Connection> {
  23. let all_connections = Arc::new(Connections::new());
  24. let db = Arc::new(Db::new(1000));
  25. let client = SocketAddr::new(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), 8080);
  26. all_connections.new_connection(db.clone(), client)
  27. }
  28. pub async fn run_command(conn: &Connection, cmd: &[&str]) -> Result<Value, Error> {
  29. let args: Vec<Bytes> = cmd.iter().map(|s| Bytes::from(s.to_string())).collect();
  30. let handler = Dispatcher::new(&args)?;
  31. handler.deref().execute(&conn, &args).await
  32. }
  33. }