Skip to content

Commit c004653

Browse files
committed
test(common): add basic test for AlertOnEos
1 parent 34ed89d commit c004653

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/common/buf.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,15 @@ impl<B: Buf> Buf for AlertOnEos<B> {
6262

6363
#[cfg(test)]
6464
mod tests {
65+
use crate::common::buf::AlertOnEos;
66+
use hyper::body::Bytes;
67+
use std::time::Duration;
6568

66-
}
69+
#[tokio::test]
70+
async fn test_get_notified() {
71+
let buf = Bytes::from_static(b"");
72+
let (_buf, signaler) = AlertOnEos::new(buf);
73+
let result = tokio::time::timeout(Duration::from_secs(1), signaler.wait_till_eos()).await;
74+
assert_eq!(result, Ok(()));
75+
}
76+
}

0 commit comments

Comments
 (0)