1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-22 14:55:56 +01:00

Bugfix: AuthenticationError should set status_code

I noticed that my `AuthenticationError`'s `status_code` field was 401, but when I ran `.as_response_error()` the `ResponseError`'s code was 500 (the default value). It's because impl ResponseError for AuthenticationError doesn't define the `status_code()` trait method. Merely setting the status code in `error_response` isn't enough, it seems. I added a unit test for this case too.
This commit is contained in:
Adam Chalmers 2020-05-18 21:30:14 -05:00 committed by Adam Chalmers
parent 5c6c04caf3
commit a50f1db473
2 changed files with 23 additions and 0 deletions

View File

@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [unreleased]
- Update the `base64` dependency to 0.12
- AuthenticationError's status code is preserved when converting to a ResponseError
## [0.4.1] - 2020-02-19
- Move repository to actix-extras

View File

@ -57,4 +57,26 @@ impl<C: 'static + Challenge> ResponseError for AuthenticationError<C> {
.set(WwwAuthenticate(self.challenge.clone()))
.finish()
}
fn status_code(&self) -> StatusCode {
self.status_code
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::headers::www_authenticate::basic::Basic;
use actix_web::Error;
#[test]
fn test_status_code_is_preserved_across_error_conversions() {
let ae: AuthenticationError<Basic> = AuthenticationError::new(Basic::default());
let expected = ae.status_code;
// Converting the AuthenticationError into a ResponseError should preserve the status code.
let e = Error::from(ae);
let re = e.as_response_error();
assert_eq!(expected, re.status_code());
}
}