1
0
mirror of https://github.com/actix/actix-website synced 2024-11-24 00:41:07 +01:00
actix-website/content/docs/testing.md

53 lines
2.0 KiB
Markdown
Raw Normal View History

2018-05-22 23:15:08 +02:00
---
title: Testing
menu: docs_advanced
weight: 210
---
# Testing
2019-06-24 23:43:31 +02:00
Every application should be well tested. Actix-web provides tools to perform unit and
2018-05-22 23:15:08 +02:00
integration tests.
# Unit Tests
2019-06-24 23:43:31 +02:00
For unit testing, actix-web provides a request builder type and a simple handler runner.
[*TestRequest*](https://docs.rs/actix-web/1.0.2/actix_web/test/struct.TestRequest.html)
2018-05-22 23:15:08 +02:00
implements a builder-like pattern.
2019-06-17 21:39:58 +02:00
You can generate a `HttpRequest` instance with `to_http_request()`, or you can
run your handler with `block_on()`.
{{< include-example example="testing" file="main.rs" section="unit-tests" >}}
2018-05-22 23:15:08 +02:00
# Integration tests
2019-06-24 23:43:31 +02:00
There a few methods for testing your application. Actix-web can be used
2018-05-22 23:15:08 +02:00
to run the application with specific handlers in a real http server.
2019-06-24 23:43:31 +02:00
`TestRequest::get()`, `TestRequest::post()`, and `TestRequest::client()`
2018-05-22 23:15:08 +02:00
methods can be used to send requests to the test server.
2019-06-24 23:43:31 +02:00
To create a `Service` for testing, use the `test::init_serivce` method which accepts a
regular `App` builder.
2018-05-22 23:15:08 +02:00
2019-06-24 23:43:31 +02:00
> Check the [api documentation](https://docs.rs/actix-web/1.0.2/actix_web/test/index.html)
2018-05-22 23:15:08 +02:00
> for more information.
2019-06-17 21:39:58 +02:00
{{< include-example example="testing" file="integration_one.rs" section="integration-one" >}}
2018-05-22 23:15:08 +02:00
2019-06-24 23:43:31 +02:00
If you need more complex application configuration testing should be very similar to creating
the normal application. For example, you may need to initialize application state. Create an
`App` with a `data` method and attach state just like you would from a normal application.
2018-05-22 23:15:08 +02:00
2019-06-17 21:39:58 +02:00
{{< include-example example="testing" file="integration_two.rs" section="integration-two" >}}
2018-05-22 23:15:08 +02:00
2018-05-23 22:35:42 +02:00
# Stream response tests
2019-06-24 23:43:31 +02:00
If you need to test stream it would be enough to convert a
[*ClientResponse*](../../actix-web/actix_web/client/struct.ClientResponse.html) to future
and execute it.
For example of testing
[*Server Sent Events*](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events).
2018-05-23 22:35:42 +02:00
2019-06-17 21:39:58 +02:00
{{< include-example example="testing" file="stream_response.rs" section="stream-response" >}}