Seekret's library for API testing runtime
Project description
Seekret API testing runtime
The seekret.apitest
package contains runtime functions and tools intended to ease API testing.
Seekret uses this library in automatically generated tests to help the readability of the generated tests, and implement common functionalities.
Quickstart
First, install seekret.apitest
::
pip install seekret.apitest
Now, in order to run a test:
- Store one or more generated tavern tests from the Seekret website in a directory.
- Copy the configuration file you received from Seekret to the same directory.
Your test directory should look like this:
/testdir
|-- api1_test.py
|-- api2_test.py
|-- ...
|-- run-profile.yaml
After you finish setting up your test directory, simply run pytest
.
Enable live logging
Use the --log-cli-level INFO
option to show outgoing requests and incoming responses live as they occur during the
test.
Run profile
Each test run requires a run profile. By default, Seekret reads the run profile from the run-profile.yaml
file in the
root directory, but you can provide a different run profile by specifying the --run-profile
flag.
The run profile sets:
- The target server of the tests
- Users and authentication configurations
target_server: https://example.com
users:
default:
auth:
type: bearer
data:
token: <API key of the testing account>
Users
The users
key contains the configuration of the user authentication. The data under the auth
block describes how to
authenticate as the user.
The following methods are currently available:
header
- sends the value in thedata
field as headers.bearer
- sends the value in thetoken
field ofdata
as a bearer token in theAuthorization
header.
Example of a generated test
Seekret generates the test to repeat an observed workflow. Values that have no importance to the workflow will be randomized during test generation according to their inferred format.
import seekret.apitest
def test_post_channels_post_messages(seekret: seekret.apitest.Context):
# Stage 1: POST /api/channels
with seekret.stage(method='POST', path='/api/channels') as request:
response = request(json={
'name': '<random name>'
})
assert response.status_code == 201
carry_0_responseBody_data_channel_id = response.search('json.data.channel.id')
# Stage 2: POST /api/channels/{channel_id}/messages
with seekret.stage(method='POST', path='/api/channels/{channel_id}/messages') as request:
response = request(json={
'message': '<random message>'
}, path_params={
'channel_id': carry_0_responseBody_data_channel_id
})
assert response.status_code == 201
In this generated tests, there are two stages:
- Create a channel:
POST /api/channels
- Send a message in the channel:
POST /api/channels/{channel_id}/messages
Seekret will generate the value transfers between the test stages. For instance, in this case, the ID of the created
channel from the first request, is used as the required channel_id
path parameter of the second request.
Seekret will also assert that the response has the observed status.
To aid debugging, when a test fails, Seekret will display the data of the requests and responses from the test.
Deep Dive
The generated test uses the seekret
fixture, which returns an instance of the seekret.apitest.Context
class. The
test context allows separating test stages with the stage
context manager, and sending requests to the target server.
The context uses the information from the run profile in order to determine the target server, and the
required authorization data.
You can choose the user for a request with by specifying the user
parameter in the request()
call to another user
from the run profile.
Setup and teardown
You can add setup and teardown logic to tests
using pytest fixtures. The seekret
fixture is available for
use in function-scoped fixtures for declaring setup stages and logging.
Consider the following example of setup and teardown logic:
import pytest
import seekret.apitest
@pytest.fixture
def channel(seekret: seekret.apitest.Context):
# Setup stage: happens before the test.
with seekret.stage(method='POST', path='/api/channels') as request:
response = request(json={
'name': 'Test Channel'
})
assert response.status_code == 201
channel_id = response.search('json.data.channel.id')
# Yielding runs the actual test body.
# Important! Yield outside of the stage context. Otherwise the test will start in the context of the setup stage.
yield channel_id
# Teardown stage: happens after the test.
with seekret.stage(method='DELETE', path='/api/channels/{channel_id}'):
response = request(path_params={
'channel_id': channel_id
})
assert response.status_code == 200
def test_post_messages_delete_messages(seekret: seekret.apitest.Context, channel):
# The 'channel' parameter has the value yielded from the 'channel' fixture.
# In this instance, 'channel' will be the ID of the created channel.
...
Default user for test
By default, request
calls will use the default
user if another user wasn't provided. You can set the default user
using the default_user
field of the seekret
value.
Seekret provides the default_user
test mark in order to specify a different default user for a specific test.
import pytest
import seekret.apitest
@pytest.mark.default_user('non-admin')
def test_create_user(seekret: seekret.apitest.Context):
with seekret.stage(method='POST', path='/api/users') as request:
# Sends the request with the authorization data of the 'non-admin' user.
response = request(json={
'user_name': '<random name>',
'password': '<random password>'
})
assert response.status_code == 403
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 Distributions
Built Distribution
File details
Details for the file seekret.apitest-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: seekret.apitest-0.3.1-py3-none-any.whl
- Upload date:
- Size: 15.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99e3a00d2cb67b99a3c8d78b6c08eb82ae731a8e0f6494da4763ed658469f3be |
|
MD5 | 11619982188a7c645896796cf530fda0 |
|
BLAKE2b-256 | 539aa8b59d1b0503b1e050da07548420545db8c34af0383addfdc52c845d79b4 |