Implements Gherking language for REST services.
Project description
Behave Restful is a Behavior Driven Development (BDD) framework based on behave, that implements a language suitable to test and validate REST APIs and Services. It leverages the power of the gherkin language to write business readable tests that validate the behavior of REST APIs.
Although, Behave Restful is implemented in python and uses behave as underlying framework, it can test services implemented in any language as easy as:
Feature: API to add a new book to our collection
As a user, I want to add a new book to my "to-read" collection.
Scenario: Add a new book to collection.
Given a request url http://my.reads/api/books
And a request json payload
"""
{
"category": "reference",
"author": "Nigel Rees",
"title": "Sayings of the Century",
"price": 8.95,
"status": "to-read"
}
"""
When the request sends POST
Then the response status is CREATED
And the response json matches
"""
{
"title": "BookObject",
"type": "object"
"properties": {
"id": {"type": "number"},
"category": {"type": "string"},
"author": {"type": "string"},
"title": {"type": "string"},
"price": {"type": "number"},
"status": {"type": "string", "enum": ["to-read", "reading", "read"]}
},
"required": ["id", "category", "title"]
}
"""
And the response json at $.id is equal to 100
And the response json at $.category is equal to "reference"
And the response json at $.title is equal to "Sayings of the Century"
As you can see in the example, we send a POST request to the specified url with a JSON payload, and we can validate the result very easy. First, we verify that the status of the response is CREATED (it succeeds). Then we validate the response JSON body using the expected JSON Schema. Finally, we validate specific values in the response using JSONPath
Installation
Use pip to install behave-restful in your project
pip install behave-restful
Setup
To add support for behave-restful steps in your .feature files, you need to include behave-restful’s environment and step definitions.
You can do this simply by adding two boilerplate files to your project:
In the root of your features directory, add this environment.py file:
# {your_project}/features/en/__init__.py
import os
import behave_restful.app as br_app
def before_all(context):
this_directory = os.path.abspath(os.path.dirname(__file__))
br_app.BehaveRestfulApp().initialize_context(context, this_directory)
context.hooks.invoke(br_app.BEFORE_ALL, context)
def after_all(context):
context.hooks.invoke(br_app.AFTER_ALL, context)
def before_feature(context, feature):
context.hooks.invoke(br_app.BEFORE_FEATURE, context, feature)
def after_feature(context, feature):
context.hooks.invoke(br_app.AFTER_FEATURE, context, feature)
def before_scenario(context, scenario):
context.hooks.invoke(br_app.BEFORE_SCENARIO, context, scenario)
def after_scenario(context, scenario):
context.hooks.invoke(br_app.AFTER_SCENARIO, context, scenario)
def before_step(context, step):
context.hooks.invoke(br_app.BEFORE_STEP, context, step)
def after_step(context, step):
context.hooks.invoke(br_app.AFTER_STEP, context, step)
def before_tag(context, tag):
context.hooks.invoke(br_app.BEFORE_TAG, context, tag)
def after_tag(context, tag):
context.hooks.invoke(br_app.AFTER_TAG, context, tag)
And under features/steps add this __init__.py file:
# {your_project}/features/steps/__init__.py
from behave_restful.lang import *
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
Built Distribution
File details
Details for the file behave-restful-0.4.4.tar.gz
.
File metadata
- Download URL: behave-restful-0.4.4.tar.gz
- Upload date:
- Size: 17.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b35841db24f53aa7a83b2eef4e5c81219b395c2e712b7131c44773954c541b9 |
|
MD5 | a3d0521600f9382b7a55ed93b5f23522 |
|
BLAKE2b-256 | b88725ab8ba0f6715303416a22cb85d646b750e4076e149c28745f0a3dc554a5 |
File details
Details for the file behave_restful-0.4.4-py2.py3-none-any.whl
.
File metadata
- Download URL: behave_restful-0.4.4-py2.py3-none-any.whl
- Upload date:
- Size: 20.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa40b70f37443dca8526eb6b2c22d510d9c9d629b0d9e52c8806a0c2bb0cb41d |
|
MD5 | c2f0c51cff4be7b3905644fbba8db6e9 |
|
BLAKE2b-256 | 2ab011d05123b6b3a9bc0478f14bf9b53ba7bc17315a454a343e5e8c3b59e527 |