mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Switch to 2021 edition (#172)
This commit is contained in:
parent
0c61a78d60
commit
29e04cf478
53 changed files with 54 additions and 81 deletions
|
@ -9,7 +9,7 @@ repository = "https://github.com/ntex-rs/ntex.git"
|
||||||
documentation = "https://docs.rs/ntex-rt-async-std/"
|
documentation = "https://docs.rs/ntex-rt-async-std/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "ntex_async_std"
|
name = "ntex_async_std"
|
||||||
|
|
|
@ -9,7 +9,7 @@ repository = "https://github.com/ntex-rs"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
keywords = ["buffers", "zero-copy", "io"]
|
keywords = ["buffers", "zero-copy", "io"]
|
||||||
categories = ["network-programming", "data-structures"]
|
categories = ["network-programming", "data-structures"]
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
use std::borrow::{Borrow, BorrowMut};
|
use std::borrow::{Borrow, BorrowMut};
|
||||||
use std::iter::{FromIterator, Iterator};
|
|
||||||
use std::ops::{Deref, DerefMut, RangeBounds};
|
use std::ops::{Deref, DerefMut, RangeBounds};
|
||||||
use std::sync::atomic::Ordering::{Acquire, Relaxed, Release};
|
use std::sync::atomic::Ordering::{Acquire, Relaxed, Release};
|
||||||
use std::sync::atomic::{self, AtomicUsize};
|
use std::sync::atomic::{self, AtomicUsize};
|
||||||
|
@ -4049,7 +4048,7 @@ fn abort() {
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use std::{collections::HashMap, convert::TryFrom};
|
use std::collections::HashMap;
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
//! A UTF-8 encoded read-only string using Bytes as storage.
|
//! A UTF-8 encoded read-only string using Bytes as storage.
|
||||||
use std::{borrow, convert::TryFrom, fmt, hash, ops, slice, str};
|
use std::{borrow, fmt, hash, ops, slice, str};
|
||||||
|
|
||||||
use crate::{Bytes, BytesMut, BytesVec};
|
use crate::{Bytes, BytesMut, BytesVec};
|
||||||
|
|
||||||
|
|
|
@ -96,7 +96,6 @@ fn fmt() {
|
||||||
#[test]
|
#[test]
|
||||||
fn fmt_write() {
|
fn fmt_write() {
|
||||||
use std::fmt::Write;
|
use std::fmt::Write;
|
||||||
use std::iter::FromIterator;
|
|
||||||
let s = String::from_iter((0..10).map(|_| "abcdefg"));
|
let s = String::from_iter((0..10).map(|_| "abcdefg"));
|
||||||
|
|
||||||
let mut a = BytesMut::with_capacity(64);
|
let mut a = BytesMut::with_capacity(64);
|
||||||
|
|
|
@ -9,7 +9,7 @@ repository = "https://github.com/ntex-rs/ntex.git"
|
||||||
documentation = "https://docs.rs/ntex-codec/"
|
documentation = "https://docs.rs/ntex-codec/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "ntex_codec"
|
name = "ntex_codec"
|
||||||
|
|
|
@ -9,7 +9,7 @@ repository = "https://github.com/ntex-rs/ntex.git"
|
||||||
documentation = "https://docs.rs/ntex-connect/"
|
documentation = "https://docs.rs/ntex-connect/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "ntex_connect"
|
name = "ntex_connect"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
use std::collections::{vec_deque, VecDeque};
|
use std::collections::{vec_deque, VecDeque};
|
||||||
use std::{fmt, iter::FromIterator, iter::FusedIterator, net::SocketAddr};
|
use std::{fmt, iter::FusedIterator, net::SocketAddr};
|
||||||
|
|
||||||
use ntex_util::future::Either;
|
use ntex_util::future::Either;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::{convert::TryFrom, io};
|
use std::io;
|
||||||
|
|
||||||
pub use ntex_tls::rustls::TlsFilter;
|
pub use ntex_tls::rustls::TlsFilter;
|
||||||
pub use tls_rustls::{ClientConfig, ServerName};
|
pub use tls_rustls::{ClientConfig, ServerName};
|
||||||
|
|
|
@ -9,7 +9,7 @@ repository = "https://github.com/ntex-rs/ntex.git"
|
||||||
documentation = "https://docs.rs/ntex-rt-glommio/"
|
documentation = "https://docs.rs/ntex-rt-glommio/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "ntex_glommio"
|
name = "ntex_glommio"
|
||||||
|
|
|
@ -9,7 +9,7 @@ repository = "https://github.com/ntex-rs/ntex.git"
|
||||||
documentation = "https://docs.rs/ntex-http/"
|
documentation = "https://docs.rs/ntex-http/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "ntex_http"
|
name = "ntex_http"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
use std::collections::{self, hash_map, hash_map::Entry, VecDeque};
|
use std::collections::{self, hash_map, hash_map::Entry, VecDeque};
|
||||||
use std::{convert::TryFrom, iter::FromIterator};
|
|
||||||
|
|
||||||
use crate::{HeaderName, HeaderValue};
|
use crate::{HeaderName, HeaderValue};
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
clippy::no_effect,
|
clippy::no_effect,
|
||||||
clippy::missing_safety_doc
|
clippy::missing_safety_doc
|
||||||
)]
|
)]
|
||||||
use std::{cmp, convert::TryFrom, error::Error, fmt, str, str::FromStr};
|
use std::{cmp, error::Error, fmt, str, str::FromStr};
|
||||||
|
|
||||||
use ntex_bytes::{ByteString, Bytes};
|
use ntex_bytes::{ByteString, Bytes};
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ repository = "https://github.com/ntex-rs/ntex.git"
|
||||||
documentation = "https://docs.rs/ntex-io/"
|
documentation = "https://docs.rs/ntex-io/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "ntex_io"
|
name = "ntex_io"
|
||||||
|
|
|
@ -732,14 +732,12 @@ mod tests {
|
||||||
ntex_util::services::inflight::InFlightService::new(
|
ntex_util::services::inflight::InFlightService::new(
|
||||||
1,
|
1,
|
||||||
ntex_service::fn_service(move |msg: DispatchItem<BytesCodec>| async move {
|
ntex_service::fn_service(move |msg: DispatchItem<BytesCodec>| async move {
|
||||||
match msg {
|
if let DispatchItem::Item(_) = msg {
|
||||||
DispatchItem::Item(_) => {
|
sleep(Millis(500)).await;
|
||||||
sleep(Millis(500)).await;
|
Ok::<_, ()>(None)
|
||||||
return Ok::<_, ()>(None);
|
} else {
|
||||||
}
|
Ok(None)
|
||||||
_ => (),
|
|
||||||
}
|
}
|
||||||
Ok(None)
|
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
@ -136,7 +136,7 @@ mod tests {
|
||||||
type Future = Ready<Io<Layer<TestFilter, F>>, Self::Error>;
|
type Future = Ready<Io<Layer<TestFilter, F>>, Self::Error>;
|
||||||
|
|
||||||
fn create(self, st: Io<F>) -> Self::Future {
|
fn create(self, st: Io<F>) -> Self::Future {
|
||||||
Ready::Ok(st.add_filter(TestFilter).into())
|
Ready::Ok(st.add_filter(TestFilter))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -163,12 +163,9 @@ mod tests {
|
||||||
let (_, server) = IoTest::create();
|
let (_, server) = IoTest::create();
|
||||||
let io = Io::new(server);
|
let io = Io::new(server);
|
||||||
let ioref = io.get_ref();
|
let ioref = io.get_ref();
|
||||||
let mut stack = Stack::new();
|
let stack = Stack::new();
|
||||||
assert!(NullFilter.query(std::any::TypeId::of::<()>()).is_none());
|
assert!(NullFilter.query(std::any::TypeId::of::<()>()).is_none());
|
||||||
assert!(NullFilter
|
assert!(NullFilter.shutdown(&ioref, &stack, 0).unwrap().is_ready());
|
||||||
.shutdown(&ioref, &mut stack, 0)
|
|
||||||
.unwrap()
|
|
||||||
.is_ready());
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
ntex_util::future::poll_fn(|cx| NullFilter.poll_read_ready(cx)).await,
|
ntex_util::future::poll_fn(|cx| NullFilter.poll_read_ready(cx)).await,
|
||||||
crate::ReadStatus::Terminate
|
crate::ReadStatus::Terminate
|
||||||
|
@ -177,11 +174,9 @@ mod tests {
|
||||||
ntex_util::future::poll_fn(|cx| NullFilter.poll_write_ready(cx)).await,
|
ntex_util::future::poll_fn(|cx| NullFilter.poll_write_ready(cx)).await,
|
||||||
crate::WriteStatus::Terminate
|
crate::WriteStatus::Terminate
|
||||||
);
|
);
|
||||||
assert!(NullFilter.process_write_buf(&ioref, &mut stack, 0).is_ok());
|
assert!(NullFilter.process_write_buf(&ioref, &stack, 0).is_ok());
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
NullFilter
|
NullFilter.process_read_buf(&ioref, &stack, 0, 0).unwrap(),
|
||||||
.process_read_buf(&ioref, &mut stack, 0, 0)
|
|
||||||
.unwrap(),
|
|
||||||
Default::default()
|
Default::default()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@ description = "ntex proc macros"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
|
@ -7,7 +7,7 @@ keywords = ["ntex"]
|
||||||
repository = "https://github.com/ntex-rs/ntex.git"
|
repository = "https://github.com/ntex-rs/ntex.git"
|
||||||
documentation = "https://docs.rs/ntex-router/"
|
documentation = "https://docs.rs/ntex-router/"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "ntex_router"
|
name = "ntex_router"
|
||||||
|
|
|
@ -638,7 +638,6 @@ mod tests {
|
||||||
#[test]
|
#[test]
|
||||||
fn test_parse_urlencoded() {
|
fn test_parse_urlencoded() {
|
||||||
use http::Uri;
|
use http::Uri;
|
||||||
use std::convert::TryFrom;
|
|
||||||
|
|
||||||
let tree = Tree::new(&ResourceDef::new("/user/{id}/test"), 1);
|
let tree = Tree::new(&ResourceDef::new("/user/{id}/test"), 1);
|
||||||
let uri = Uri::try_from("/user/2345/test").unwrap();
|
let uri = Uri::try_from("/user/2345/test").unwrap();
|
||||||
|
@ -677,7 +676,6 @@ mod tests {
|
||||||
#[test]
|
#[test]
|
||||||
fn test_extract_path_decode() {
|
fn test_extract_path_decode() {
|
||||||
use http::Uri;
|
use http::Uri;
|
||||||
use std::convert::TryFrom;
|
|
||||||
|
|
||||||
let tree = Tree::new(&ResourceDef::new("/{id}/"), 1);
|
let tree = Tree::new(&ResourceDef::new("/{id}/"), 1);
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ repository = "https://github.com/ntex-rs/ntex.git"
|
||||||
documentation = "https://docs.rs/ntex-rt/"
|
documentation = "https://docs.rs/ntex-rt/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "ntex_rt"
|
name = "ntex_rt"
|
||||||
|
|
|
@ -9,7 +9,7 @@ repository = "https://github.com/ntex-rs/ntex.git"
|
||||||
documentation = "https://docs.rs/ntex-service/"
|
documentation = "https://docs.rs/ntex-service/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "ntex_service"
|
name = "ntex_service"
|
||||||
|
|
|
@ -9,7 +9,7 @@ repository = "https://github.com/ntex-rs/ntex.git"
|
||||||
documentation = "https://docs.rs/ntex-openssl/"
|
documentation = "https://docs.rs/ntex-openssl/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "ntex_tls"
|
name = "ntex_tls"
|
||||||
|
|
|
@ -9,7 +9,7 @@ repository = "https://github.com/ntex-rs/ntex.git"
|
||||||
documentation = "https://docs.rs/ntex-rt-tokio/"
|
documentation = "https://docs.rs/ntex-rt-tokio/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "ntex_tokio"
|
name = "ntex_tokio"
|
||||||
|
|
|
@ -9,7 +9,7 @@ repository = "https://github.com/ntex-rs/ntex.git"
|
||||||
documentation = "https://docs.rs/ntex-util/"
|
documentation = "https://docs.rs/ntex-util/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "ntex_util"
|
name = "ntex_util"
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
use std::{
|
use std::{cell::Cell, convert::Infallible, marker, time::Duration, time::Instant};
|
||||||
cell::Cell, convert::Infallible, convert::TryInto, marker, time::Duration,
|
|
||||||
time::Instant,
|
|
||||||
};
|
|
||||||
|
|
||||||
use ntex_service::{Service, ServiceFactory};
|
use ntex_service::{Service, ServiceFactory};
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::{convert::TryInto, ops};
|
use std::ops;
|
||||||
|
|
||||||
/// A Duration type to represent a span of time.
|
/// A Duration type to represent a span of time.
|
||||||
///
|
///
|
||||||
|
|
|
@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous",
|
||||||
"web-programming::http-server",
|
"web-programming::http-server",
|
||||||
"web-programming::websocket"]
|
"web-programming::websocket"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
features = ["tokio", "openssl", "rustls", "compress", "cookie"]
|
features = ["tokio", "openssl", "rustls", "compress", "cookie"]
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::{convert::TryFrom, fmt, rc::Rc};
|
use std::{fmt, rc::Rc};
|
||||||
|
|
||||||
use base64::{engine::general_purpose::STANDARD as base64, Engine};
|
use base64::{engine::general_purpose::STANDARD as base64, Engine};
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::{convert::TryFrom, error::Error, fmt, net, rc::Rc};
|
use std::{error::Error, fmt, net, rc::Rc};
|
||||||
|
|
||||||
use crate::http::body::Body;
|
use crate::http::body::Body;
|
||||||
use crate::http::error::HttpError;
|
use crate::http::error::HttpError;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::{cell::RefCell, convert::TryFrom, io, rc::Rc};
|
use std::{cell::RefCell, io, rc::Rc};
|
||||||
|
|
||||||
use ntex_h2::{self as h2, client::Client, frame};
|
use ntex_h2::{self as h2, client::Client, frame};
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
//! println!("Response: {:?}", response);
|
//! println!("Response: {:?}", response);
|
||||||
//! }
|
//! }
|
||||||
//! ```
|
//! ```
|
||||||
use std::{convert::TryFrom, rc::Rc};
|
use std::rc::Rc;
|
||||||
|
|
||||||
mod builder;
|
mod builder;
|
||||||
mod connect;
|
mod connect;
|
||||||
|
|
|
@ -617,7 +617,7 @@ impl Drop for Acquired {
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use std::{cell::RefCell, convert::TryFrom, rc::Rc};
|
use std::{cell::RefCell, rc::Rc};
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
use crate::{
|
use crate::{
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::{convert::TryFrom, error::Error, fmt, net, rc::Rc};
|
use std::{error::Error, fmt, net, rc::Rc};
|
||||||
|
|
||||||
use base64::{engine::general_purpose::STANDARD as base64, Engine};
|
use base64::{engine::general_purpose::STANDARD as base64, Engine};
|
||||||
#[cfg(feature = "cookie")]
|
#[cfg(feature = "cookie")]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
use std::{convert::TryFrom, error::Error, future::Future, net, pin::Pin, rc::Rc};
|
use std::{error::Error, future::Future, net, pin::Pin, rc::Rc};
|
||||||
|
|
||||||
use serde::Serialize;
|
use serde::Serialize;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
//! Test helpers for ntex http client to use during testing.
|
//! Test helpers for ntex http client to use during testing.
|
||||||
use std::convert::TryFrom;
|
|
||||||
|
|
||||||
#[cfg(feature = "cookie")]
|
#[cfg(feature = "cookie")]
|
||||||
use coo_kie::{Cookie, CookieJar};
|
use coo_kie::{Cookie, CookieJar};
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::{cell::Cell, convert::TryFrom, marker::PhantomData, mem, task::Poll};
|
use std::{cell::Cell, marker::PhantomData, mem, task::Poll};
|
||||||
|
|
||||||
use ntex_http::header::{HeaderName, HeaderValue};
|
use ntex_http::header::{HeaderName, HeaderValue};
|
||||||
use ntex_http::{header, Method, StatusCode, Uri, Version};
|
use ntex_http::{header, Method, StatusCode, Uri, Version};
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
use std::{cell::RefCell, io, task::Context, task::Poll};
|
use std::{cell::RefCell, io, task::Context, task::Poll};
|
||||||
use std::{convert::TryFrom, marker::PhantomData, mem, rc::Rc};
|
use std::{marker::PhantomData, mem, rc::Rc};
|
||||||
|
|
||||||
use ntex_h2::{self as h2, frame::StreamId, server};
|
use ntex_h2::{self as h2, frame::StreamId, server};
|
||||||
|
|
||||||
|
|
|
@ -205,7 +205,6 @@ impl fmt::Debug for Request {
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
use std::convert::TryFrom;
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_basics() {
|
fn test_basics() {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
//! Http response
|
//! Http response
|
||||||
use std::{cell::Ref, cell::RefMut, convert::TryFrom, error::Error, fmt, str};
|
use std::{cell::Ref, cell::RefMut, error::Error, fmt, str};
|
||||||
|
|
||||||
use serde::Serialize;
|
use serde::Serialize;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
//! Test helpers to use during testing.
|
//! Test helpers to use during testing.
|
||||||
use std::{convert::TryFrom, net, str::FromStr, sync::mpsc, thread};
|
use std::{net, str::FromStr, sync::mpsc, thread};
|
||||||
|
|
||||||
#[cfg(feature = "cookie")]
|
#[cfg(feature = "cookie")]
|
||||||
use coo_kie::{Cookie, CookieJar};
|
use coo_kie::{Cookie, CookieJar};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::{convert::TryInto, net::SocketAddr, rc::Rc, task::Context, task::Poll};
|
use std::{net::SocketAddr, rc::Rc, task::Context, task::Poll};
|
||||||
|
|
||||||
use log::error;
|
use log::error;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::{convert::TryFrom, fmt, io, net};
|
use std::{fmt, io, net};
|
||||||
|
|
||||||
use crate::{io::Io, rt};
|
use crate::{io::Io, rt};
|
||||||
|
|
||||||
|
|
|
@ -595,8 +595,8 @@ mod tests {
|
||||||
use crate::util::{Bytes, Ready};
|
use crate::util::{Bytes, Ready};
|
||||||
use crate::web::test::{call_service, init_service, read_body, TestRequest};
|
use crate::web::test::{call_service, init_service, read_body, TestRequest};
|
||||||
use crate::web::{
|
use crate::web::{
|
||||||
self, middleware::DefaultHeaders, request::WebRequest, DefaultError, HttpRequest,
|
self, middleware::DefaultHeaders, DefaultError, HttpRequest, HttpResponse,
|
||||||
HttpResponse,
|
WebRequest,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[crate::rt_test]
|
#[crate::rt_test]
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
//! }
|
//! }
|
||||||
//! ```
|
//! ```
|
||||||
#![allow(non_snake_case)]
|
#![allow(non_snake_case)]
|
||||||
use std::convert::TryFrom;
|
|
||||||
|
|
||||||
use crate::http::{header, Method, RequestHead, Uri};
|
use crate::http::{header, Method, RequestHead, Uri};
|
||||||
|
|
||||||
|
|
|
@ -336,7 +336,7 @@ mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
use crate::http::{header, StatusCode};
|
use crate::http::{header, StatusCode};
|
||||||
use crate::router::ResourceDef;
|
use crate::router::ResourceDef;
|
||||||
use crate::web::dev::ResourceMap;
|
|
||||||
use crate::web::test::{call_service, init_service, TestRequest};
|
use crate::web::test::{call_service, init_service, TestRequest};
|
||||||
use crate::web::{self, App, HttpResponse};
|
use crate::web::{self, App, HttpResponse};
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
//! Middleware for setting default response headers
|
//! Middleware for setting default response headers
|
||||||
use std::{convert::TryFrom, rc::Rc};
|
use std::rc::Rc;
|
||||||
|
|
||||||
use crate::http::error::HttpError;
|
use crate::http::error::HttpError;
|
||||||
use crate::http::header::{HeaderMap, HeaderName, HeaderValue, CONTENT_TYPE};
|
use crate::http::header::{HeaderMap, HeaderName, HeaderValue, CONTENT_TYPE};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
//! Request logging middleware
|
//! Request logging middleware
|
||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
use std::{convert::TryFrom, env, error::Error, future::Future, pin::Pin, rc::Rc, time};
|
use std::{env, error::Error, future::Future, pin::Pin, rc::Rc, time};
|
||||||
use std::{fmt, fmt::Display, marker::PhantomData};
|
use std::{fmt, fmt::Display, marker::PhantomData};
|
||||||
|
|
||||||
use regex::Regex;
|
use regex::Regex;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
use std::{convert::TryFrom, future::Future, marker::PhantomData, pin::Pin};
|
use std::{future::Future, marker::PhantomData, pin::Pin};
|
||||||
|
|
||||||
use crate::http::error::HttpError;
|
use crate::http::error::HttpError;
|
||||||
use crate::http::header::{HeaderMap, HeaderName, HeaderValue};
|
use crate::http::header::{HeaderMap, HeaderName, HeaderValue};
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
//! Various helpers for ntex applications to use during testing.
|
//! Various helpers for ntex applications to use during testing.
|
||||||
use std::{
|
use std::{error::Error, fmt, net, net::SocketAddr, rc::Rc, sync::mpsc, thread};
|
||||||
convert::TryFrom, error::Error, fmt, net, net::SocketAddr, rc::Rc, sync::mpsc, thread,
|
|
||||||
};
|
|
||||||
|
|
||||||
#[cfg(feature = "cookie")]
|
#[cfg(feature = "cookie")]
|
||||||
use coo_kie::Cookie;
|
use coo_kie::Cookie;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
//! Websockets client
|
//! Websockets client
|
||||||
use std::{cell::RefCell, convert::TryFrom, fmt, marker, net, rc::Rc, str};
|
use std::{cell::RefCell, fmt, marker, net, rc::Rc, str};
|
||||||
|
|
||||||
#[cfg(feature = "openssl")]
|
#[cfg(feature = "openssl")]
|
||||||
use crate::connect::openssl;
|
use crate::connect::openssl;
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
use std::convert::TryFrom;
|
|
||||||
|
|
||||||
use log::debug;
|
use log::debug;
|
||||||
use nanorand::{Rng, WyRand};
|
use nanorand::{Rng, WyRand};
|
||||||
|
|
||||||
|
|
|
@ -256,8 +256,6 @@ async fn test_create() {
|
||||||
#[cfg(feature = "openssl")]
|
#[cfg(feature = "openssl")]
|
||||||
#[ntex::test]
|
#[ntex::test]
|
||||||
async fn test_uri() {
|
async fn test_uri() {
|
||||||
use std::convert::TryFrom;
|
|
||||||
|
|
||||||
let srv = test_server(|| {
|
let srv = test_server(|| {
|
||||||
fn_service(|io: Io| async move {
|
fn_service(|io: Io| async move {
|
||||||
io.send(Bytes::from_static(b"test"), &BytesCodec)
|
io.send(Bytes::from_static(b"test"), &BytesCodec)
|
||||||
|
@ -278,8 +276,6 @@ async fn test_uri() {
|
||||||
#[cfg(feature = "rustls")]
|
#[cfg(feature = "rustls")]
|
||||||
#[ntex::test]
|
#[ntex::test]
|
||||||
async fn test_rustls_uri() {
|
async fn test_rustls_uri() {
|
||||||
use std::convert::TryFrom;
|
|
||||||
|
|
||||||
let srv = test_server(|| {
|
let srv = test_server(|| {
|
||||||
fn_service(|io: Io| async move {
|
fn_service(|io: Io| async move {
|
||||||
io.send(Bytes::from_static(b"test"), &BytesCodec)
|
io.send(Bytes::from_static(b"test"), &BytesCodec)
|
||||||
|
|
|
@ -119,7 +119,7 @@ async fn test_run() {
|
||||||
assert_eq!(buf, b"test"[..]);
|
assert_eq!(buf, b"test"[..]);
|
||||||
|
|
||||||
// stop
|
// stop
|
||||||
let _ = srv.stop(false).await;
|
srv.stop(false).await;
|
||||||
thread::sleep(time::Duration::from_millis(100));
|
thread::sleep(time::Duration::from_millis(100));
|
||||||
assert!(net::TcpStream::connect(addr).is_err());
|
assert!(net::TcpStream::connect(addr).is_err());
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue