mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-03 21:07:40 +03:00
update error usage
This commit is contained in:
parent
3f7ae1ccb6
commit
062aceb570
2 changed files with 5 additions and 9 deletions
|
@ -711,10 +711,7 @@ where
|
|||
.and_then(|_| self.inner.validate_allowed_method(req.head()))
|
||||
.and_then(|_| self.inner.validate_allowed_headers(req.head()))
|
||||
{
|
||||
return Either::Left(ok(req.into_response(
|
||||
WebResponseError::error_response(&e)
|
||||
.map_body(|_, body| body.into_body()),
|
||||
)));
|
||||
return Either::Left(ok(req.render_error(e)));
|
||||
}
|
||||
|
||||
// allowed headers
|
||||
|
@ -772,10 +769,7 @@ where
|
|||
if req.headers().contains_key(&header::ORIGIN) {
|
||||
// Only check requests with a origin header.
|
||||
if let Err(e) = self.inner.validate_origin(req.head()) {
|
||||
return Either::Left(ok(req.into_response(
|
||||
WebResponseError::error_response(&e)
|
||||
.map_body(|_, body| body.into_body()),
|
||||
)));
|
||||
return Either::Left(ok(req.render_error(e)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -45,11 +45,13 @@ impl WebResponseError<DefaultError> for MultipartError {
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
use ntex::web::test::TestRequest;
|
||||
use ntex::web::HttpResponse;
|
||||
|
||||
#[test]
|
||||
fn test_multipart_error() {
|
||||
let resp: HttpResponse = MultipartError::Boundary.error_response();
|
||||
let req = TestRequest::default().to_http_request();
|
||||
let resp: HttpResponse = MultipartError::Boundary.error_response(&req);
|
||||
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue