Skip to main content

vedro-replay package

Project description

vedro-replay

PyPI Python Version

Documentation

replay-tests

The idea is to test the API using requests that are sent to the production application. Having requests, we can send them to the API of the test version and to the API of the stable version. After receiving two responses from two versions of the application, you can compare the response status, headers, and body. The stable version in this case is considered to work correctly and in case of a difference in the answers it means that there is a bug (or feature) in the test version of the application.

vedro-replay

Python package for working with replay tests on vedro (docs: vedro.io) framework. Enable generation of replay-tests by request files and contains the necessary tools for working and configuring tests.

Installation

$ pip3 install vedro-replay

Usage

Commands

$ vedro-replay -h
usage: vedro-replay [-h] {generate} ...

vedro-replay commands

positional arguments:
  {generate}  List of available commands
    generate  Generate vedro-replay tests

options:
  -h, --help  show this help message and exit

Generate vedro-replay tests

$ vedro-replay generate -h
usage: vedro-replay generate [-h] [--requests-dir REQUESTS_DIR] [--force] 
                    [{all,vedro_cfg,config,interfaces,contexts,helpers,helpers_methods,scenarios}] - by default all

positional arguments:
  {all,vedro_cfg,interfaces,contexts,helpers,helpers_methods,scenarios}
                        Generation option

options:
  -h, --help            show this help message and exit
  --requests-dir REQUESTS_DIR
                        The path to the directory containing the request files
  --force               Forced regeneration. The files will be overwritten

To be able to generate a test, you need to have a directory with files containing requests (requests directory is expected by default, you can specify a specific directory using the --requests-dir argument).

Example:

tests # Root directory
|----requests
|----|----byid.http # File with API requests of the /byid method
|----|----search.http # File with API requests of the /search method

Example of file contents (for more information about the request format, see the following paragraph):

$ cat requests/byid.http
### byid request with id=123
GET http://{{host}}/byid?id=123

Having requests, you can generate tests on them:

$ vedro-replay generate

Example of generation:

tests # Root directory
|----requests
|----|----byid.http # File with API requests of the /byid method
|----|----search.http # File with API requests of the /search method
|----contexts 
|----helpers
|----interfaces 
|----scenarios # Testing scenarios
|----|----byid.py # Scenario, using requests from a file requests/byid.http
|----|----search.py
|----config.py
|----vedro.cfg.py

Request format

The request format is based on format .http from jetbrains
The structure of the request has the following form:

### Comment
Method Request-URI
Header-field: Header-value

JSON-Body

Rules:

  • Each request starts with a string with the characters "###" at the beginning. Also on the same line it is possible to write a comment (optional) to the query that will be output in the test being run.
  • http method must consist of capital letters
  • Request-URI should always have the format http(s)://{{host}}[path][query]. The host looks like this, for the ability to send requests for tests using an http client inside the IDE Idea/Pycharm/...
  • Headers are optional
  • Json-body is optional

Examples can be found here and here

Running tests

To run the tests, need two hosts to send requests to them. You need to set environment variables in any convenient way:

GOLDEN_API_URL=master.app
TESTING_API_URL=branch.app

After that, you can run the tests:

$ vedro run -vvv 

Setting up scenario

Sometimes there may be fields or headers in the API response that have a random value or that will differ from the value from the response from the test application. Such values will not allow testing, so they must be cut from the comparison of the two answers.

# helpers/helpers.py:

def prepare_byid(response) -> Response: # Generated method for scenario byid.py
   exclude_headers = ['date'] # Date header exclude
   exclude_body = ['meta.api_version'] # Excluding a field from the body
   return filter_response(JsonResponse(response), exclude_headers, exclude_body)

To ignore headers, simply specify their names separated by commas, for example:

exclude_headers = ['header-name', 'x-header-name']

To exclude json fields from the response, use the format below

Original response body:

{
  "meta": {
    "api_version": "1.0.0",
    "issue_date": "20230926"
  },
  "items": [
    {
      "id": "1_abc",
      "name": "chair"
    },
    {
      "id": "2_sdv",
      "name": "table"
    }
  ]
}
  • Exclude by json keys:
exclude_body = ['meta.api_version']

Result:

{
  "meta": {
    "issue_date": "20230926"
  },
  "items": [
    {
      "id": "1_abc",
      "name": "chair"
    },
    {
      "id": "2_sdv",
      "name": "table"
    }
  ]
}
  • Exclude for each list element:
exclude_body = ['items.*.id']

Result:

{
  "meta": {
    "api_version": "1.0.0",
    "issue_date": "20230926"
  },
  "items": [
    {
      "name": "chair"
    },
    {
      "name": "table"
    }
  ]
}
  • Exclude list item by index:
exclude_body = ['items.1']

Result:

{
  "meta": {
    "api_version": "1.0.0",
    "issue_date": "20230926"
  },
  "items": [
    {
      "id": "1_abc",
      "name": "chair"
    }
  ]
}
  • Exclude string value by regular expression
exclude_body = ['items.*.id:\d+']

Result:

{
  "meta": {
    "api_version": "1.0.0",
    "issue_date": "20230926"
  },
  "items": [
    {
      "id": "1",
      "name": "chair"
    },
    {
      "id": "2",
      "name": "table"
    }
  ]
}

Rules exclude:

  • Dictionary keys are separated by a symbol '.'
  • If the value is a list and you need to bypass all the elements of the list, use the symbol '*'
  • The exclude path and the regular expression are separated by a symbol ':'
  • If the path is not contained (or not completely) in the dictionary, nothing will be cut. Similarly, for a regular expression, if nothing was found for the regular expression, the value will not change

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

vedro-replay-1.0.0.tar.gz (16.8 kB view details)

Uploaded Source

Built Distribution

vedro_replay-1.0.0-py3-none-any.whl (18.4 kB view details)

Uploaded Python 3

File details

Details for the file vedro-replay-1.0.0.tar.gz.

File metadata

  • Download URL: vedro-replay-1.0.0.tar.gz
  • Upload date:
  • Size: 16.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for vedro-replay-1.0.0.tar.gz
Algorithm Hash digest
SHA256 00949356e3eb03a843867631abbde2d9737569bd73a234f8eff5182b801935bb
MD5 48547199d2634a25b1657973b1ce70d0
BLAKE2b-256 1fb0afa334b5e941ec237ddbdfc91ad1318697556c34b1b71babc21ca5452a2b

See more details on using hashes here.

File details

Details for the file vedro_replay-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: vedro_replay-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 18.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for vedro_replay-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7df695bc6db3997d07a8bdcb2ff064b1fe93ef9b8f808f89c35acd3c7ab9aafd
MD5 22ef30739ba6177682fed26c35b2b3f3
BLAKE2b-256 d0e06219a5793683f9529510fd9785f060913705e89a948a962021e3cd3729db

See more details on using hashes here.

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