2017-12-27 02:14:37 +01:00
|
|
|
# Testing
|
|
|
|
|
|
|
|
Every application should be well tested and. Actix provides the tools to perform unit and
|
|
|
|
integration tests.
|
|
|
|
|
2017-12-27 04:48:02 +01:00
|
|
|
## Unit tests
|
|
|
|
|
|
|
|
For unit testing actix provides request builder type and simple handler runner.
|
|
|
|
[*TestRequest*](../actix_web/test/struct.TestRequest.html) implements builder-like pattern.
|
|
|
|
You can generate `HttpRequest` instance with `finish()` method or you can
|
|
|
|
run your handler with `run()` or `run_async()` methods.
|
|
|
|
|
|
|
|
```rust
|
|
|
|
# extern crate http;
|
|
|
|
# extern crate actix_web;
|
|
|
|
use http::{header, StatusCode};
|
|
|
|
use actix_web::*;
|
|
|
|
use actix_web::test::TestRequest;
|
|
|
|
|
|
|
|
fn index(req: HttpRequest) -> HttpResponse {
|
|
|
|
if let Some(hdr) = req.headers().get(header::CONTENT_TYPE) {
|
|
|
|
if let Ok(s) = hdr.to_str() {
|
2018-01-01 02:26:32 +01:00
|
|
|
return httpcodes::HTTPOk.into()
|
2017-12-27 04:48:02 +01:00
|
|
|
}
|
|
|
|
}
|
2018-01-01 02:26:32 +01:00
|
|
|
httpcodes::HTTPBadRequest.into()
|
2017-12-27 04:48:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let resp = TestRequest::with_header("content-type", "text/plain")
|
|
|
|
.run(index)
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
|
|
|
|
let resp = TestRequest::default()
|
|
|
|
.run(index)
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-12-27 02:14:37 +01:00
|
|
|
## Integration tests
|
|
|
|
|
|
|
|
There are several methods how you can test your application. Actix provides
|
|
|
|
[*TestServer*](../actix_web/test/struct.TestServer.html)
|
|
|
|
server that could be used to run whole application of just specific handlers
|
2018-02-19 22:18:18 +01:00
|
|
|
in real http server. *TrstServer::get()*, *TrstServer::post()* or *TrstServer::client()*
|
|
|
|
methods could be used to send request to test server.
|
2017-12-27 02:14:37 +01:00
|
|
|
|
|
|
|
In simple form *TestServer* could be configured to use handler. *TestServer::new* method
|
|
|
|
accepts configuration function, only argument for this function is *test application*
|
|
|
|
instance. You can check [api documentation](../actix_web/test/struct.TestApp.html)
|
|
|
|
for more information.
|
|
|
|
|
|
|
|
```rust
|
|
|
|
# extern crate actix_web;
|
|
|
|
use actix_web::*;
|
|
|
|
use actix_web::test::TestServer;
|
|
|
|
|
|
|
|
fn index(req: HttpRequest) -> HttpResponse {
|
2018-01-01 02:26:32 +01:00
|
|
|
httpcodes::HTTPOk.into()
|
2017-12-27 02:14:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2018-02-19 22:18:18 +01:00
|
|
|
let mut srv = TestServer::new(|app| app.handler(index)); // <- Start new test server
|
|
|
|
|
|
|
|
let request = srv.get().finish().unwrap(); // <- create client request
|
|
|
|
let response = srv.execute(request.send()).unwrap(); // <- send request to the server
|
|
|
|
assert!(response.status().is_success()); // <- check response
|
|
|
|
|
|
|
|
let bytes = srv.execute(response.body()).unwrap(); // <- read response body
|
2017-12-27 02:14:37 +01:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Other option is to use application factory. In this case you need to pass factory function
|
|
|
|
same as you use for real http server configuration.
|
|
|
|
|
|
|
|
```rust
|
2018-02-19 22:18:18 +01:00
|
|
|
# extern crate http;
|
2017-12-27 02:14:37 +01:00
|
|
|
# extern crate actix_web;
|
2018-02-19 22:18:18 +01:00
|
|
|
use http::Method;
|
2017-12-27 02:14:37 +01:00
|
|
|
use actix_web::*;
|
|
|
|
use actix_web::test::TestServer;
|
|
|
|
|
|
|
|
fn index(req: HttpRequest) -> HttpResponse {
|
2018-01-01 02:26:32 +01:00
|
|
|
httpcodes::HTTPOk.into()
|
2017-12-27 02:14:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// This function get called by http server.
|
|
|
|
fn create_app() -> Application {
|
|
|
|
Application::new()
|
|
|
|
.resource("/test", |r| r.h(index))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2018-02-19 22:18:18 +01:00
|
|
|
let mut srv = TestServer::with_factory(create_app); // <- Start new test server
|
|
|
|
|
|
|
|
let request = srv.client(Method::GET, "/test").finish().unwrap(); // <- create client request
|
|
|
|
let response = srv.execute(request.send()).unwrap(); // <- send request to the server
|
|
|
|
|
|
|
|
assert!(response.status().is_success()); // <- check response
|
2017-12-27 02:14:37 +01:00
|
|
|
}
|
|
|
|
```
|
2018-01-31 00:13:33 +01:00
|
|
|
|
|
|
|
## WebSocket server tests
|
|
|
|
|
|
|
|
It is possible to register *handler* with `TestApp::handler()` method that
|
|
|
|
initiate web socket connection. *TestServer* provides `ws()` which connects to
|
|
|
|
websocket server and returns ws reader and writer objects. *TestServer* also
|
|
|
|
provides `execute()` method which runs future object to completion and returns
|
|
|
|
result of the future computation.
|
|
|
|
|
|
|
|
Here is simple example, that shows how to test server websocket handler.
|
|
|
|
|
|
|
|
```rust
|
|
|
|
# extern crate actix;
|
|
|
|
# extern crate actix_web;
|
|
|
|
# extern crate futures;
|
|
|
|
# extern crate http;
|
|
|
|
# extern crate bytes;
|
|
|
|
|
|
|
|
use actix_web::*;
|
|
|
|
use futures::Stream;
|
|
|
|
# use actix::prelude::*;
|
|
|
|
|
|
|
|
struct Ws; // <- WebSocket actor
|
|
|
|
|
|
|
|
impl Actor for Ws {
|
|
|
|
type Context = ws::WebsocketContext<Self>;
|
|
|
|
}
|
|
|
|
|
2018-02-27 20:31:54 +01:00
|
|
|
impl StreamHandler<ws::Message, ws::WsError> for Ws {
|
2018-01-31 00:13:33 +01:00
|
|
|
|
|
|
|
fn handle(&mut self, msg: ws::Message, ctx: &mut Self::Context) {
|
|
|
|
match msg {
|
2018-02-10 09:05:20 +01:00
|
|
|
ws::Message::Text(text) => ctx.text(text),
|
2018-01-31 00:13:33 +01:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut srv = test::TestServer::new( // <- start our server with ws handler
|
|
|
|
|app| app.handler(|req| ws::start(req, Ws)));
|
|
|
|
|
|
|
|
let (reader, mut writer) = srv.ws().unwrap(); // <- connect to ws server
|
|
|
|
|
|
|
|
writer.text("text"); // <- send message to server
|
|
|
|
|
|
|
|
let (item, reader) = srv.execute(reader.into_future()).unwrap(); // <- wait for one message
|
|
|
|
assert_eq!(item, Some(ws::Message::Text("text".to_owned())));
|
|
|
|
}
|
|
|
|
```
|