uses hyper-proxy 0.3.0
This commit is contained in:
@@ -19,14 +19,15 @@ fn test_http_proxy() {
|
||||
Server: proxied\r\n\
|
||||
Content-Length: 0\r\n\
|
||||
\r\n\
|
||||
"
|
||||
";
|
||||
};
|
||||
|
||||
let proxy = format!("http://{}", server.addr());
|
||||
let proxy_uri = format!("http://{}", server.addr());
|
||||
let proxy = reqwest::Proxy::http(&proxy_uri).unwrap();
|
||||
|
||||
let url = "http://hyper.rs/prox";
|
||||
let res = reqwest::Client::builder()
|
||||
.proxy(reqwest::Proxy::http(&proxy).unwrap())
|
||||
.proxy(proxy)
|
||||
.build()
|
||||
.unwrap()
|
||||
.get(url)
|
||||
|
||||
@@ -57,7 +57,6 @@ pub fn spawn(txns: Vec<Txn>) -> Server {
|
||||
Ok(nread) => n += nread,
|
||||
}
|
||||
}
|
||||
|
||||
match (::std::str::from_utf8(&expected), ::std::str::from_utf8(&buf[..n])) {
|
||||
(Ok(expected), Ok(received)) => assert_eq!(expected, received),
|
||||
_ => assert_eq!(expected, &buf[..n]),
|
||||
|
||||
Reference in New Issue
Block a user