Skip to main content

regression test scripting framework for embedded systems developers

Project description

Build Status Documentation Status Codacy Quality Coveralls Quality License Downloads Latest Version Supported Python Versions Current Devel Status Support Package Format

Intro

Using MONK you can write tests like you would write unit tests, just that they are able to interact with your embedded system.

Let’s look at an example. In the following example we have an embedded system with a serial terminal and a network interface. We want to write a test, which checks whether the network interface receives correct information via dhcp.

The test case written with nosetests:

import nose.tools as nt

import monk_tf.conn as mc
import monk_tf.dev as md

def test_dhcp():
    """ check whether dhcp is implemented correctly
    """
    # setup
    device = md.Device(mc.SerialConn('/dev/ttyUSB1','root','sosecure'))
    # exercise
    device.cmd('dhcpc -i eth0')
    # verify
    ifconfig_out = device.cmd('ifconfig eth0')
    nt.ok_('192.168.2.100' in ifconfig_out)

Even for non python programmers it should be not hard to guess, that this test will connect to a serial interface on /dev/ttyUSB1, send the shell command dhcpc to get a new IP adress for the eth0 interface, and in the end it checks whether the received IP address that the tester would expect. No need to worry about connection handling, login and session handling.

For more information see the API Docs.

Release 0.1.10/0.1.11 (2014-05-05)

Enables devices to use current connections to find its IP addresses. Example usecase: You have a serial connection to your device that you know how to access. The Device itself uses DHCP to get an IP address and you want to send HTTP requests to it. Now you can use MONK to find its IP address via SerialConnection and then send your HTTP requests.

Release 0.1.9 (2014-04-14)

  • add option to set debug fixture file which overwrites differences between test environment and development environment while developing

Release 0.1.7/0.1.8 (2014-03-27)

  • workaround for slower password prompt return times

  • there was a problem in the publishing process which lead to changes not being added to the 0.1.7 release

Release 0.1.6 (2014-03-06)

  • again bugs got fixed

  • most important topic was stabilizing the connect->login->cmd process

  • error handling improved with more ifs and more userfriendly exceptions

  • it is now possible to completely move from Disconnected to Authenticated even when the target device is just booting.

Release 0.1.5 (2014-02-25)

  • fixed many bugs

  • most notably 0.1.4 was actually not able to be installed from PyPI without workaround

Release 0.1.4 (2014-01-24)

  • fixed some urgent bugs

  • renamed harness to fixture

  • updated docs

Release 0.1.3

  • complete reimplementation finished

  • documentation not up to date yet

  • Features are: * create independent connections with the connection layer * example implementation with SerialConnection * create complete device abstraction with the dev layer * basic device class in layer * separate test cases and connection data for reusage with harness layer * example parser for extendend INI implemented in harness layer

Release 0.1.2

  • added GPLv3+ (source) and CC-BY-SA 3.0 (docs) Licenses

  • updated coding standards

Release 0.1.1

  • rewrote documentation

  • style guide

  • configured for pip, setuptools, virtualenv

  • restarted unit test suite with nosetests

  • added development and test requirements

Release 0.1

The initial Release.

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

monk_tf-0.13.1.tar.gz (42.2 kB view details)

Uploaded Source

Built Distribution

monk_tf-0.13.1-py2.py3-none-any.whl (44.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file monk_tf-0.13.1.tar.gz.

File metadata

  • Download URL: monk_tf-0.13.1.tar.gz
  • Upload date:
  • Size: 42.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for monk_tf-0.13.1.tar.gz
Algorithm Hash digest
SHA256 d5fd01931b69af416994fbe7f1545d6904aa2a8c440c2f76aca6178d84730335
MD5 9ddbcfcd0e71bd496b1654c281d1a163
BLAKE2b-256 41a1b52ced345156989aa06211a56af1b5e38dcf9c1c499596b3e366940e978a

See more details on using hashes here.

Provenance

File details

Details for the file monk_tf-0.13.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for monk_tf-0.13.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 191d2ad17938022f90d25c35bc090f6db6e7f730719eff87e2538048b6e19234
MD5 6836950f209e8ee0d4f53016e3637727
BLAKE2b-256 3ac5fd745427978ea420b1015d7f6e9fd3d1b23c7d528760547d0748fc395def

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page