mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
test: improve coverage (#231)
* feat(ntex-glommio): remove unused mut * test(ntex-io): check Debug implementation for FilterServiceFactory * chore: format code * feat(ntex-util): check Debug and poll_ready for KeepAlive * test(ntex-util): wait a bit until the poll is ready * test(ntex-bytes): assert error for implementation try_from for BytesVec * feat(ntex-tokio): remove unused mut * feat(ntex-tls): use add_trust_anchors instead of add_server_trust_anchors * chore: format code * feat(ntex-util): check readiness after sleeping but before expiring * feat(ntex-util): remove unnecessary assertion
This commit is contained in:
parent
bd49962d1b
commit
9bb4a60ad4
5 changed files with 32 additions and 21 deletions
|
@ -151,9 +151,11 @@ mod tests {
|
|||
#[ntex_macros::rt_test2]
|
||||
async fn test_ka() {
|
||||
let factory = KeepAlive::new(Millis(100), || TestErr);
|
||||
assert!(format!("{:?}", factory).contains("KeepAlive"));
|
||||
let _ = factory.clone();
|
||||
|
||||
let service = factory.pipeline(&()).await.unwrap();
|
||||
assert!(format!("{:?}", service).contains("KeepAliveService"));
|
||||
|
||||
assert_eq!(service.call(1usize).await, Ok(1usize));
|
||||
assert!(lazy(|cx| service.poll_ready(cx)).await.is_ready());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue