mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 05:47:40 +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
|
@ -406,12 +406,6 @@ mod test {
|
||||||
|
|
||||||
s.clear();
|
s.clear();
|
||||||
assert_eq!(s, "");
|
assert_eq!(s, "");
|
||||||
|
|
||||||
assert!(ByteString::try_from(b"\xc3\x28".as_ref()).is_err());
|
|
||||||
assert!(ByteString::try_from(vec![b'\xc3']).is_err());
|
|
||||||
assert!(ByteString::try_from(Bytes::from_static(b"\xc3\x28")).is_err());
|
|
||||||
assert!(ByteString::try_from(&Bytes::from_static(b"\xc3\x28")).is_err());
|
|
||||||
assert!(ByteString::try_from(BytesMut::copy_from_slice(b"\xc3\x28")).is_err());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
@ -465,12 +459,23 @@ mod test {
|
||||||
#[test]
|
#[test]
|
||||||
fn test_try_from() {
|
fn test_try_from() {
|
||||||
let _ = ByteString::try_from(&b"nice bytes"[..]).unwrap();
|
let _ = ByteString::try_from(&b"nice bytes"[..]).unwrap();
|
||||||
|
assert!(ByteString::try_from(b"\xc3\x28".as_ref()).is_err());
|
||||||
|
|
||||||
let _ = ByteString::try_from(b"nice bytes".to_vec()).unwrap();
|
let _ = ByteString::try_from(b"nice bytes".to_vec()).unwrap();
|
||||||
|
assert!(ByteString::try_from(vec![b'\xc3']).is_err());
|
||||||
|
|
||||||
let _ = ByteString::try_from(Bytes::from_static(b"nice bytes")).unwrap();
|
let _ = ByteString::try_from(Bytes::from_static(b"nice bytes")).unwrap();
|
||||||
|
assert!(ByteString::try_from(Bytes::from_static(b"\xc3\x28")).is_err());
|
||||||
|
|
||||||
let _ = ByteString::try_from(&Bytes::from_static(b"nice bytes")).unwrap();
|
let _ = ByteString::try_from(&Bytes::from_static(b"nice bytes")).unwrap();
|
||||||
|
assert!(ByteString::try_from(&Bytes::from_static(b"\xc3\x28")).is_err());
|
||||||
|
|
||||||
let _ = ByteString::try_from(BytesMut::from(&b"nice bytes"[..])).unwrap();
|
let _ = ByteString::try_from(BytesMut::from(&b"nice bytes"[..])).unwrap();
|
||||||
|
assert!(ByteString::try_from(BytesMut::copy_from_slice(b"\xc3\x28")).is_err());
|
||||||
|
|
||||||
let _ =
|
let _ =
|
||||||
ByteString::try_from(BytesVec::copy_from_slice(&b"nice bytes"[..])).unwrap();
|
ByteString::try_from(BytesVec::copy_from_slice(&b"nice bytes"[..])).unwrap();
|
||||||
|
assert!(ByteString::try_from(BytesVec::copy_from_slice(b"\xc3\x28")).is_err());
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
@ -133,7 +133,7 @@ impl Future for WriteTask {
|
||||||
type Output = ();
|
type Output = ();
|
||||||
|
|
||||||
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
||||||
let mut this = self.as_mut().get_mut();
|
let this = self.as_mut().get_mut();
|
||||||
|
|
||||||
match this.st {
|
match this.st {
|
||||||
IoWriteState::Processing(ref mut delay) => {
|
IoWriteState::Processing(ref mut delay) => {
|
||||||
|
@ -441,7 +441,7 @@ impl Future for UnixWriteTask {
|
||||||
type Output = ();
|
type Output = ();
|
||||||
|
|
||||||
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
||||||
let mut this = self.as_mut().get_mut();
|
let this = self.as_mut().get_mut();
|
||||||
|
|
||||||
match this.st {
|
match this.st {
|
||||||
IoWriteState::Processing(ref mut delay) => {
|
IoWriteState::Processing(ref mut delay) => {
|
||||||
|
|
|
@ -159,18 +159,22 @@ mod tests {
|
||||||
#[ntex::test]
|
#[ntex::test]
|
||||||
async fn test_utils_filter() {
|
async fn test_utils_filter() {
|
||||||
let (_, server) = IoTest::create();
|
let (_, server) = IoTest::create();
|
||||||
let svc = chain_factory(
|
|
||||||
filter::<_, crate::filter::Base>(TestFilterFactory)
|
let filter_service_factory = filter::<_, crate::filter::Base>(TestFilterFactory)
|
||||||
.map_err(|_| ())
|
.map_err(|_| ())
|
||||||
.map_init_err(|_| ()),
|
.map_init_err(|_| ());
|
||||||
)
|
|
||||||
.and_then(seal(fn_service(|io: IoBoxed| async move {
|
assert!(format!("{:?}", filter_service_factory).contains("FilterServiceFactory"));
|
||||||
let _ = io.recv(&BytesCodec).await;
|
|
||||||
Ok::<_, ()>(())
|
let svc = chain_factory(filter_service_factory)
|
||||||
})))
|
.and_then(seal(fn_service(|io: IoBoxed| async move {
|
||||||
.pipeline(())
|
let _ = io.recv(&BytesCodec).await;
|
||||||
.await
|
Ok::<_, ()>(())
|
||||||
.unwrap();
|
})))
|
||||||
|
.pipeline(())
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
let _ = svc.call(Io::new(server)).await;
|
let _ = svc.call(Io::new(server)).await;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -102,7 +102,7 @@ impl Future for Signals {
|
||||||
{
|
{
|
||||||
if self.signal.as_mut().poll(cx).is_ready() {
|
if self.signal.as_mut().poll(cx).is_ready() {
|
||||||
let handlers = SHANDLERS.with(|h| mem::take(&mut *h.borrow_mut()));
|
let handlers = SHANDLERS.with(|h| mem::take(&mut *h.borrow_mut()));
|
||||||
for mut sender in handlers {
|
for sender in handlers {
|
||||||
let _ = sender.send(Signal::Int);
|
let _ = sender.send(Signal::Int);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -151,9 +151,11 @@ mod tests {
|
||||||
#[ntex_macros::rt_test2]
|
#[ntex_macros::rt_test2]
|
||||||
async fn test_ka() {
|
async fn test_ka() {
|
||||||
let factory = KeepAlive::new(Millis(100), || TestErr);
|
let factory = KeepAlive::new(Millis(100), || TestErr);
|
||||||
|
assert!(format!("{:?}", factory).contains("KeepAlive"));
|
||||||
let _ = factory.clone();
|
let _ = factory.clone();
|
||||||
|
|
||||||
let service = factory.pipeline(&()).await.unwrap();
|
let service = factory.pipeline(&()).await.unwrap();
|
||||||
|
assert!(format!("{:?}", service).contains("KeepAliveService"));
|
||||||
|
|
||||||
assert_eq!(service.call(1usize).await, Ok(1usize));
|
assert_eq!(service.call(1usize).await, Ok(1usize));
|
||||||
assert!(lazy(|cx| service.poll_ready(cx)).await.is_ready());
|
assert!(lazy(|cx| service.poll_ready(cx)).await.is_ready());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue