9 releases (breaking)

Uses old Rust 2015

0.7.0 May 14, 2020
0.6.0 Jul 15, 2019
0.5.0 Apr 14, 2018
0.4.0 Feb 5, 2018
0.1.0 Jun 6, 2017

#394 in HTTP client

Download history 150/week @ 2024-11-03 923/week @ 2024-11-10 684/week @ 2024-11-17 301/week @ 2024-11-24 407/week @ 2024-12-01 1755/week @ 2024-12-08 441/week @ 2024-12-15 3/week @ 2024-12-22 93/week @ 2024-12-29 442/week @ 2025-01-05 888/week @ 2025-01-12 195/week @ 2025-01-19 678/week @ 2025-01-26 339/week @ 2025-02-02 135/week @ 2025-02-09 83/week @ 2025-02-16

1,243 downloads per month

Apache-2.0

59KB
1.5K SLoC

reqwest_mock

Docs Build Status

Provides a mockable [reqwest][]-like HTTP client.

Write your code generic over the Client trait, and in production use DirectClient while in testing you can use ReplayClient, which will record a request the first time and replay it every time the exact same request is made in the future.


lib.rs:

Provides a mockable reqwest-like HTTP client.

Write your code generic over the Client trait, and in production use DirectClient while in testing you can use ReplayClient, which will record a request the first time and replay it every time the exact same request is made in the future.

Examples

use reqwest_mock::{Client, DirectClient, ReplayClient, Error};
use reqwest_mock::header::USER_AGENT;

struct MyClient<C: Client> {
    client: C,
}

fn new_client() -> MyClient<DirectClient> {
    MyClient {
        client: DirectClient::new()
    }
}

#[cfg(test)]
fn test_client(path: &str) -> MyClient<ReplayClient> {
    MyClient {
        client: ReplayClient::new(path)
    }
}

impl<C: Client> MyClient<C> {
    /// For simplicity's sake we are not parsing the response but just extracting the
    /// response body.
    /// Also in your own code it might be a good idea to define your own `Error` type.
    pub fn get_time(&self) -> Result<String, Error> {
        let response = self.client
            .get("https://now.httpbin.org/")
            .header(USER_AGENT, "MyClient".parse().unwrap())
            .send()?;

        response.body_to_utf8()
    }
}

Dependencies

~6–17MB
~236K SLoC