forked from film42/sidekiq-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess_cron_job_test.rs
108 lines (88 loc) · 2.89 KB
/
process_cron_job_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
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
#[cfg(test)]
mod test {
use async_trait::async_trait;
use bb8::Pool;
use sidekiq::{
periodic, Processor, RedisConnectionManager, RedisPool, Result, Scheduled, 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)
}
async fn set_cron_scores_to_zero(redis: RedisPool) {
let mut conn = redis.get().await.unwrap();
let jobs = conn
.zrange("periodic".to_string(), isize::MIN, isize::MAX)
.await
.unwrap();
for job in jobs {
let _: usize = conn
.zadd("periodic".to_string(), job.clone(), 0)
.await
.unwrap();
}
}
#[tokio::test]
async fn can_process_a_cron_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, redis) = new_base_processor(queue.clone()).await;
p.register(worker.clone());
// Cron jobs
periodic::builder("0 * * * * *")
.unwrap()
.name("Payment report processing for a user using json args")
.queue(queue.clone())
.register(&mut p, worker.clone())
.await
.unwrap();
assert_eq!(
p.process_one_tick_once().await.unwrap(),
WorkFetcher::NoWorkFound
);
set_cron_scores_to_zero(redis.clone()).await;
let sched = Scheduled::new(redis.clone());
let n = sched
.enqueue_periodic_jobs(chrono::Utc::now())
.await
.unwrap();
assert_eq!(n, 1);
assert_eq!(p.process_one_tick_once().await.unwrap(), WorkFetcher::Done);
assert!(*worker.did_process.lock().unwrap());
}
}