2018-10-05 01:22:00 +02:00
|
|
|
extern crate actix;
|
2018-10-05 02:00:27 +02:00
|
|
|
extern crate actix_http;
|
2018-10-05 01:22:00 +02:00
|
|
|
extern crate actix_net;
|
|
|
|
extern crate actix_web;
|
|
|
|
extern crate futures;
|
|
|
|
|
|
|
|
use std::thread;
|
|
|
|
|
|
|
|
use actix::System;
|
|
|
|
use actix_net::server::Server;
|
2018-10-05 02:00:27 +02:00
|
|
|
use actix_web::{client, test};
|
2018-10-05 01:22:00 +02:00
|
|
|
use futures::future;
|
|
|
|
|
2018-10-05 05:02:10 +02:00
|
|
|
use actix_http::server::KeepAlive;
|
|
|
|
use actix_http::{h1, Error, HttpResponse, ServiceConfig};
|
2018-10-05 01:22:00 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_h1_v2() {
|
|
|
|
let addr = test::TestServer::unused_addr();
|
|
|
|
thread::spawn(move || {
|
|
|
|
Server::new()
|
|
|
|
.bind("test", addr, move || {
|
2018-10-05 02:00:27 +02:00
|
|
|
let settings = ServiceConfig::build()
|
2018-10-05 01:22:00 +02:00
|
|
|
.keep_alive(KeepAlive::Disabled)
|
|
|
|
.client_timeout(1000)
|
|
|
|
.client_shutdown(1000)
|
|
|
|
.server_hostname("localhost")
|
|
|
|
.server_address(addr)
|
|
|
|
.finish();
|
|
|
|
|
2018-10-05 05:02:10 +02:00
|
|
|
h1::H1Service::new(settings, |req| {
|
|
|
|
println!("REQ: {:?}", req);
|
|
|
|
future::ok::<_, Error>(HttpResponse::Ok().finish())
|
|
|
|
})
|
2018-10-05 01:22:00 +02:00
|
|
|
}).unwrap()
|
|
|
|
.run();
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut sys = System::new("test");
|
|
|
|
{
|
|
|
|
let req = client::ClientRequest::get(format!("http://{}/", addr).as_str())
|
|
|
|
.finish()
|
|
|
|
.unwrap();
|
|
|
|
let response = sys.block_on(req.send()).unwrap();
|
|
|
|
assert!(response.status().is_success());
|
|
|
|
}
|
|
|
|
}
|