mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Implement std::error::Error and fix minor issues (#99)
* fix clippy issues * implement std error for ntex errors and bound WebResponseError * fix minor issues
This commit is contained in:
parent
7680c5482e
commit
2439797fcf
19 changed files with 41 additions and 25 deletions
|
@ -1888,8 +1888,8 @@ impl Inner {
|
|||
fn from_slice(cap: usize, src: &[u8], pool: PoolRef) -> Inner {
|
||||
// Store data in vec
|
||||
let mut vec = Vec::with_capacity(cap + SHARED_VEC_SIZE);
|
||||
#[allow(clippy::uninit_vec)]
|
||||
unsafe {
|
||||
#![allow(clippy::uninit_vec)]
|
||||
vec.set_len(SHARED_VEC_SIZE);
|
||||
vec.extend_from_slice(src);
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@ use std::task::Poll;
|
|||
|
||||
use ntex_bytes::{Buf, BufMut, Bytes, BytesMut, PoolId};
|
||||
|
||||
const LONG: &'static [u8] = b"mary had a little lamb, little lamb, little lamb";
|
||||
const SHORT: &'static [u8] = b"hello world";
|
||||
const LONG: &[u8] = b"mary had a little lamb, little lamb, little lamb";
|
||||
const SHORT: &[u8] = b"hello world";
|
||||
|
||||
fn inline_cap() -> usize {
|
||||
use std::mem;
|
||||
|
@ -267,7 +267,7 @@ fn split_off_to_loop() {
|
|||
#[test]
|
||||
fn split_to_1() {
|
||||
// Inline
|
||||
let mut a = Bytes::from(&SHORT[..]);
|
||||
let mut a = Bytes::from(SHORT);
|
||||
let b = a.split_to(4);
|
||||
|
||||
assert_eq!(SHORT[4..], a);
|
||||
|
@ -568,7 +568,7 @@ fn from_iter_no_size_hint() {
|
|||
|
||||
fn test_slice_ref(bytes: &Bytes, start: usize, end: usize, expected: &[u8]) {
|
||||
let slice = &(bytes.as_ref()[start..end]);
|
||||
let sub = bytes.slice_ref(&slice);
|
||||
let sub = bytes.slice_ref(slice);
|
||||
assert_eq!(&sub[..], expected);
|
||||
}
|
||||
|
||||
|
@ -588,7 +588,7 @@ fn slice_ref_empty() {
|
|||
let bytes = Bytes::from(&b""[..]);
|
||||
let slice = &(bytes.as_ref()[0..0]);
|
||||
|
||||
let sub = bytes.slice_ref(&slice);
|
||||
let sub = bytes.slice_ref(slice);
|
||||
assert_eq!(&sub[..], b"");
|
||||
}
|
||||
|
||||
|
|
|
@ -491,7 +491,7 @@ mod tests {
|
|||
let state = Io::new(io);
|
||||
let ka_timeout = Cell::new(Seconds(1).into());
|
||||
let shared = Rc::new(DispatcherShared {
|
||||
codec: codec,
|
||||
codec,
|
||||
error: Cell::new(None),
|
||||
inflight: Cell::new(0),
|
||||
});
|
||||
|
|
|
@ -421,7 +421,7 @@ mod tests {
|
|||
let in_bytes = self.1.clone();
|
||||
let out_bytes = self.2.clone();
|
||||
let read_order = self.3.clone();
|
||||
let write_order = self.4.clone();
|
||||
let write_order = self.4;
|
||||
Ready::Ok(
|
||||
io.map_filter(|inner| {
|
||||
Ok::<_, ()>(Counter {
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
//! Utilities for abstructing io streams
|
||||
#![allow(clippy::return_self_not_must_use)]
|
||||
use std::{
|
||||
any::Any, any::TypeId, fmt, future::Future, io as sio, io::Error as IoError,
|
||||
task::Context, task::Poll,
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
//! A runtime implementation that runs everything on the current thread.
|
||||
#![allow(clippy::return_self_not_must_use)]
|
||||
|
||||
mod arbiter;
|
||||
mod builder;
|
||||
mod system;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
//! An implementations of SSL streams for ntex ecosystem
|
||||
#![allow(clippy::return_self_not_must_use)]
|
||||
use std::sync::atomic::{AtomicUsize, Ordering};
|
||||
|
||||
pub mod types;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
//! Utilities for ntex framework
|
||||
#![allow(clippy::return_self_not_must_use)]
|
||||
pub mod channel;
|
||||
pub mod future;
|
||||
pub mod services;
|
||||
|
|
|
@ -321,7 +321,7 @@ mod tests {
|
|||
});
|
||||
|
||||
let srv = apply(
|
||||
Buffer::new(|| ()).buf_size(2).clone(),
|
||||
Buffer::new(|| ()).buf_size(2),
|
||||
fn_factory(|| async { Ok::<_, ()>(TestService(inner.clone())) }),
|
||||
);
|
||||
|
||||
|
|
|
@ -52,6 +52,8 @@ impl<E: fmt::Display> fmt::Display for TimeoutError<E> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<E: fmt::Display + fmt::Debug> std::error::Error for TimeoutError<E> {}
|
||||
|
||||
impl<E: PartialEq> PartialEq for TimeoutError<E> {
|
||||
fn eq(&self, other: &TimeoutError<E>) -> bool {
|
||||
match self {
|
||||
|
|
|
@ -346,7 +346,7 @@ mod tests {
|
|||
.v2(fn_factory(|| async { Ok::<_, ()>(Srv2) }))
|
||||
.v3(fn_factory(|| async { Ok::<_, ()>(Srv2) }))
|
||||
.clone();
|
||||
let service = factory.new_service(&()).await.clone().unwrap();
|
||||
let service = factory.new_service(&()).await.unwrap();
|
||||
|
||||
assert!(lazy(|cx| service.poll_ready(cx)).await.is_ready());
|
||||
assert!(lazy(|cx| service.poll_shutdown(cx, true)).await.is_ready());
|
||||
|
|
|
@ -514,7 +514,7 @@ mod tests {
|
|||
impl Body {
|
||||
pub(crate) fn get_ref(&self) -> &[u8] {
|
||||
match *self {
|
||||
Body::Bytes(ref bin) => &bin,
|
||||
Body::Bytes(ref bin) => bin,
|
||||
_ => panic!(),
|
||||
}
|
||||
}
|
||||
|
|
|
@ -233,6 +233,8 @@ pub enum ContentTypeError {
|
|||
Expected,
|
||||
}
|
||||
|
||||
impl std::error::Error for ContentTypeError {}
|
||||
|
||||
/// Blocking operation execution error
|
||||
#[derive(Debug, Display)]
|
||||
pub enum BlockingError<E: fmt::Debug> {
|
||||
|
|
|
@ -1213,8 +1213,8 @@ mod tests {
|
|||
#[test]
|
||||
fn test_parse_chunked_payload_chunk_extension() {
|
||||
let mut buf = BytesMut::from(
|
||||
&"GET /test HTTP/1.1\r\n\
|
||||
transfer-encoding: chunked\r\n\r\n"[..],
|
||||
"GET /test HTTP/1.1\r\n\
|
||||
transfer-encoding: chunked\r\n\r\n",
|
||||
);
|
||||
|
||||
let reader = MessageDecoder::<Request>::default();
|
||||
|
@ -1233,7 +1233,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_response_http10_read_until_eof() {
|
||||
let mut buf = BytesMut::from(&"HTTP/1.0 200 Ok\r\n\r\ntest data"[..]);
|
||||
let mut buf = BytesMut::from("HTTP/1.0 200 Ok\r\n\r\ntest data");
|
||||
|
||||
let reader = MessageDecoder::<ResponseHead>::default();
|
||||
let (_msg, pl) = reader.decode(&mut buf).unwrap().unwrap();
|
||||
|
|
|
@ -18,8 +18,7 @@
|
|||
clippy::borrow_interior_mutable_const,
|
||||
clippy::needless_doctest_main,
|
||||
clippy::too_many_arguments,
|
||||
clippy::new_without_default,
|
||||
clippy::return_self_not_must_use
|
||||
clippy::new_without_default
|
||||
)]
|
||||
|
||||
#[macro_use]
|
||||
|
|
|
@ -28,7 +28,7 @@ pub trait ErrorContainer: error::ResponseError + Sized {
|
|||
|
||||
/// Error that can be rendered to a `Response`
|
||||
pub trait WebResponseError<Err = DefaultError>:
|
||||
fmt::Debug + fmt::Display + 'static
|
||||
fmt::Display + fmt::Debug + 'static
|
||||
where
|
||||
Err: ErrorRenderer,
|
||||
{
|
||||
|
@ -84,6 +84,8 @@ pub enum DataExtractorError {
|
|||
NotConfigured,
|
||||
}
|
||||
|
||||
impl std::error::Error for DataExtractorError {}
|
||||
|
||||
/// Errors which can occur when attempting to generate resource uri.
|
||||
#[derive(Debug, PartialEq, Display, From)]
|
||||
pub enum UrlGenerationError {
|
||||
|
@ -99,6 +101,8 @@ pub enum UrlGenerationError {
|
|||
ParseError(UrlParseError),
|
||||
}
|
||||
|
||||
impl std::error::Error for UrlGenerationError {}
|
||||
|
||||
/// A set of errors that can occur during parsing urlencoded payloads
|
||||
#[derive(Debug, Display, From)]
|
||||
pub enum UrlencodedError {
|
||||
|
@ -126,6 +130,8 @@ pub enum UrlencodedError {
|
|||
Payload(error::PayloadError),
|
||||
}
|
||||
|
||||
impl std::error::Error for UrlencodedError {}
|
||||
|
||||
/// A set of errors that can occur during parsing json payloads
|
||||
#[derive(Debug, Display, From)]
|
||||
pub enum JsonPayloadError {
|
||||
|
@ -143,6 +149,8 @@ pub enum JsonPayloadError {
|
|||
Payload(error::PayloadError),
|
||||
}
|
||||
|
||||
impl std::error::Error for JsonPayloadError {}
|
||||
|
||||
/// A set of errors that can occur during parsing request paths
|
||||
#[derive(Debug, Display, From)]
|
||||
pub enum PathError {
|
||||
|
@ -151,6 +159,8 @@ pub enum PathError {
|
|||
Deserialize(serde::de::value::Error),
|
||||
}
|
||||
|
||||
impl std::error::Error for PathError {}
|
||||
|
||||
/// A set of errors that can occur during parsing query strings
|
||||
#[derive(Debug, Display, From)]
|
||||
pub enum QueryPayloadError {
|
||||
|
@ -159,6 +169,8 @@ pub enum QueryPayloadError {
|
|||
Deserialize(serde::de::value::Error),
|
||||
}
|
||||
|
||||
impl std::error::Error for QueryPayloadError {}
|
||||
|
||||
#[derive(Debug, Display, From)]
|
||||
pub enum PayloadError {
|
||||
/// Http error.
|
||||
|
@ -172,6 +184,8 @@ pub enum PayloadError {
|
|||
Decoding,
|
||||
}
|
||||
|
||||
impl std::error::Error for PayloadError {}
|
||||
|
||||
/// Helper type that can wrap any error and generate custom response.
|
||||
///
|
||||
/// In following example any `io::Error` will be converted into "BAD REQUEST"
|
||||
|
@ -245,6 +259,8 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
impl<T: fmt::Display + fmt::Debug + 'static, E> std::error::Error for InternalError<T, E> {}
|
||||
|
||||
impl<T, E> WebResponseError<E> for InternalError<T, E>
|
||||
where
|
||||
T: fmt::Debug + fmt::Display + 'static,
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
//! Query extractor
|
||||
|
||||
use std::{fmt, ops};
|
||||
|
||||
use serde::de;
|
||||
|
@ -163,10 +162,10 @@ mod tests {
|
|||
#[crate::rt_test]
|
||||
async fn test_service_request_extract() {
|
||||
let req = TestRequest::with_uri("/name/user1/").to_srv_request();
|
||||
assert!(Query::<Id>::from_query(&req.query_string()).is_err());
|
||||
assert!(Query::<Id>::from_query(req.query_string()).is_err());
|
||||
|
||||
let req = TestRequest::with_uri("/name/user1/?id=test").to_srv_request();
|
||||
let mut s = Query::<Id>::from_query(&req.query_string()).unwrap();
|
||||
let mut s = Query::<Id>::from_query(req.query_string()).unwrap();
|
||||
|
||||
assert_eq!(s.id, "test");
|
||||
assert_eq!(format!("{}, {:?}", s, s), "test, Id { id: \"test\" }");
|
||||
|
|
|
@ -150,6 +150,8 @@ pub enum HandshakeError {
|
|||
BadWebsocketKey,
|
||||
}
|
||||
|
||||
impl std::error::Error for HandshakeError {}
|
||||
|
||||
impl ResponseError for HandshakeError {
|
||||
fn error_response(&self) -> Response {
|
||||
match *self {
|
||||
|
|
|
@ -1094,6 +1094,7 @@ async fn test_slow_request() {
|
|||
async fn test_custom_error() {
|
||||
#[derive(Debug, Display)]
|
||||
struct TestError;
|
||||
impl std::error::Error for TestError {}
|
||||
|
||||
#[derive(Debug, Display)]
|
||||
struct JsonContainer(Box<dyn WebResponseError<JsonRenderer>>);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue