mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-27 17:52:56 +01:00
accept owned strings in TestRequest::param (#2172)
* accept owned strings in TestRequest::param * bump actix-router to 0.4.0 * update changelog Co-authored-by: Rob Ede <robjtede@icloud.com>
This commit is contained in:
parent
1383c7d701
commit
8dd30611fa
@ -7,12 +7,14 @@
|
|||||||
### Changed
|
### Changed
|
||||||
* Compress middleware will return 406 Not Acceptable when no content encoding is acceptable to the client. [#2344]
|
* Compress middleware will return 406 Not Acceptable when no content encoding is acceptable to the client. [#2344]
|
||||||
* Move `BaseHttpResponse` to `dev::Response`. [#2379]
|
* Move `BaseHttpResponse` to `dev::Response`. [#2379]
|
||||||
|
* Enable `TestRequest::param` to accept more than just static strings. [#2172]
|
||||||
* Minimum supported Rust version (MSRV) is now 1.51.
|
* Minimum supported Rust version (MSRV) is now 1.51.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fix quality parse error in Accept-Encoding header. [#2344]
|
* Fix quality parse error in Accept-Encoding header. [#2344]
|
||||||
* Re-export correct type at `web::HttpResponse`. [#2379]
|
* Re-export correct type at `web::HttpResponse`. [#2379]
|
||||||
|
|
||||||
|
[#2172]: https://github.com/actix/actix-web/pull/2172
|
||||||
[#2325]: https://github.com/actix/actix-web/pull/2325
|
[#2325]: https://github.com/actix/actix-web/pull/2325
|
||||||
[#2344]: https://github.com/actix/actix-web/pull/2344
|
[#2344]: https://github.com/actix/actix-web/pull/2344
|
||||||
[#2379]: https://github.com/actix/actix-web/pull/2379
|
[#2379]: https://github.com/actix/actix-web/pull/2379
|
||||||
|
22
src/test.rs
22
src/test.rs
@ -1,6 +1,6 @@
|
|||||||
//! Various helpers for Actix applications to use during testing.
|
//! Various helpers for Actix applications to use during testing.
|
||||||
|
|
||||||
use std::{net::SocketAddr, rc::Rc};
|
use std::{borrow::Cow, net::SocketAddr, rc::Rc};
|
||||||
|
|
||||||
pub use actix_http::test::TestBuffer;
|
pub use actix_http::test::TestBuffer;
|
||||||
use actix_http::{
|
use actix_http::{
|
||||||
@ -470,19 +470,31 @@ impl TestRequest {
|
|||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Set request path pattern parameter
|
/// Set request path pattern parameter.
|
||||||
pub fn param(mut self, name: &'static str, value: &'static str) -> Self {
|
///
|
||||||
|
/// # Examples
|
||||||
|
/// ```
|
||||||
|
/// use actix_web::test::TestRequest;
|
||||||
|
///
|
||||||
|
/// let req = TestRequest::default().param("foo", "bar");
|
||||||
|
/// let req = TestRequest::default().param("foo".to_owned(), "bar".to_owned());
|
||||||
|
/// ```
|
||||||
|
pub fn param(
|
||||||
|
mut self,
|
||||||
|
name: impl Into<Cow<'static, str>>,
|
||||||
|
value: impl Into<Cow<'static, str>>,
|
||||||
|
) -> Self {
|
||||||
self.path.add_static(name, value);
|
self.path.add_static(name, value);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Set peer addr
|
/// Set peer addr.
|
||||||
pub fn peer_addr(mut self, addr: SocketAddr) -> Self {
|
pub fn peer_addr(mut self, addr: SocketAddr) -> Self {
|
||||||
self.peer_addr = Some(addr);
|
self.peer_addr = Some(addr);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Set request payload
|
/// Set request payload.
|
||||||
pub fn set_payload<B: Into<Bytes>>(mut self, data: B) -> Self {
|
pub fn set_payload<B: Into<Bytes>>(mut self, data: B) -> Self {
|
||||||
self.req.set_payload(data);
|
self.req.set_payload(data);
|
||||||
self
|
self
|
||||||
|
Loading…
Reference in New Issue
Block a user