A TIBCO Fulfilment Provisioning test helper
Project description
FpTest
Overview
class TerminateGponLinkTest(fptest.FpTest):
def test_workorders(self):
expected_workorders = [('LST-ONTDETAIL', 'WOS_Completed'), ('DEL-ONT', 'WOS_Completed')]
actual_workorders = [(wo.name, wo.status) for wo in self.cart_order_tracing.outgoing_workorders]
self.assertListEqual(expected_workorders, actual_workorders)
def request(self):
return """
<request>
<so>
<orderId>1412685518565</orderId>
<sod>
<!-- Snipped for brevity -->
"""
fptest.FpTest extends unittest.TestCase and overrides the setUp method to post the contents of request() to FP. It then parses ../runtime/FPNode/cartOrderTracing.00000.log into a format where it is much easier to pull information out of the trace file.
You can then write tests in Python that are expressive and repeatable. I am using nosetests and the --with-xunit flag to output a file of test results that Jenkins is post-processing!
Installation
pip install fptest
Setup
The following file structure is assumed:
FP-Project/ |-- IntegrationTests `-- runtime `-- FPNode
The directory structure is important as FpTest will look in ../runtime/FPNode for the cartOrderTracing log file.
Samples
There are two samples in the /samples directory of this project. These are tests that I am successfully running against my instance of FP.
Documentation to come
Explanation of setting up cartridge simulators to pass / fail depending on input values
Explanation of raw_params and params in the work order
Explanation of self.fp_url and self.fp_node_dir
Explanation of Trace and WorkOrder
Order id and self.now()
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
File details
Details for the file fptest-0.1.1.tar.gz
.
File metadata
- Download URL: fptest-0.1.1.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6b9e4706fd2d0f8354c65deb5d1742f7e2a55e65387dfe4a431e36444ec7f93 |
|
MD5 | f8ab42747a5dbfa50d02c50fbaacfa6e |
|
BLAKE2b-256 | 5fe3fd0bb792b41e143cde82dede500cb21ed30926ff8fb9b02619815fc56e10 |