Skip to content
Snippets Groups Projects
Commit 09f750c2 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

RetryDelay: remove accessors.

Instead, check initial_delay in dirmgr directly.
parent 11883b9e
No related branches found
No related tags found
1 merge request!411Move RetryDelay into tor-basic-utils
......@@ -103,20 +103,6 @@ impl RetryDelay {
pub fn next_delay<R: Rng>(&mut self, rng: &mut R) -> Duration {
Duration::from_millis(u64::from(self.next_delay_msec(rng)))
}
/// Return the most recent delay returned, if there was one.
pub fn last_delay(&self) -> Option<Duration> {
if self.last_delay_ms == 0 {
None
} else {
Some(Duration::from_millis(self.last_delay_ms.into()))
}
}
/// Return the lowest delay that can be returned by this object.
pub fn min_delay(&self) -> Duration {
Duration::from_millis(self.low_bound_ms.into())
}
}
impl Default for RetryDelay {
......@@ -164,9 +150,7 @@ mod test {
let (b_lo, b_hi) = rd.delay_bounds();
assert!(b_lo == real_low_bound);
assert!(b_hi > b_lo);
let delay = rd.next_delay(&mut rng);
assert_eq!(Some(delay), rd.last_delay());
let delay = delay.as_millis() as u32;
let delay = rd.next_delay(&mut rng).as_millis() as u32;
assert_eq!(delay, rd.last_delay_ms);
assert!(delay >= b_lo);
assert!(delay < b_hi);
......
......@@ -100,24 +100,26 @@ mod test {
// default configuration is 3 tries, 1000 msec initial delay
let cfg = DownloadSchedule::default();
let one_sec = Duration::from_secs(1);
let zero_sec = Duration::from_secs(0);
let mut rng = rand::thread_rng();
assert_eq!(cfg.n_attempts(), 3);
let v: Vec<_> = cfg.attempts().collect();
assert_eq!(&v[..], &[0, 1, 2]);
let sched = cfg.schedule();
assert_eq!(sched.last_delay(), None);
assert_eq!(sched.min_delay(), one_sec);
assert_eq!(cfg.initial_delay, one_sec);
let mut sched = cfg.schedule();
assert_eq!(sched.next_delay(&mut rng), one_sec);
// Try a zero-attempt schedule, and have it get remapped to 1,1
let cfg = DownloadSchedule::new(0, Duration::new(0, 0), 0);
let cfg = DownloadSchedule::new(0, zero_sec, 0);
assert_eq!(cfg.n_attempts(), 1);
assert_eq!(cfg.parallelism(), 1);
let v: Vec<_> = cfg.attempts().collect();
assert_eq!(&v[..], &[0]);
let sched = cfg.schedule();
assert_eq!(sched.last_delay(), None);
assert_eq!(sched.min_delay(), one_sec);
assert_eq!(cfg.initial_delay, zero_sec);
let mut sched = cfg.schedule();
assert_eq!(sched.next_delay(&mut rng), one_sec);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment