Skip to main content

Yamas - Yet Another Mock API Server

Project description

Yamas - Yet Another Mock API Server

This project develops a simple mock API server for prototyping and testing client applications.

Based on http.server of Python3.6+, Yamas is a testing API server which can accept HTTP requests from a client and reply with mock HTTP responses. (Note: Yamas should not be used for production.)

The mock responses and the rules of selecting them are specified in a JSON file. Processing an request, Yamas locates the wanted mock response by matching the request path with a sequence of user-specified regular expressions and then looking up the response by the request method.

Usage

Yamas provides a command-line interface as follows:

yamas.py [-e|--endpoint host:port] -f|--file mock_responses_file
  • -e or --endpoint specifies the host address and the port number of the endpoint; if this is not specified, 0.0.0.0:7777 will be used.
  • -f or --file specifies the path of the JSON file which defines the mock responses and the selection rules.

For example,

yamas.py -e localhost:8080 -f mock_responses.json

Specification of mock responses

The mock responses and the rules of selecting them are specified in a JSON file, which is given on the command line. A sample specification is given as follows:

{
    "/users/\\w+/todo/\\d+": {
        "GET": {
            "status": 200,
            "body": {
                "id": 123,
                "task": "Buy milk",
                "pri": "low"
            }
        },
        "POST": {
            "status": 201,
            "body": {
                "id": 123
            }
        }
    },
    "/users/\\w+/profile.xml": {
        "GET": {
            "status": 200,
            "headers": {
                "Content-Type": "application/xml"
            },
            "body": "<profile><user>tomlee</user><name>Tom Lee</name><org>yam.ai</org><grade>premium</grade></profile>"
        }
    }
}

The root level is a JSON object. Inside the root object, the keys are Python regular expressions and the associated values are JSON ojbects. The regular expressions are used to match the path of a request. The JSON object value specifies the mock responses for each HTTP method. The matching is done in the order of the keys specified in the file. In other words, a key is selected one by one from the top to the bottom and its regular expression is used to match the request path.

When the request path matches the regular expression, the associated JSON object which specifies the mock responses will be selected. When the request path does not match the regular expression, the regular expression in the next key will be selected. If the request path matches no regular expression, a 404 Not Found response will be replied.

When the request path matches the regular expression in a key, the corresponding JSON object value will be used to construct the response. In such a JSON object, the keys are HTTP methods. The current version only supports GET and POST. The JSON object corresponding to a HTTP method key specifies a mock response.

The mock response object contains the following:

  • status specifies the status code of the response. If status is not specified, 200 OK will be used.
  • headers specifies a JSON object containing the header names and values. If there are no user-defined headers, headers can be omitted.
  • body specifies the body of the response. Its value can be either a string or a JSON object.If the value is a string, the response body will be in plain text. If the value is a JSON object, the response body will be the same JSON object; and the Content-Type: application/json header will be automatically added unless it is overrided by a different Content-Type header specified in the headers value.

Professional services

If you need any support or consultancy services from YAM AI Machinery, please find us at:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yamas-0.1.0.tar.gz (5.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page