1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#[test]
fn getting_started_test() {
use httpmock::prelude::*;
// Start a lightweight mock server.
let server = MockServer::start();
// Create a mock on the server.
let hello_mock = server.mock(|when, then| {
when.method("GET")
.path("/translate")
.query_param("word", "hello");
then.status(200)
.header("content-type", "text/html; charset=UTF-8")
.body("hola");
});
// Send an HTTP request to the mock server. This simulates your code.
let response = reqwest::blocking::get(server.url("/translate?word=hello")).unwrap();
// Ensure the specified mock was called.
hello_mock.assert();
// Ensure the mock server did respond as specified.
assert_eq!(response.status(), 200);
}
#[tokio::test]
async fn async_getting_started_test() {
use httpmock::prelude::*;
// Start a lightweight mock server.
let server = MockServer::start_async().await;
// Create a mock on the server.
let mock = server
.mock_async(|when, then| {
when.method(GET)
.path("/translate")
.query_param("word", "hello");
then.status(200)
.header("content-type", "text/html; charset=UTF-8")
.body("hola");
})
.await;
// Send an HTTP request to the mock server. This simulates your code.
let client = reqwest::Client::new();
let response = client
.get(server.url("/translate?word=hello"))
.send()
.await
.unwrap();
// Ensure the specified mock was called exactly one time (or fail with a
// detailed error description).
mock.assert();
// Ensure the mock server did respond as specified.
assert_eq!(response.status(), 200);
}