Json wrapper around requests for simple smoke testing.


License
BSD-3-Clause
Install
pip install smolder==0.5.3

Documentation

Smolder

"Requests for humans." :) Build Status

The prevalence of SOA, microservices and dev/stage/live environment build processes precipitated the development of smolder. The challenges these technologies pose requires the use of restful api tests which are simple and repeatable on different endpoints without modifying the tests or the endpoints. A lot of these environments require agents running the tests to be inside the network boundary and running inside internal build pipelines.

Smolder aims to solve these problems by providing features such as:

  • Smoke test your rest API.
  • Validate response times.
  • Validate redirects.
  • Validate ssl certificates.
  • Validate headers.
  • Validate json object types using validictory
  • Write plugins using Yapsy
  • More

Installation

pip install git+https://github.com/sky-shiny/smolder.git

Example

After installing copy/paste the following into a bash shell:

cat <<EOF > github_status.yaml
---
tests:
  -
    name: "Github Status"
    outcomes:
      expect_status_code: 301
      response_redirect: "https://status.github.com/api/status.json"
    inputs:
      headers:
        User-Agent: "Smolder smoke test library"
    uri: /api/status.json
  -
    inputs:
      headers:
        User-Agent: "Smolder smoke test library"
    name: "Github Status ssl"
    outcomes:
      response_json_contains:
        status: good
      response_max_time_ms: 200
    port: 443
    protocol: https
    uri: /api/status.json
EOF
smolder status.github.com github_status.yaml

Expected Output: Output

Documentation

readthedocs

  1. tests
  2. plugins
  3. examples
  4. contributing
  5. history

Similar Projects

  1. Runscope
  2. vrest.io
  3. Stackoverflow

Thanks

https://github.com/njsaunders

https://github.com/nielsdraaisma

https://github.com/lotia

https://github.com/casibbald