2019-03-27 17:24:55 +01:00
|
|
|
//! Test helpers for actix http client to use during testing.
|
2021-04-01 17:42:18 +02:00
|
|
|
use actix_http::http::header::IntoHeaderPair;
|
|
|
|
use actix_http::http::{StatusCode, Version};
|
2019-03-27 05:54:57 +01:00
|
|
|
use actix_http::{h1, Payload, ResponseHead};
|
|
|
|
use bytes::Bytes;
|
|
|
|
|
2021-04-09 19:07:10 +02:00
|
|
|
#[cfg(feature = "cookies")]
|
|
|
|
use crate::cookie::{Cookie, CookieJar};
|
2019-03-27 05:54:57 +01:00
|
|
|
use crate::ClientResponse;
|
|
|
|
|
|
|
|
/// Test `ClientResponse` builder
|
2019-03-27 06:03:00 +01:00
|
|
|
pub struct TestResponse {
|
2019-03-27 05:54:57 +01:00
|
|
|
head: ResponseHead,
|
2021-02-13 16:08:43 +01:00
|
|
|
#[cfg(feature = "cookies")]
|
2019-03-27 05:54:57 +01:00
|
|
|
cookies: CookieJar,
|
|
|
|
payload: Option<Payload>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for TestResponse {
|
|
|
|
fn default() -> TestResponse {
|
2019-03-27 06:03:00 +01:00
|
|
|
TestResponse {
|
2019-04-08 08:06:21 +02:00
|
|
|
head: ResponseHead::new(StatusCode::OK),
|
2021-02-13 16:08:43 +01:00
|
|
|
#[cfg(feature = "cookies")]
|
2019-03-27 05:54:57 +01:00
|
|
|
cookies: CookieJar::new(),
|
|
|
|
payload: None,
|
2019-03-27 06:03:00 +01:00
|
|
|
}
|
2019-03-27 05:54:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TestResponse {
|
2019-03-27 06:03:00 +01:00
|
|
|
/// Create TestResponse and set header
|
2021-04-01 17:42:18 +02:00
|
|
|
pub fn with_header<H>(header: H) -> Self
|
2019-03-27 05:54:57 +01:00
|
|
|
where
|
2021-04-01 17:42:18 +02:00
|
|
|
H: IntoHeaderPair,
|
2019-03-27 05:54:57 +01:00
|
|
|
{
|
2021-04-01 17:42:18 +02:00
|
|
|
Self::default().insert_header(header)
|
2019-03-27 05:54:57 +01:00
|
|
|
}
|
|
|
|
|
2019-03-27 06:03:00 +01:00
|
|
|
/// Set HTTP version of this response
|
|
|
|
pub fn version(mut self, ver: Version) -> Self {
|
|
|
|
self.head.version = ver;
|
2019-03-27 05:54:57 +01:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2021-04-01 17:42:18 +02:00
|
|
|
/// Insert a header
|
|
|
|
pub fn insert_header<H>(mut self, header: H) -> Self
|
|
|
|
where
|
|
|
|
H: IntoHeaderPair,
|
|
|
|
{
|
|
|
|
if let Ok((key, value)) = header.try_into_header_pair() {
|
|
|
|
self.head.headers.insert(key, value);
|
2019-03-27 05:54:57 +01:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
panic!("Can not set header");
|
|
|
|
}
|
|
|
|
|
2019-03-27 06:03:00 +01:00
|
|
|
/// Append a header
|
2021-04-01 17:42:18 +02:00
|
|
|
pub fn append_header<H>(mut self, header: H) -> Self
|
2019-03-27 05:54:57 +01:00
|
|
|
where
|
2021-04-01 17:42:18 +02:00
|
|
|
H: IntoHeaderPair,
|
2019-03-27 05:54:57 +01:00
|
|
|
{
|
2021-04-01 17:42:18 +02:00
|
|
|
if let Ok((key, value)) = header.try_into_header_pair() {
|
|
|
|
self.head.headers.append(key, value);
|
|
|
|
return self;
|
2019-03-27 05:54:57 +01:00
|
|
|
}
|
|
|
|
panic!("Can not create header");
|
|
|
|
}
|
|
|
|
|
2019-03-27 06:03:00 +01:00
|
|
|
/// Set cookie for this response
|
2021-02-13 16:08:43 +01:00
|
|
|
#[cfg(feature = "cookies")]
|
2019-07-17 11:08:30 +02:00
|
|
|
pub fn cookie(mut self, cookie: Cookie<'_>) -> Self {
|
2019-03-27 06:03:00 +01:00
|
|
|
self.cookies.add(cookie.into_owned());
|
2019-03-27 05:54:57 +01:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-03-27 06:03:00 +01:00
|
|
|
/// Set response's payload
|
|
|
|
pub fn set_payload<B: Into<Bytes>>(mut self, data: B) -> Self {
|
2019-03-27 05:54:57 +01:00
|
|
|
let mut payload = h1::Payload::empty();
|
|
|
|
payload.unread_data(data.into());
|
2019-03-27 06:03:00 +01:00
|
|
|
self.payload = Some(payload.into());
|
2019-03-27 05:54:57 +01:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-03-27 06:03:00 +01:00
|
|
|
/// Complete response creation and generate `ClientResponse` instance
|
|
|
|
pub fn finish(self) -> ClientResponse {
|
2021-02-13 16:08:43 +01:00
|
|
|
// allow unused mut when cookies feature is disabled
|
|
|
|
#[allow(unused_mut)]
|
2019-03-27 06:03:00 +01:00
|
|
|
let mut head = self.head;
|
2019-03-27 05:54:57 +01:00
|
|
|
|
2021-02-13 16:08:43 +01:00
|
|
|
#[cfg(feature = "cookies")]
|
2020-06-19 15:34:14 +02:00
|
|
|
for cookie in self.cookies.delta() {
|
2021-04-09 19:07:10 +02:00
|
|
|
use actix_http::http::header::{self, HeaderValue};
|
|
|
|
|
2019-03-30 05:13:39 +01:00
|
|
|
head.headers.insert(
|
|
|
|
header::SET_COOKIE,
|
2020-06-19 15:34:14 +02:00
|
|
|
HeaderValue::from_str(&cookie.encoded().to_string()).unwrap(),
|
2019-03-30 05:13:39 +01:00
|
|
|
);
|
2019-03-27 05:54:57 +01:00
|
|
|
}
|
|
|
|
|
2019-03-27 06:03:00 +01:00
|
|
|
if let Some(pl) = self.payload {
|
2019-03-27 05:54:57 +01:00
|
|
|
ClientResponse::new(head, pl)
|
|
|
|
} else {
|
|
|
|
ClientResponse::new(head, h1::Payload::empty().into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-15 05:20:33 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use std::time::SystemTime;
|
|
|
|
|
2021-04-01 17:42:18 +02:00
|
|
|
use actix_http::http::header::HttpDate;
|
|
|
|
|
2019-04-15 05:20:33 +02:00
|
|
|
use super::*;
|
|
|
|
use crate::{cookie, http::header};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_basics() {
|
|
|
|
let res = TestResponse::default()
|
|
|
|
.version(Version::HTTP_2)
|
2021-04-01 17:42:18 +02:00
|
|
|
.insert_header((header::DATE, HttpDate::from(SystemTime::now())))
|
2019-04-15 05:20:33 +02:00
|
|
|
.cookie(cookie::Cookie::build("name", "value").finish())
|
|
|
|
.finish();
|
|
|
|
assert!(res.headers().contains_key(header::SET_COOKIE));
|
|
|
|
assert!(res.headers().contains_key(header::DATE));
|
|
|
|
assert_eq!(res.version(), Version::HTTP_2);
|
|
|
|
}
|
|
|
|
}
|