mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Tests cleanups
This commit is contained in:
parent
f3c7c6d365
commit
6b35f10c2f
12 changed files with 100 additions and 58 deletions
|
@ -3654,12 +3654,6 @@ impl PartialEq<BytesMut> for [u8] {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl PartialOrd<BytesMut> for [u8] {
|
|
||||||
fn partial_cmp(&self, other: &BytesMut) -> Option<cmp::Ordering> {
|
|
||||||
other.partial_cmp(self)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl PartialEq<str> for BytesMut {
|
impl PartialEq<str> for BytesMut {
|
||||||
fn eq(&self, other: &str) -> bool {
|
fn eq(&self, other: &str) -> bool {
|
||||||
&**self == other.as_bytes()
|
&**self == other.as_bytes()
|
||||||
|
@ -3897,12 +3891,6 @@ impl PartialEq<[u8]> for BytesVec {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl PartialOrd<[u8]> for BytesVec {
|
|
||||||
fn partial_cmp(&self, other: &[u8]) -> Option<cmp::Ordering> {
|
|
||||||
(**self).partial_cmp(other)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl PartialEq<BytesVec> for [u8] {
|
impl PartialEq<BytesVec> for [u8] {
|
||||||
fn eq(&self, other: &BytesVec) -> bool {
|
fn eq(&self, other: &BytesVec) -> bool {
|
||||||
*other == *self
|
*other == *self
|
||||||
|
|
|
@ -457,6 +457,10 @@ fn fns_defined_for_bytes() {
|
||||||
assert_eq!(bytes, &"hello world"[..]);
|
assert_eq!(bytes, &"hello world"[..]);
|
||||||
assert_eq!(bytes, BytesVec::copy_from_slice(b"hello world"));
|
assert_eq!(bytes, BytesVec::copy_from_slice(b"hello world"));
|
||||||
assert_eq!(bytes, BytesMut::copy_from_slice(b"hello world"));
|
assert_eq!(bytes, BytesMut::copy_from_slice(b"hello world"));
|
||||||
|
assert_eq!("hello world", bytes);
|
||||||
|
assert_eq!("hello world".as_bytes().to_vec(), bytes);
|
||||||
|
assert_eq!("hello world".to_string(), bytes);
|
||||||
|
assert_eq!(&"hello world"[..], bytes);
|
||||||
|
|
||||||
// Iterator
|
// Iterator
|
||||||
let v: Vec<u8> = (&bytes).iter().cloned().collect();
|
let v: Vec<u8> = (&bytes).iter().cloned().collect();
|
||||||
|
@ -468,7 +472,7 @@ fn fns_defined_for_bytes() {
|
||||||
let v: Vec<u8> = bytes.clone().into_iter().collect();
|
let v: Vec<u8> = bytes.clone().into_iter().collect();
|
||||||
assert_eq!(&v[..], bytes);
|
assert_eq!(&v[..], bytes);
|
||||||
|
|
||||||
let v: Vec<u8> = bytes.as_ref().into_iter().cloned().collect();
|
let v: Vec<u8> = (&bytes).into_iter().cloned().collect();
|
||||||
assert_eq!(&v[..], bytes);
|
assert_eq!(&v[..], bytes);
|
||||||
|
|
||||||
let b2: Bytes = v.iter().collect();
|
let b2: Bytes = v.iter().collect();
|
||||||
|
@ -496,6 +500,10 @@ fn fns_defined_for_bytes_mut() {
|
||||||
assert_eq!(bytes, &"hello world"[..]);
|
assert_eq!(bytes, &"hello world"[..]);
|
||||||
assert_eq!(bytes, Bytes::copy_from_slice(b"hello world"));
|
assert_eq!(bytes, Bytes::copy_from_slice(b"hello world"));
|
||||||
assert_eq!(bytes, BytesVec::copy_from_slice(b"hello world"));
|
assert_eq!(bytes, BytesVec::copy_from_slice(b"hello world"));
|
||||||
|
assert_eq!("hello world", bytes);
|
||||||
|
assert_eq!("hello world".as_bytes().to_vec(), bytes);
|
||||||
|
assert_eq!("hello world".to_string(), bytes);
|
||||||
|
assert_eq!(&"hello world"[..], bytes);
|
||||||
|
|
||||||
// Iterator
|
// Iterator
|
||||||
let v: Vec<u8> = (&bytes).iter().cloned().collect();
|
let v: Vec<u8> = (&bytes).iter().cloned().collect();
|
||||||
|
@ -508,6 +516,10 @@ fn fns_defined_for_bytes_mut() {
|
||||||
assert_eq!(&v[..], bytes);
|
assert_eq!(&v[..], bytes);
|
||||||
|
|
||||||
let v: Vec<u8> = bytes.clone().into_iter().collect();
|
let v: Vec<u8> = bytes.clone().into_iter().collect();
|
||||||
|
assert_eq!(&v[..], bytes);
|
||||||
|
|
||||||
|
let v: Vec<u8> = (&bytes).into_iter().cloned().collect();
|
||||||
|
assert_eq!(&v[..], bytes);
|
||||||
|
|
||||||
let mut bytes = BytesMut::copy_from_slice(b"hello world");
|
let mut bytes = BytesMut::copy_from_slice(b"hello world");
|
||||||
assert_eq!(&v[..], bytes);
|
assert_eq!(&v[..], bytes);
|
||||||
|
@ -550,6 +562,10 @@ fn fns_defined_for_bytes_vec() {
|
||||||
assert_eq!(bytes, &"hello world"[..]);
|
assert_eq!(bytes, &"hello world"[..]);
|
||||||
assert_eq!(bytes, Bytes::copy_from_slice(b"hello world"));
|
assert_eq!(bytes, Bytes::copy_from_slice(b"hello world"));
|
||||||
assert_eq!(bytes, BytesMut::copy_from_slice(b"hello world"));
|
assert_eq!(bytes, BytesMut::copy_from_slice(b"hello world"));
|
||||||
|
assert_eq!("hello world", bytes);
|
||||||
|
assert_eq!("hello world".as_bytes().to_vec(), bytes);
|
||||||
|
assert_eq!("hello world".to_string(), bytes);
|
||||||
|
assert_eq!(&"hello world"[..], bytes);
|
||||||
|
|
||||||
// Iterator
|
// Iterator
|
||||||
let v: Vec<u8> = (&bytes).iter().cloned().collect();
|
let v: Vec<u8> = (&bytes).iter().cloned().collect();
|
||||||
|
@ -561,7 +577,7 @@ fn fns_defined_for_bytes_vec() {
|
||||||
let v: Vec<u8> = bytes.iter().cloned().collect();
|
let v: Vec<u8> = bytes.iter().cloned().collect();
|
||||||
assert_eq!(&v[..], bytes);
|
assert_eq!(&v[..], bytes);
|
||||||
|
|
||||||
let v: Vec<u8> = bytes.as_ref().into_iter().cloned().collect();
|
let v: Vec<u8> = (&bytes).into_iter().cloned().collect();
|
||||||
assert_eq!(&v[..], bytes);
|
assert_eq!(&v[..], bytes);
|
||||||
|
|
||||||
let v: Vec<u8> = bytes.into_iter().collect();
|
let v: Vec<u8> = bytes.into_iter().collect();
|
||||||
|
@ -590,6 +606,10 @@ fn fns_defined_for_bytes_vec() {
|
||||||
|
|
||||||
let b = BytesMut::default();
|
let b = BytesMut::default();
|
||||||
assert!(b.is_empty());
|
assert!(b.is_empty());
|
||||||
|
|
||||||
|
let mut bytes = BytesVec::copy_from_slice(b"hello world");
|
||||||
|
unsafe { bytes.set_len(1) };
|
||||||
|
assert_eq!(bytes, "h");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
@ -811,7 +811,7 @@ impl<F> FilterItem<F> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get sealed, panic if it is not sealed
|
/// Get sealed, panic if it is already sealed
|
||||||
fn get_sealed(&mut self) -> Sealed {
|
fn get_sealed(&mut self) -> Sealed {
|
||||||
if self.data[KIND_IDX] & KIND_SEALED != 0 {
|
if self.data[KIND_IDX] & KIND_SEALED != 0 {
|
||||||
self.data[KIND_IDX] &= KIND_UNMASK;
|
self.data[KIND_IDX] &= KIND_UNMASK;
|
||||||
|
|
|
@ -356,6 +356,7 @@ mod tests {
|
||||||
Arbiter::set_item("test");
|
Arbiter::set_item("test");
|
||||||
assert!(Arbiter::get_item::<&'static str, _, _>(|s| *s == "test"));
|
assert!(Arbiter::get_item::<&'static str, _, _>(|s| *s == "test"));
|
||||||
assert!(Arbiter::get_mut_item::<&'static str, _, _>(|s| *s == "test"));
|
assert!(Arbiter::get_mut_item::<&'static str, _, _>(|s| *s == "test"));
|
||||||
|
assert!(Arbiter::contains_item::<&'static str>());
|
||||||
assert!(format!("{:?}", Arbiter::current()).contains("Arbiter"));
|
assert!(format!("{:?}", Arbiter::current()).contains("Arbiter"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,5 +19,5 @@ path = "src/lib.rs"
|
||||||
pin-project-lite = "0.2.6"
|
pin-project-lite = "0.2.6"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ntex = "0.5.0"
|
ntex = { version = "0.5", features = ["tokio"] }
|
||||||
ntex-util = "0.1.5"
|
ntex-util = "0.1.5"
|
||||||
|
|
|
@ -493,6 +493,10 @@ mod tests {
|
||||||
.on_shutdown(|| {
|
.on_shutdown(|| {
|
||||||
*shutdown.borrow_mut() = true;
|
*shutdown.borrow_mut() = true;
|
||||||
})
|
})
|
||||||
|
.clone()
|
||||||
|
.new_service(())
|
||||||
|
.await
|
||||||
|
.unwrap()
|
||||||
.clone();
|
.clone();
|
||||||
|
|
||||||
let res = srv.call(()).await;
|
let res = srv.call(()).await;
|
||||||
|
|
|
@ -320,5 +320,11 @@ mod tests {
|
||||||
let (tx, rx) = channel::<()>();
|
let (tx, rx) = channel::<()>();
|
||||||
rx.close();
|
rx.close();
|
||||||
assert!(tx.is_closed());
|
assert!(tx.is_closed());
|
||||||
|
|
||||||
|
let (tx, rx) = channel::<()>();
|
||||||
|
drop(tx);
|
||||||
|
assert!(rx.is_closed());
|
||||||
|
let _tx = rx.sender();
|
||||||
|
assert!(!rx.is_closed());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,13 +3,15 @@ use slab::Slab;
|
||||||
use std::{future::Future, pin::Pin, task::Context, task::Poll};
|
use std::{future::Future, pin::Pin, task::Context, task::Poll};
|
||||||
|
|
||||||
use super::{cell::Cell, Canceled};
|
use super::{cell::Cell, Canceled};
|
||||||
use crate::{future::poll_fn, task::LocalWaker};
|
use crate::task::LocalWaker;
|
||||||
|
|
||||||
/// Creates a new futures-aware, pool of one-shot's.
|
/// Creates a new futures-aware, pool of one-shot's.
|
||||||
pub fn new<T>() -> Pool<T> {
|
pub fn new<T>() -> Pool<T> {
|
||||||
Pool(Cell::new(Slab::new()))
|
Pool(Cell::new(Slab::new()))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[doc(hidden)]
|
||||||
|
/// Futures-aware, pool of one-shot's.
|
||||||
pub type OneshotsPool<T> = Pool<T>;
|
pub type OneshotsPool<T> = Pool<T>;
|
||||||
|
|
||||||
/// Futures-aware, pool of one-shot's.
|
/// Futures-aware, pool of one-shot's.
|
||||||
|
@ -152,11 +154,6 @@ impl<T> Drop for Sender<T> {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> Receiver<T> {
|
impl<T> Receiver<T> {
|
||||||
/// Wait until the oneshot is ready and return value
|
|
||||||
pub async fn recv(&self) -> Result<T, Canceled> {
|
|
||||||
poll_fn(|cx| self.poll_recv(cx)).await
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Polls the oneshot to determine if value is ready
|
/// Polls the oneshot to determine if value is ready
|
||||||
pub fn poll_recv(&self, cx: &mut Context<'_>) -> Poll<Result<T, Canceled>> {
|
pub fn poll_recv(&self, cx: &mut Context<'_>) -> Poll<Result<T, Canceled>> {
|
||||||
let inner = get_inner(&self.inner, self.token);
|
let inner = get_inner(&self.inner, self.token);
|
||||||
|
@ -207,6 +204,8 @@ mod tests {
|
||||||
let (tx, rx) = p.channel();
|
let (tx, rx) = p.channel();
|
||||||
tx.send("test").unwrap();
|
tx.send("test").unwrap();
|
||||||
assert_eq!(rx.await.unwrap(), "test");
|
assert_eq!(rx.await.unwrap(), "test");
|
||||||
|
assert!(format!("{}", Canceled).contains("canceled"));
|
||||||
|
assert!(format!("{:?}", Canceled).contains("Canceled"));
|
||||||
|
|
||||||
let p2 = p.clone();
|
let p2 = p.clone();
|
||||||
let (tx, rx) = p2.channel();
|
let (tx, rx) = p2.channel();
|
||||||
|
@ -241,5 +240,10 @@ mod tests {
|
||||||
lazy(|cx| Pin::new(&mut tx).poll_canceled(cx)).await,
|
lazy(|cx| Pin::new(&mut tx).poll_canceled(cx)).await,
|
||||||
Poll::Ready(())
|
Poll::Ready(())
|
||||||
);
|
);
|
||||||
|
|
||||||
|
let p = Pool::default();
|
||||||
|
let (tx, rx) = p.channel();
|
||||||
|
tx.send("test").unwrap();
|
||||||
|
assert_eq!(rx.await.unwrap(), "test");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -121,12 +121,6 @@ where
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
#[deprecated]
|
|
||||||
#[doc(hidden)]
|
|
||||||
pub fn data<U: 'static>(self, data: U) -> Self {
|
|
||||||
self.state(data)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Set application state factory. This function is
|
/// Set application state factory. This function is
|
||||||
/// similar to `.state()` but it accepts state factory. State object get
|
/// similar to `.state()` but it accepts state factory. State object get
|
||||||
/// constructed asynchronously during application initialization.
|
/// constructed asynchronously during application initialization.
|
||||||
|
@ -658,10 +652,12 @@ mod tests {
|
||||||
|
|
||||||
#[crate::rt_test]
|
#[crate::rt_test]
|
||||||
async fn test_default_resource() {
|
async fn test_default_resource() {
|
||||||
let srv = init_service(
|
let srv = App::new()
|
||||||
App::new().service(web::resource("/test").to(|| async { HttpResponse::Ok() })),
|
.service(web::resource("/test").to(|| async { HttpResponse::Ok() }))
|
||||||
)
|
.finish()
|
||||||
.await;
|
.new_service(())
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
let req = TestRequest::with_uri("/test").to_request();
|
let req = TestRequest::with_uri("/test").to_request();
|
||||||
let resp = srv.call(req).await.unwrap();
|
let resp = srv.call(req).await.unwrap();
|
||||||
assert_eq!(resp.status(), StatusCode::OK);
|
assert_eq!(resp.status(), StatusCode::OK);
|
||||||
|
@ -670,21 +666,22 @@ mod tests {
|
||||||
let resp = srv.call(req).await.unwrap();
|
let resp = srv.call(req).await.unwrap();
|
||||||
assert_eq!(resp.status(), StatusCode::NOT_FOUND);
|
assert_eq!(resp.status(), StatusCode::NOT_FOUND);
|
||||||
|
|
||||||
let srv = init_service(
|
let srv = App::new()
|
||||||
App::new()
|
.service(web::resource("/test").to(|| async { HttpResponse::Ok() }))
|
||||||
.service(web::resource("/test").to(|| async { HttpResponse::Ok() }))
|
.service(
|
||||||
.service(
|
web::resource("/test2")
|
||||||
web::resource("/test2")
|
.default_service(|r: WebRequest<DefaultError>| async move {
|
||||||
.default_service(|r: WebRequest<DefaultError>| async move {
|
Ok(r.into_response(HttpResponse::Created()))
|
||||||
Ok(r.into_response(HttpResponse::Created()))
|
})
|
||||||
})
|
.route(web::get().to(|| async { HttpResponse::Ok() })),
|
||||||
.route(web::get().to(|| async { HttpResponse::Ok() })),
|
)
|
||||||
)
|
.default_service(|r: WebRequest<DefaultError>| async move {
|
||||||
.default_service(|r: WebRequest<DefaultError>| async move {
|
Ok(r.into_response(HttpResponse::MethodNotAllowed()))
|
||||||
Ok(r.into_response(HttpResponse::MethodNotAllowed()))
|
})
|
||||||
}),
|
.with_config(Default::default())
|
||||||
)
|
.new_service(())
|
||||||
.await;
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
let req = TestRequest::with_uri("/blah").to_request();
|
let req = TestRequest::with_uri("/blah").to_request();
|
||||||
let resp = srv.call(req).await.unwrap();
|
let resp = srv.call(req).await.unwrap();
|
||||||
|
|
|
@ -669,13 +669,17 @@ mod tests {
|
||||||
|
|
||||||
#[crate::rt_test]
|
#[crate::rt_test]
|
||||||
async fn test_scope() {
|
async fn test_scope() {
|
||||||
let srv = init_service(
|
let srv =
|
||||||
App::new().service(
|
init_service(
|
||||||
web::scope("/app")
|
App::new()
|
||||||
.service(web::resource("/path1").to(|| async { HttpResponse::Ok() })),
|
.service(web::scope("/app").service(
|
||||||
),
|
web::resource("/path1").to(|| async { HttpResponse::Ok() }),
|
||||||
)
|
))
|
||||||
.await;
|
.service(web::scope("/app2").case_insensitive_routing().service(
|
||||||
|
web::resource("/path1").to(|| async { HttpResponse::Ok() }),
|
||||||
|
)),
|
||||||
|
)
|
||||||
|
.await;
|
||||||
|
|
||||||
let req = TestRequest::with_uri("/app/path1").to_request();
|
let req = TestRequest::with_uri("/app/path1").to_request();
|
||||||
let resp = srv.call(req).await.unwrap();
|
let resp = srv.call(req).await.unwrap();
|
||||||
|
@ -684,6 +688,14 @@ mod tests {
|
||||||
let req = TestRequest::with_uri("/app/path10").to_request();
|
let req = TestRequest::with_uri("/app/path10").to_request();
|
||||||
let resp = srv.call(req).await.unwrap();
|
let resp = srv.call(req).await.unwrap();
|
||||||
assert_eq!(resp.status(), StatusCode::NOT_FOUND);
|
assert_eq!(resp.status(), StatusCode::NOT_FOUND);
|
||||||
|
|
||||||
|
let req = TestRequest::with_uri("/app2/path1").to_request();
|
||||||
|
let resp = srv.call(req).await.unwrap();
|
||||||
|
assert_eq!(resp.status(), StatusCode::OK);
|
||||||
|
|
||||||
|
let req = TestRequest::with_uri("/app2/Path1").to_request();
|
||||||
|
let resp = srv.call(req).await.unwrap();
|
||||||
|
assert_eq!(resp.status(), StatusCode::OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[crate::rt_test]
|
#[crate::rt_test]
|
||||||
|
|
|
@ -441,14 +441,22 @@ mod tests {
|
||||||
.set_payload(Bytes::from_static(b"hello=world"))
|
.set_payload(Bytes::from_static(b"hello=world"))
|
||||||
.to_http_parts();
|
.to_http_parts();
|
||||||
|
|
||||||
let mut s = from_request::<Payload>(&req, &mut pl)
|
let mut s = from_request::<Payload>(&req, &mut pl).await.unwrap();
|
||||||
.await
|
|
||||||
.unwrap()
|
|
||||||
.into_inner();
|
|
||||||
let b = stream_recv(&mut s).await.unwrap().unwrap();
|
let b = stream_recv(&mut s).await.unwrap().unwrap();
|
||||||
assert_eq!(b, Bytes::from_static(b"hello=world"));
|
assert_eq!(b, Bytes::from_static(b"hello=world"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[crate::rt_test]
|
||||||
|
async fn test_payload_recv() {
|
||||||
|
let (req, mut pl) = TestRequest::with_header(header::CONTENT_LENGTH, "11")
|
||||||
|
.set_payload(Bytes::from_static(b"hello=world"))
|
||||||
|
.to_http_parts();
|
||||||
|
|
||||||
|
let mut s = from_request::<Payload>(&req, &mut pl).await.unwrap();
|
||||||
|
let b = s.recv().await.unwrap().unwrap();
|
||||||
|
assert_eq!(b, Bytes::from_static(b"hello=world"));
|
||||||
|
}
|
||||||
|
|
||||||
#[crate::rt_test]
|
#[crate::rt_test]
|
||||||
async fn test_bytes() {
|
async fn test_bytes() {
|
||||||
let (req, mut pl) = TestRequest::with_header(header::CONTENT_LENGTH, "11")
|
let (req, mut pl) = TestRequest::with_header(header::CONTENT_LENGTH, "11")
|
||||||
|
|
|
@ -169,6 +169,8 @@ async fn test_rustls_string() {
|
||||||
}))
|
}))
|
||||||
.and_then(rustls::Acceptor::new(tls_acceptor()))
|
.and_then(rustls::Acceptor::new(tls_acceptor()))
|
||||||
.and_then(fn_service(|io: Io<_>| async move {
|
.and_then(fn_service(|io: Io<_>| async move {
|
||||||
|
assert!(io.query::<PeerCert>().as_ref().is_none());
|
||||||
|
assert!(io.query::<PeerCertChain>().as_ref().is_none());
|
||||||
io.send(Bytes::from_static(b"test"), &BytesCodec)
|
io.send(Bytes::from_static(b"test"), &BytesCodec)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue