1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-19 16:58:14 +00:00
actix-web/awc/src/test.rs

120 lines
3.4 KiB
Rust
Raw Normal View History

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