httpmock

HTTP mocking library for Rust.

[![Build Status](https://dev.azure.com/alexliesenfeld/httpmock/_apis/build/status/alexliesenfeld.httpmock?branchName=master)](https://dev.azure.com/alexliesenfeld/httpmock/_build/latest?definitionId=2&branchName=master) [![codecov](https://codecov.io/gh/alexliesenfeld/httpmock/branch/master/graph/badge.svg)](https://codecov.io/gh/alexliesenfeld/httpmock) [![crates.io](https://img.shields.io/crates/d/httpmock.svg)](https://crates.io/crates/httpmock) [![Rust](https://img.shields.io/badge/rust-1.45%2B-blue.svg?maxAge=3600)](https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1452-2020-08-03) [![License](https://img.shields.io/github/license/alexliesenfeld/httpmock.svg)](LICENSE)

Documentation · Crate · Report Bug · Request Feature · Changelog

Features

Getting Started

Add httpmock to Cargo.toml:

toml [dev-dependencies] httpmock = "0.5.6" You can then use httpmock as follows: ```rust use httpmock::MockServer; use httpmock::Method::GET;

// Start a lightweight mock server. let server = MockServer::start();

// Create a mock on the server. let hellomock = server.mock(|when, then| { when.method(GET) .path("/translate") .queryparam("word", "hello"); then.status(200) .header("Content-Type", "text/html; charset=UTF-8") .body("Привет"); });

// Send an HTTP request to the mock server. This simulates your code. let response = isahc::get(server.url("/translate?word=hello")).unwrap();

// Ensure the specified mock was called exactly one time (or fail with a detailed error description). hellomock.assert(); // Ensure the mock server did respond as specified. asserteq!(response.status(), 200); ```

The above example will spin up a lightweight HTTP mock server and configure it to respond to all GET requests to path /translate with query parameter word=hello. The corresponding HTTP response will contain the text body Привет.

Usage

See the reference docs for detailed API documentation.

Examples

You can find examples in the httpmock test directory. The reference docs also contain a lot of examples. There is an online tutorial as well.

License

httpmock is free software: you can redistribute it and/or modify it under the terms of the MIT Public License.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MIT Public License for more details.