mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
test
This commit is contained in:
parent
40a3d78042
commit
d8ec65e7fc
2 changed files with 26 additions and 1 deletions
|
@ -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
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue