-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconnection_commands.rs
466 lines (372 loc) · 13.4 KB
/
connection_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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
use crate::{
client::{BatchPreparedCommand, Client, ClientPreparedCommand},
commands::{
ClientCachingMode, ClientInfoAttribute, ClientKillOptions, ClientListOptions,
ClientPauseMode, ClientReplyMode, ClientTrackingOptions, ClientTrackingStatus,
ClientUnblockMode, ConnectionCommands, FlushingMode, GenericCommands, HelloOptions,
PingOptions, ServerCommands, StringCommands,
},
network::spawn,
resp::cmd,
sleep,
tests::{get_test_client, log_try_init},
Error, RedisError, RedisErrorKind, Result,
};
use futures_util::StreamExt;
use serial_test::serial;
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn auth() -> Result<()> {
let client = get_test_client().await?;
let result = client.auth(Some("username"), "password").await;
assert!(matches!(
result,
Err(Error::Redis(RedisError {
kind: RedisErrorKind::WrongPass,
description: _
}))
));
let result = client.auth::<&str, &str>(None, "password").await;
assert!(matches!(
result,
Err(Error::Redis(RedisError {
kind: RedisErrorKind::Err,
description: _
}))
));
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn client_getredir() -> Result<()> {
let client1 = get_test_client().await?;
let client2 = get_test_client().await?;
let client1_id = client1.client_id().await?;
client2
.client_tracking(
ClientTrackingStatus::On,
ClientTrackingOptions::default().redirect(client1_id),
)
.await?;
let redir_id = client2.client_getredir().await?;
assert_eq!(client1_id, redir_id);
client2
.client_tracking(ClientTrackingStatus::Off, ClientTrackingOptions::default())
.await?;
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::main)]
#[cfg_attr(feature = "async-std-runtime", async_std::main)]
#[serial]
async fn client_help() -> Result<()> {
let client = get_test_client().await?;
let result: Vec<String> = client.client_help().await?;
assert!(result.iter().any(|e| e == "HELP"));
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn client_id() -> Result<()> {
let client = get_test_client().await?;
let id = client.client_id().await?;
assert!(id > 0);
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn client_info() -> Result<()> {
let client = get_test_client().await?;
let client_info = client.client_info().await?;
log::debug!("client_info: {client_info:?}");
assert!(client_info.id != 0);
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn client_kill() -> Result<()> {
let client1 = get_test_client().await?;
let client2 = get_test_client().await?;
let client_id = client1.client_id().await?;
client2
.client_kill(ClientKillOptions::default().id(client_id))
.await?;
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn client_list() -> Result<()> {
let client = get_test_client().await?;
let current_client_id = client.client_id().await?;
let _result = client
.client_list(ClientListOptions::default().client_ids(current_client_id))
.await?;
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn client_no_evict() -> Result<()> {
let client = get_test_client().await?;
client.client_no_evict(true).await?;
client.client_no_evict(false).await?;
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn client_no_touch() -> Result<()> {
let client = get_test_client().await?;
client.client_no_touch(true).await?;
client.client_no_touch(false).await?;
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn client_pause() -> Result<()> {
let client = get_test_client().await?;
client.client_pause(1000, ClientPauseMode::Write).await?;
client.client_unpause().await?;
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn client_reply() -> Result<()> {
let client = get_test_client().await?;
client.flushdb(FlushingMode::Sync).await?;
// single command
client.client_reply(ClientReplyMode::Off).forget()?;
client.set("key", "value").forget()?;
client.client_reply(ClientReplyMode::On).await?;
let value: String = client.get("key").await?;
assert_eq!("value", value);
// pipeline
let mut pipeline = client.create_pipeline();
pipeline.client_reply(ClientReplyMode::Off).forget();
pipeline.set("key1", "value1").forget();
pipeline.set("key2", "value2").forget();
pipeline.set("key3", "value3").forget();
pipeline.client_reply(ClientReplyMode::On).queue();
pipeline.execute::<()>().await?;
let values: Vec<String> = client.mget(["key1", "key2", "key3"]).await?;
assert_eq!(3, values.len());
assert_eq!("value1", values[0]);
assert_eq!("value2", values[1]);
assert_eq!("value3", values[2]);
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn client_setname_getname() -> Result<()> {
let client = get_test_client().await?;
client.client_setname("Mike").await?;
let client_name: Option<String> = client.client_getname().await?;
assert_eq!(Some("Mike".to_string()), client_name);
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::main)]
#[cfg_attr(feature = "async-std-runtime", async_std::main)]
#[serial]
async fn client_setinfo() -> Result<()> {
let client = get_test_client().await?;
client
.client_setinfo(ClientInfoAttribute::LibName, "rustis")
.await?;
client
.client_setinfo(ClientInfoAttribute::LibVer, "0.13.3")
.await?;
let attrs: String = client.send(cmd("CLIENT").arg("INFO"), None).await?.to()?;
assert!(attrs.contains("lib-name=rustis lib-ver=0.13.3"));
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn client_tracking() -> Result<()> {
log_try_init();
let client1 = Client::connect("redis://127.0.0.1?connection_name=client1").await?;
let client1_invalidations =
Client::connect("redis://127.0.0.1?connection_name=client1_invalidations").await?;
let client2 = Client::connect("redis://127.0.0.1?connection_name=client2").await?;
// prepare invalidations
let invalidation_id = client1_invalidations.client_id().await?;
let mut invalidation_stream =
client1_invalidations.create_client_tracking_invalidation_stream()?;
client1.set("key", "value").await?;
client1
.client_tracking(
ClientTrackingStatus::On,
ClientTrackingOptions::default().redirect(invalidation_id),
)
.await?;
// Redis track our local caching
let _value: String = client1.get("key").await?;
client2.set("key", "new_value").await?;
let keys_to_invalidate: Vec<String> = invalidation_stream.next().await.unwrap();
assert_eq!(1, keys_to_invalidate.len());
assert_eq!("key", keys_to_invalidate[0]);
client1
.client_tracking(ClientTrackingStatus::Off, ClientTrackingOptions::default())
.await?;
// optin
client1
.client_tracking(
ClientTrackingStatus::On,
ClientTrackingOptions::default()
.redirect(invalidation_id)
.optin(),
)
.await?;
// Redis will not track our local caching because we are optin
let _value: String = client1.get("key").await?;
client2.set("key", "new_value2").await?;
// Redis will track our local caching because of the client_caching command
client1.client_caching(ClientCachingMode::Yes).await?;
let _value: String = client1.get("key").await?;
client2.set("key", "new_value3").await?;
let keys_to_invalidate: Vec<String> = invalidation_stream.next().await.unwrap();
assert_eq!(1, keys_to_invalidate.len());
assert_eq!("key", keys_to_invalidate[0]);
// broadcasting mode
client1
.client_tracking(ClientTrackingStatus::Off, ClientTrackingOptions::default())
.await?;
client1
.client_tracking(
ClientTrackingStatus::On,
ClientTrackingOptions::default()
.redirect(invalidation_id)
.prefix("k")
.broadcasting(),
)
.await?;
// Redis will track our local caching because key is in the prefix pattern we just set
let _value: String = client1.get("key").await?;
client2.set("key", "new_value4").await?;
let keys_to_invalidate: Vec<String> = invalidation_stream.next().await.unwrap();
assert_eq!(1, keys_to_invalidate.len());
assert_eq!("key", keys_to_invalidate[0]);
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn client_tracking_info() -> Result<()> {
let client1 = get_test_client().await?;
let client2 = get_test_client().await?;
let tracking_info = client1.client_trackinginfo().await?;
assert_eq!(1, tracking_info.flags.len());
assert!(tracking_info.flags.contains(&"off".to_owned()));
assert_eq!(-1, tracking_info.redirect);
assert_eq!(0, tracking_info.prefixes.len());
let client2_id = client2.client_id().await?;
client1
.client_tracking(
ClientTrackingStatus::On,
ClientTrackingOptions::default().redirect(client2_id),
)
.await?;
let tracking_info = client1.client_trackinginfo().await?;
assert_eq!(1, tracking_info.flags.len());
assert!(tracking_info.flags.contains(&"on".to_owned()));
assert_eq!(client2_id, tracking_info.redirect);
assert_eq!(0, tracking_info.prefixes.len());
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn client_unblock() -> Result<()> {
let client1 = get_test_client().await?;
let client2 = get_test_client().await?;
let client_id = client1.client_id().await?;
spawn(async move {
let result = client1.wait(2, 10000).await;
matches!(
result,
Err(Error::Redis(RedisError {
kind: RedisErrorKind::Unblocked,
description: _
}))
)
});
sleep(std::time::Duration::from_millis(100)).await;
client2
.client_unblock(client_id, ClientUnblockMode::Error)
.await?;
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn echo() -> Result<()> {
let client = get_test_client().await?;
let result: String = client.echo("hello").await?;
assert_eq!("hello", result);
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn hello_v3() -> Result<()> {
let client = get_test_client().await?;
let result = client.hello(HelloOptions::new(3)).await?;
assert_eq!("redis", result.server);
assert!(result.version.starts_with('7'));
assert_eq!(3, result.proto);
assert!(result.id > 0);
assert_eq!("standalone", result.mode);
assert_eq!("master", result.role);
assert_eq!(0, result.modules.len());
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn ping() -> Result<()> {
let client = get_test_client().await?;
let result: String = client.ping(PingOptions::default()).await?;
assert_eq!("PONG", result);
let result: String = client.ping(PingOptions::default().message("value")).await?;
assert_eq!("value", result);
Ok(())
}
// #[cfg_attr(feature = "tokio-runtime", tokio::test)]
// #[cfg_attr(feature = "async-std-runtime", async_std::test)]
// #[serial]
// async fn quit() -> Result<()> {
// let client = Connection::connect(get_default_addr()).await?;
// client.quit().await?;
// // reconnection here
// client.ping::<String, ()>(None).await?;
// Ok(())
// }
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn reset() -> Result<()> {
let client = get_test_client().await?;
client.reset().await?;
Ok(())
}
#[cfg_attr(feature = "tokio-runtime", tokio::test)]
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
#[serial]
async fn select() -> Result<()> {
let client = get_test_client().await?;
client.flushall(FlushingMode::Sync).await?;
client.set("key", "value").await?;
client.move_("key", 1).await?;
client.select(1).await?;
let value: String = client.get("key").await?;
assert_eq!("value", value);
Ok(())
}