From aa0b11c428f2d4bc911f321c07d42d82fd434148 Mon Sep 17 00:00:00 2001 From: Alexander van Saase Date: Sat, 2 Dec 2023 21:56:36 +0100 Subject: [PATCH] Veryfy no unexpected events in tests --- tests/events.rs | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/tests/events.rs b/tests/events.rs index 893f55f..fcd10ce 100644 --- a/tests/events.rs +++ b/tests/events.rs @@ -30,6 +30,8 @@ async fn short_press() { let event = button.update().await; assert_matches!(event, ButtonEvent::ShortPress { count: 1 }); + + verify_no_event(&mut button).await; } #[tokio::test] @@ -53,10 +55,8 @@ async fn double_press() { let event = button.update().await; assert_matches!(event, ButtonEvent::ShortPress { count: 2 }); - assert_err!( - timeout(Duration::from_millis(500), button.update()).await, - "Unexpected event" - ); + + verify_no_event(&mut button).await; } #[tokio::test] @@ -76,10 +76,8 @@ async fn long_press() { let event = button.update().await; assert_matches!(event, ButtonEvent::LongPress); - assert_err!( - timeout(Duration::from_millis(500), button.update()).await, - "Unexpected event" - ); + + verify_no_event(&mut button).await; } #[tokio::test] @@ -105,10 +103,8 @@ async fn two_short_presses() { assert_matches!(event, ButtonEvent::ShortPress { count: 1 }); let event = button.update().await; assert_matches!(event, ButtonEvent::ShortPress { count: 1 }); - assert_err!( - timeout(Duration::from_millis(500), button.update()).await, - "Unexpected event" - ); + + verify_no_event(&mut button).await; } #[tokio::test] @@ -130,10 +126,8 @@ async fn debounce() { let event = button.update().await; assert_matches!(event, ButtonEvent::ShortPress { count: 1 }); - assert_err!( - timeout(Duration::from_millis(500), button.update()).await, - "Unexpected event" - ); + + verify_no_event(&mut button).await; } #[derive(Debug, Clone)] @@ -219,3 +213,10 @@ impl Error for MockError { async fn sleep_millis(millis: u64) { tokio::time::sleep(Duration::from_millis(millis)).await; } + +async fn verify_no_event(button: &mut Button) { + assert_err!( + timeout(Duration::from_millis(500), button.update()).await, + "Unexpected event" + ); +}