This commit is contained in:
Nikolay Kim 2021-09-06 16:22:40 +06:00
parent 40a3d78042
commit d8ec65e7fc
2 changed files with 26 additions and 1 deletions

View file

@ -193,6 +193,7 @@ impl crate::Stream for Interval {
#[cfg(test)]
mod tests {
use super::*;
use futures::StreamExt;
use std::time;
/// State Under Test: Two calls of `now()` return the same value if they are done within resolution interval.
@ -245,4 +246,29 @@ mod tests {
assert!(second_time - first_time >= time::Duration::from_millis(wait_time));
}
#[crate::rt_test]
async fn test_interval() {
let mut int = interval(Millis(250));
let time = time::Instant::now();
int.tick().await;
let elapsed = time::Instant::now() - time;
assert!(
elapsed > time::Duration::from_millis(200)
&& elapsed < time::Duration::from_millis(300),
"elapsed: {:?}",
elapsed
);
let time = time::Instant::now();
int.next().await;
let elapsed = time::Instant::now() - time;
assert!(
elapsed > time::Duration::from_millis(200)
&& elapsed < time::Duration::from_millis(300),
"elapsed: {:?}",
elapsed
);
}
}

View file

@ -648,7 +648,6 @@ mod tests {
#[crate::rt_test]
async fn test_timer() {
env_logger::init();
crate::rt::spawn(async {
let s = interval(Millis(25));
loop {