fix tests

This commit is contained in:
Nikolay Kim 2021-02-25 21:17:23 +06:00
parent 2fb4ad8058
commit 94cc4b8ce1
3 changed files with 9 additions and 7 deletions

View file

@ -3,11 +3,12 @@
//! Static files support
use std::fs::{DirEntry, File};
use std::path::{Path, PathBuf};
use std::{fmt::Write, pin::Pin, rc::Rc, cmp, io, io::Read, io::Seek, task::Context, task::Poll};
use std::{
cmp, fmt::Write, io, io::Read, io::Seek, pin::Pin, rc::Rc, task::Context, task::Poll,
};
use ntex::util::Bytes;
use futures::future::{ok, ready, Either, FutureExt, LocalBoxFuture, Ready};
use futures::{Stream, Future};
use futures::{Future, Stream};
use hyperx::header::DispositionType;
use mime_guess::from_ext;
use ntex::http::error::BlockingError;
@ -15,6 +16,7 @@ use ntex::http::{header, Method, Payload, Uri};
use ntex::router::{ResourceDef, ResourcePath};
use ntex::service::boxed::{self, BoxService, BoxServiceFactory};
use ntex::service::{IntoServiceFactory, Service, ServiceFactory};
use ntex::util::Bytes;
use ntex::web::dev::{WebRequest, WebResponse, WebServiceConfig, WebServiceFactory};
use ntex::web::error::ErrorRenderer;
use ntex::web::guard::Guard;

View file

@ -1,13 +1,13 @@
//! Multipart payload support
use std::cell::{Cell, RefCell, RefMut};
use std::{cmp, fmt, convert::TryFrom, marker::PhantomData, pin::Pin, rc::Rc};
use std::task::{Context, Poll};
use std::{cmp, convert::TryFrom, fmt, marker::PhantomData, pin::Pin, rc::Rc};
use ntex::util::{Bytes, BytesMut};
use futures::stream::{LocalBoxStream, Stream, StreamExt};
use ntex::http::error::{ParseError, PayloadError};
use ntex::http::header::{self, HeaderMap, HeaderName, HeaderValue};
use ntex::task::LocalWaker;
use ntex::util::{Bytes, BytesMut};
use crate::error::MultipartError;
@ -753,10 +753,10 @@ impl PayloadBuffer {
mod tests {
use super::*;
use bytes::Bytes;
use futures::future::lazy;
use ntex::channel::mpsc;
use ntex::http::h1::Payload;
use ntex::util::Bytes;
#[ntex::test]
async fn test_boundary() {

View file

@ -382,7 +382,7 @@ where
#[cfg(test)]
mod tests {
use super::*;
use bytes::Bytes;
use ntex::util::Bytes;
use ntex::web::{self, test, App};
#[ntex::test]