Provides testing for JSON APIs with Behave
Project description
Provides testing for JSON APIs with Behave
Installation
pip install behave-web-api
Import steps in your features/steps/init.py
from behave_web_api.steps import *
So you can use the steps in your feature files
Feature: Doing http requests
Scenario: Send text body and headers
Given I set header "X-My-Header" with value "Something"
When I send a POST request to "/requests/echo" with body:
"""
Something
"""
Then the response code should be 200
And the response should contain json:
"""
{
"headers": {
"X-My-Header": "Something"
},
"body": "%[A-Za-z]+%"
}
"""
Scenario: Send file using variables and environment variables
Given I set the variable "DATA_DIR" with "$PWD/features/data"
And I attach the file "$DATA_DIR/favicon.ico" as "upload"
When I send a POST request to "/requests/echo"
Then the response code should be 200
And print response
And run using BASE_URL environment variable:
BASE_URL=localhost:5000 behave features/requests.feature
Available Steps
I set variable “{}” with value “{}”
I set header “{}” with value “{}”
I attach the file “{}” as “{}”
I send a {} request to “{}” with body
I send a {} request to “{}” with values
I send a {} request to “{}”
the response code should be {}
the response should contain json
the response should contain text
print response
Acknowledgments
The REST steps are based on Behat WebApiExtension [1]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
behave-web-api-1.0.5.tar.gz
(4.3 kB
view hashes)
Built Distribution
Close
Hashes for behave_web_api-1.0.5-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c04c5d93534dc1a43c6624bbab4d2d76fc5364009e5b986cd5622c3d8506d14 |
|
MD5 | 0d4e562736b0055b6ed402f27727fa01 |
|
BLAKE2b-256 | ef3bdc517bb810acc4391c9259b391e0459c16431829c41e4c57249725219f7c |