-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcount_min_sktech_commands.rs
134 lines (103 loc) · 3.79 KB
/
count_min_sktech_commands.rs
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
use crate::{
commands::{CountMinSketchCommands, FlushingMode, ServerCommands},
tests::get_redis_stack_test_client,
Result,
};
use serial_test::serial;
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn cms_incrby() -> Result<()> {
let client = get_redis_stack_test_client().await?;
client.flushall(FlushingMode::Sync).await?;
let result: Result<Vec<usize>> = client.cms_incrby("key", [("item1", 1), ("item2", 2)]).await;
assert!(result.is_err()); // key does not exist
client.cms_initbydim("key", 2000, 5).await?;
let result: Vec<usize> = client
.cms_incrby("key", [("item1", 1), ("item2", 2)])
.await?;
assert_eq!(vec![1, 2], result);
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn cms_info() -> Result<()> {
let client = get_redis_stack_test_client().await?;
client.flushall(FlushingMode::Sync).await?;
client.cms_initbydim("key", 2000, 5).await?;
let result: Vec<usize> = client
.cms_incrby("key", [("item1", 1), ("item2", 2)])
.await?;
assert_eq!(vec![1, 2], result);
let info = client.cms_info("key").await?;
assert_eq!(2000, info.width);
assert_eq!(5, info.depth);
assert_eq!(3, info.total_count);
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn cms_initbydim() -> Result<()> {
let client = get_redis_stack_test_client().await?;
client.flushall(FlushingMode::Sync).await?;
client.cms_initbydim("key", 2000, 5).await?;
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn cms_initbyprob() -> Result<()> {
let client = get_redis_stack_test_client().await?;
client.flushall(FlushingMode::Sync).await?;
client.cms_initbyprob("key", 0.001, 0.01).await?;
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn cms_merge() -> Result<()> {
let client = get_redis_stack_test_client().await?;
client.flushall(FlushingMode::Sync).await?;
client.cms_initbydim("key1", 2000, 5).await?;
let result: Vec<usize> = client
.cms_incrby("key1", [("item1", 1), ("item2", 2)])
.await?;
assert_eq!(vec![1, 2], result);
client.cms_initbydim("key2", 2000, 5).await?;
let result: Vec<usize> = client
.cms_incrby("key2", [("item1", 1), ("item2", 2)])
.await?;
assert_eq!(vec![1, 2], result);
client.cms_initbydim("key3", 2000, 5).await?;
client
.cms_merge("key3", ["key1", "key2"], Some([1, 2]))
.await?;
let info = client.cms_info("key3").await?;
assert_eq!(9, info.total_count);
client.cms_initbydim("key4", 2000, 5).await?;
client
.cms_merge("key4", ["key1", "key2"], Option::<usize>::None)
.await?;
let info = client.cms_info("key4").await?;
assert_eq!(6, info.total_count);
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn cms_query() -> Result<()> {
let client = get_redis_stack_test_client().await?;
client.flushall(FlushingMode::Sync).await?;
client.cms_initbydim("key1", 2000, 5).await?;
let _result: Vec<usize> = client
.cms_incrby("key1", [("item1", 1), ("item2", 2)])
.await?;
let _result: Vec<usize> = client
.cms_incrby("key1", [("item1", 2), ("item2", 1)])
.await?;
let result: Vec<usize> = client.cms_query("key1", ["item1", "item2"]).await?;
assert_eq!(vec![3, 3], result);
Ok(())
}