forked from film42/sidekiq-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess_async_test.rs
70 lines (58 loc) · 1.92 KB
/
process_async_test.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
#[cfg(test)]
mod test {
use async_trait::async_trait;
use bb8::Pool;
use sidekiq::{Processor, RedisConnectionManager, RedisPool, Result, WorkFetcher, Worker};
use std::sync::{Arc, Mutex};
#[async_trait]
trait FlushAll {
async fn flushall(&self);
}
#[async_trait]
impl FlushAll for RedisPool {
async fn flushall(&self) {
let mut conn = self.get().await.unwrap();
let _: String = redis::cmd("FLUSHALL")
.query_async(conn.unnamespaced_borrow_mut())
.await
.unwrap();
}
}
async fn new_base_processor(queue: String) -> (Processor, RedisPool) {
// Redis
let manager = RedisConnectionManager::new("redis://127.0.0.1/").unwrap();
let redis = Pool::builder().build(manager).await.unwrap();
redis.flushall().await;
// Sidekiq server
let p = Processor::new(redis.clone(), vec![queue]);
(p, redis)
}
#[tokio::test]
async fn can_process_an_async_job() {
#[derive(Clone)]
struct TestWorker {
did_process: Arc<Mutex<bool>>,
}
#[async_trait]
impl Worker<()> for TestWorker {
async fn perform(&self, _args: ()) -> Result<()> {
let mut this = self.did_process.lock().unwrap();
*this = true;
Ok(())
}
}
let worker = TestWorker {
did_process: Arc::new(Mutex::new(false)),
};
let queue = "random123".to_string();
let (mut p, mut redis) = new_base_processor(queue.clone()).await;
p.register(worker.clone());
TestWorker::opts()
.queue(queue)
.perform_async(&mut redis, ())
.await
.unwrap();
assert_eq!(p.process_one_tick_once().await.unwrap(), WorkFetcher::Done);
assert!(*worker.did_process.lock().unwrap());
}
}