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:
msga-mmm 2023-10-17 08:14:40 -05:00 committed by GitHub
parent bd49962d1b
commit 9bb4a60ad4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 32 additions and 21 deletions

View file

@ -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());