1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*mod utils;
use futures::StreamExt;
use redis_pool::pool::RedisPool;
use testcontainers::clients::{self};
use utils::TestRedis;
#[tokio::test]
pub async fn test_pubsub() {
let docker = clients::Cli::default();
let redis = TestRedis::new(&docker);
let pool = RedisPool::from(redis.client());
let mut rx = pool.aquire().await.unwrap().into_pubsub();
let _ = rx.subscribe("test_channel").await;
let mut tx = pool.aquire().await.unwrap();
let _: () = redis::cmd("PUBLISH")
.arg("test_channel")
.arg("test")
.query_async(&mut tx)
.await
.unwrap();
assert_eq!(
"test",
rx.on_message()
.next()
.await
.unwrap()
.get_payload::<String>()
.unwrap()
);
}
#[tokio::test]
pub async fn test_monitor() {
let docker = clients::Cli::default();
let redis = TestRedis::new(&docker);
let pool = RedisPool::from(redis.client());
let mut rx = pool
.factory()
.get_async_connection()
.await
.unwrap()
.into_monitor();
let _ = rx.monitor().await;
let mut tx = pool.aquire().await.unwrap();
let _: () = redis::cmd("PING")
.arg("test")
.query_async(&mut tx)
.await
.unwrap();
let mut i = 0;
let mut was_ping = false;
while let Some(string) = rx.on_message::<String>().next().await {
let monitor = string.split(' ').collect::<Vec<_>>();
if "\"PING\"" == monitor[3] {
was_ping = true;
break;
}
let _: () = redis::cmd("PING")
.arg("test")
.query_async(&mut tx)
.await
.unwrap();
i += 1;
if i > 3 {
break;
}
}
assert!(was_ping);
}*/