apimock 2.9.2

API mock Server generating HTTP/JSON responses
Documentation
# apimock-rs

[![crates.io](https://img.shields.io/crates/v/apimock?label=latest)](https://crates.io/crates/apimock)
[![Documentation](https://docs.rs/apimock/badge.svg?version=latest)](https://docs.rs/apimock/latest)
[![Dependency Status](https://deps.rs/crate/apimock/latest/status.svg)](https://deps.rs/crate/apimock/latest)
[![Releases Workflow](https://github.com/nabbisen/apimock-rs/actions/workflows/release-executable.yaml/badge.svg)](https://github.com/nabbisen/apimock-rs/actions/workflows/)
[![License](https://img.shields.io/github/license/nabbisen/apimock-rs)](https://github.com/nabbisen/apimock-rs/blob/main/LICENSE)

## Summary

HTTP server generating REST/JSON responses. Aims to be mocking helper to develop microservices and APIs. Written in [Rust](https://www.rust-lang.org/) and based on [hyper](https://hyper.rs/).

Run `./apimock` or `./apimock -c apimock.toml` to start the server. It is single small native binary. Multiple platforms are supported and no installation is required.

- [Getting started]docs/GETTING-STARTED.md

## Screenshots

Server started to listen:

![server starts](docs/.assets/demo-01.png)

`curl` test result:

![server responds](docs/.assets/demo-02.png)

## Features

### 1. Basic

- GET / POST methods
- Multiple [`paths`]docs/CONFIGURE.md#urlpaths
- Multiple .json/.json5 files treated as JSON Response
- based on hyper v1

### 2. Customization

- Custom HTTP response codes: 3xx as redirects, and 4xx and 5xx as errors
- Custom response [headers]docs/CONFIGURE.md#urlheaders which are reusable
- Flexible responses with patterns and jsonpath queries. Even with the same API URL path, multiple responses can be returned. See [`url.paths_patterns`]docs/CONFIGURE.md#urlpaths_patterns
- Can specify response time on all or each API path

### 3. Dynamic processing

- Can [switch data directory paths]docs/CONFIGURE.md#urldata_dir_query_path manually in testing via specific HTTP request to make json responses flexible
- Dynamic path resolution with [`dyn_data_dir`]docs/CONFIGURE.md#generaldyn_data_dir

### 4. Usability

- Validates configuration: Missing JSON files, duplicate paths etc.
- Prints out routing at startup
- Describes request content on both HTTP headers and body (json or plain text) when [`verbose`]docs/CONFIGURE.md#generalverbose log is activated

### 5. spawn feature

- With `spawn` feature activated, the server is available as subprocess. The output will be returned via tokio mpsc queue.

### Reference

- [Configuration and options]docs/CONFIGURE.md
- [Design and specification]docs/SPECS.md

## Acknowledgements

Depends on:

[tokio](https://github.com/tokio-rs/tokio) / [hyper](https://hyper.rs/) / [toml](https://github.com/toml-rs/toml) / [serde](https://serde.rs/) / [serde_json](https://github.com/serde-rs/json) / [json5](https://github.com/callum-oakley/json5-rs) / [console](https://github.com/console-rs/console). In addition, [mdbook](https://github.com/rust-lang/mdBook) (as to workflows)