Add unittest for cookie handling on redirects.

This commit is contained in:
Jacob Hoffman-Andrews
2020-08-04 22:37:43 -07:00
committed by Martin Algesten
parent d52fa78ebc
commit 99cdff7519
2 changed files with 74 additions and 6 deletions

View File

@@ -9,14 +9,35 @@ pub struct TestServer {
pub done: Arc<AtomicBool>,
}
// Read a stream until reaching a blank line, in order to consume
// request headers.
pub fn read_headers(stream: &TcpStream) {
for line in BufReader::new(stream).lines() {
if line.unwrap() == "" {
break;
pub struct TestHeaders(Vec<String>);
impl TestHeaders {
// Return the path for a request, e.g. /foo from "GET /foo HTTP/1.1"
pub fn path(&self) -> &str {
if self.0.len() == 0 {
""
} else {
&self.0[0].split(" ").nth(1).unwrap()
}
}
pub fn headers(&self) -> &[String] {
&self.0[1..]
}
}
// Read a stream until reaching a blank line, in order to consume
// request headers.
pub fn read_headers(stream: &TcpStream) -> TestHeaders {
let mut results = vec![];
for line in BufReader::new(stream).lines() {
match line {
Err(e) => panic!(e),
Ok(line) if line == "" => break,
Ok(line) => results.push(line),
};
}
TestHeaders(results)
}
impl TestServer {