A tkinter-based front-end GUI for trigger and monitoring hardware tests based on the ATE package
Project description
Tk-Automated Test Environment (TkATE)
The Automated Test Environment is a Python library
which provides useful structure for test creation and execution, but does not provide a user-defined
method of controlling that test environment. The purpose of this project is to provide the
start button and to provide visual feedback as to the actual test that is executing. The
implementation is done using a tkinter.Frame
subclass which may be embedded into any tkinter-style
window.
Installation
Installation is as easy as pip install tkate
.
Usage
You must set up your test so that it can successfully execute on the ATE. Once it is set up there, then you are just a couple of lines away from converting an ATE-based test to a TkATE.
We will start with the example application located within the ATE repository. The high-level functional bits are copied here for reference:
# create the sequence of test objects
sequence = [CommunicationTest(), PumpFlowTest()]
ts = TestSequence(sequence=sequence, auto_run=False, loglevel=logging.DEBUG)
# start the test as many times as you wish!
for _ in range(3):
ts.start()
sleep(2.0)
Note that the test was simply started using the TestSequence.start()
method. Since we are
going to have a test frame that comes with TkATE, then we won't require the automated start and
can, instead, rely on the user button supplied. Our complete sequence could be as simple as:
# create the sequence of test objects
sequence = [CommunicationTest(), PumpFlowTest()]
ts = TestSequence(sequence=sequence, auto_run=False, loglevel=logging.DEBUG)
window = tk.Tk()
tkate_frame = TkAteFrame(window, ts)
tkate_frame.grid()
window.mainloop()
Note that most of the added code is related to simply creating the window
object within
which the TkAteFrame
is to be embedded.
There are two tests that are executed here, one CommunicationTest
and one PumpTest
. Screenshots
of various possible scenarios are shown here:
Communications Test Failure
Flow Test Failure
All Passing
Project details
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 tkate-0.7.1-py3-none-any.whl
.
File metadata
- Download URL: tkate-0.7.1-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13c13ccda6e4778f72443f6bffef58d6270d76644976825f88430c283e180a5e |
|
MD5 | 8e3e238b8a1f4ac68f380eddf1c99145 |
|
BLAKE2b-256 | 4967ede911062cee7e5b00f223507d4ddd7f58b42f6908d49ee31323d6df909e |