Testing framework to ease Connect EaaS Processors development.
Project description
Connect DevOps Testing Library
Testing library to ease Connect EaaS Processors development.
Install
Connect DevOps Testing Library
can be installed from pypi.org using pip:
$ pip install connect-devops-testing-library
Usage
DevOps Testing Library has a small request builder to ease the manipulation of the connect requests during testing:
from connect.devops_testing import fixures
import os
template = os.path.dirname(__file__) + '/request.json'
request = fixures.make_request_builder(template) \
.with_type('purchase') \
.with_asset_product('PRD-000-000-000', 'Product Name') \
.with_asset_configuration_param('SOME_ASSET_CFG__PARAM_ID_A', 'some_cfg_value_a') \
.with_asset_param('SOME_ASSET_PARAM_ID_001', 'some_value_001') \
.with_asset_param('SOME_ASSET_PARAM_ID_002', 'some_value_002') \
.build()
DevOps Testing Library also has several built-in assert functions that can be easily used to evaluate a connect request response:
from connect.devops_testing import asserts
asserts.request_status(request, 'approved')
asserts.asset_status(request, 'active')
asserts.asset_params_value_not_equal(request, 'SOME_ASSET_PARAM_ID_001', 'some_expected_value')
Using these two features you can easily create a small test to check a purchase request of your processor:
from connect.devops_testing import fixures, asserts
from my_ext.extension import MyExtension
import os
def test_should_approve_request(mocked_connect_client, mocked_service_client, logger, eaas_config):
template = os.path.dirname(__file__) + '/request.json'
# prepare the request.
request = fixures.make_request_builder(template) \
.with_type('purchase') \
.with_status('pending') \
.with_asset_param('subscription_id', '') \
.build()
# instantiate and execute the extension for the given request.
extension = MyExtension(mocked_connect_client, logger, eaas_config)
result = extension.process_asset_adjustment_request(request)
# evaluate the task result and request.
asserts.task_response_status(result, 'success')
asserts.request_status(request, 'approved')
asserts.asset_status(request, 'active')
asserts.asset_params_value(request, 'subscription_id', '==', 'ID:123456789')
Additionally, you may want to create real end-to-end test calling Connect and evaluating the processed request, for this
you should use the built-in request dispatcher. The dispatcher will take automatically the required credentials from the
environment variables in CONNECT_API_KEY
and CONNECT_API_URL
. Alternatively, you can pass explicitly the credentials
to the make_request_dispatcher(api_key=XXX, api_url=YYY)
function. Let's see example:
from connect.devops_testing import asserts, fixures
import os
def test_should_approve_purchase_request_successfully():
template = os.path.dirname(__file__) + '/request.json'
# prepare the request.
request = fixures.make_request_builder(template) \
.with_type('purchase') \
.with_status('pending') \
.with_asset_param('subscription_id', '') \
.build()
# dispatch the request to connect and wait some time so the
# processor can process the request.
request = fixures.make_request_dispatcher() \
.provision_request(request, 10, 20)
# evaluate the processed request.
asserts.request_status(request, 'approved')
asserts.asset_status(request, 'active')
asserts.asset_params_value(request, 'subscription_id', '==', 'ID:123456789')
Once the request is dispatched the Dispatcher will reload the request again every 10
seconds a maximum of 20
attempts. If the request has not been processed the asserts may fail. The wait time between request reload can be
configured directly in the .provision_request(timeout=10, max_attempt=20)
method call.
Obviously, some Connect processors may take a lot of time to process a request, for those type of processors this kind of end-to-end test is not suitable.
Finally, the DevOps Testing Library also allows you to easily use Behave! BDD tool for you test. You just need to set
the following code in your features/environment.py
file
from connect.devops_testing.bdd.fixures import use_connect_request_dispatcher, use_connect_request_builder
# import the built-in steps for e2e testing.
from connect.devops_testing.bdd import steps
def before_all(context):
# attach the request dispatcher to the behave context if you want do e2e test.
use_connect_request_dispatcher(context)
# attach the request builder to the behave context.
use_connect_request_builder(context)
It's time to define the feature file in features/purchase.feature
:
Feature: Purchase a new subscription.
Scenario: Customer buys a subscription.
Given a new valid email address
When subscription request is processed
Then the subscription id is provided
Now let's define the steps in features/steps/purchase.py
file
from behave import given, then
from connect.devops_testing import asserts
import os
@given("a new valid email address")
def step_impl(context):
context.request = context.builder \
.from_file(os.path.dirname(__file__) + '/request.json') \
.with_asset_param('CUSTOMER_EMAIL_ADDRESS', 'vincent.vega@gmail.com') \
.build()
@then("the subscription id is provided")
def step_impl(context):
asserts.request_status(context.request, 'approved')
asserts.asset_status(context.request, 'active')
asserts.asset_params_value_not_equal(context.request, 'CUSTOMER_EMAIL_ADDRESS', '')
The @when("subscription request is processed")
is provided by the DevOps Testing Library.
License
Connect DevOps Testing Library
is released under the Apache License Version 2.0.
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
Built Distribution
Hashes for connect-devops_testing-library-24.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6391e7058ab55dabd70ce47303cff18a6e4dcc45c57d4b87b9bc6f8a2a4d581 |
|
MD5 | 58aa2164f4d8f2d9bd56e5f19c81d7cb |
|
BLAKE2b-256 | 0873348c3f7fd479c2cd6e39daa0a014cfbf8b73c593c31b0a6f30b00fb6f589 |
Hashes for connect_devops_testing_library-24.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8604e1642968d34ba4db9ee1121d6cab89eb1bf129a0823c8d95f076a9cbe0fd |
|
MD5 | b263c43ff1f8db6cc89baa587d97d15b |
|
BLAKE2b-256 | a57f48e644e223bbed6c55a4ad562710bdf36ccfedac8bd34cdf9ab8942aac80 |