extern crate actix_web; extern crate http; extern crate time; use actix_web::*; use std::str::FromStr; use time::Duration; use http::{header, Method, Version, HeaderMap, Uri}; #[test] fn test_response_cookies() { let mut headers = HeaderMap::new(); headers.insert(header::COOKIE, header::HeaderValue::from_static("cookie1=value1; cookie2=value2")); let req = HttpRequest::new( Method::GET, Uri::from_str("/").unwrap(), Version::HTTP_11, headers, Payload::empty()); let cookies = req.cookies().unwrap(); let resp = httpcodes::HTTPOk .build() .cookie(headers::Cookie::build("name", "value") .domain("www.rust-lang.org") .path("/test") .http_only(true) .max_age(Duration::days(1)) .finish()) .del_cookie(&cookies[0]) .body(Body::Empty); assert!(resp.is_ok()); let resp = resp.unwrap(); let mut val: Vec<_> = resp.headers().get_all("Set-Cookie") .iter().map(|v| v.to_str().unwrap().to_owned()).collect(); val.sort(); assert!(val[0].starts_with("cookie1=; Max-Age=0;")); assert_eq!( val[1],"name=value; HttpOnly; Path=/test; Domain=www.rust-lang.org; Max-Age=86400"); }