System test framework with serial and parallel execution.
Project description
Installation
pip install systest
Description
Execute a sequence of test cases in serial and/or parallel.
Test cases in a list are executed in serial and test cases in a tuple are executed in parallel, in separate Python threads.
This framework is created with integration/system test in mind. The framework is not intended as a replacement for unittest, but rather to be a complement to it.
Documentation: http://systest.readthedocs.org/en/latest
Example usage
See the test suite: https://github.com/eerimoq/systest/blob/master/tests/test_systest.py
For example, the sequence below starts with test case MyTestCase("1"). When MyTestCase("1") has been executed, MyTestCase("2") and the list of MyTestCase("3") and MyTestCase("4") are executed in parallel. When both MyTestCase("2") and the list of MyTestCase("3") and MyTestCase("4") has been executed, MyTestCase("5") is executed. Then the sequence ends.
import logging
from systest import TestCase, Sequencer, configure_logging
LOGGER = logging.getLogger(__name__)
# Define a testcase.
class MyTestCase(TestCase):
"""Test case description.
"""
def __init__(self, name):
super(MyTestCase, self).__init__()
self.name = "my_testcase_" + name
def run(self):
LOGGER.info("Hello!")
self.assert_equal(1, 1)
self.assert_true(1 == 1)
self.assert_in(1 in [1, 2])
self.assert_none(None)
with self.assert_raises(RuntimeError) as cm:
raise RuntimeError('foo')
self.assert_equal(str(cm.exception), 'foo')
# Configure the logging module.
configure_logging()
sequencer = Sequencer("my_sequence")
# Run the sequence.
sequencer.run([
MyTestCase("1"),
(
MyTestCase("2"),
[
MyTestCase("3"),
MyTestCase("4")
]
),
MyTestCase("5")
])
# Print the report.
sequencer.report()
The output is:
Name: my_sequence
Date: 2016-02-02 18:42:40.446213
Node: erik-VirtualBox
User: erik
---------------------------------------------------------------
Name: my_testcase_1
Description:
Test case description.
Hello!
my_testcase_1: PASSED in 0m 0s
---------------------------------------------------------------
Name: my_testcase_2
Description:
Test case description.
Hello!
my_testcase_2: PASSED in 0m 0s
---------------------------------------------------------------
Name: my_testcase_3
Description:
Test case description.
Hello!
my_testcase_3: PASSED in 0m 0s
---------------------------------------------------------------
Name: my_testcase_4
Description:
Test case description.
Hello!
my_testcase_4: PASSED in 0m 0s
---------------------------------------------------------------
Name: my_testcase_5
Description:
Test case description.
Hello!
my_testcase_5: PASSED in 0m 0s
---------------------- Test summary begin ----------------------
[
[
my_testcase_1: PASSED,
(
my_testcase_2: PASSED,
[
my_testcase_3: PASSED,
my_testcase_4: PASSED
]
),
my_testcase_5: PASSED
]
]
Execution time: 0m 0s
Result: PASSED
----------------------- Test summary end -----------------------
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 systest-3.8.0.tar.gz
.
File metadata
- Download URL: systest-3.8.0.tar.gz
- Upload date:
- Size: 18.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 390440393f2a2630f6d8124ea32f5166964b1d6b2c36ab60df73fbaa044c08ab |
|
MD5 | 6b6962b94bff0e246409cd5c7f58eccc |
|
BLAKE2b-256 | 706008f11456aedf1fa9695721562e8d172f7e89f6b9d3badca8ab2b416ac661 |
File details
Details for the file systest-3.8.0-py2.py3-none-any.whl
.
File metadata
- Download URL: systest-3.8.0-py2.py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82bfaf8486148780ee6c55a71c5644bf9a5a2fd810498afd1a0a95ea989549dd |
|
MD5 | 05fe157a2ee08b9dfce61ac92c66b4fb |
|
BLAKE2b-256 | 8adbfad0038dbb63c99b3365724f55ec6b2716b0504818eb4e8bbeaa14c4ffd4 |