Skip to main content

A Doctest-stype Command Line Application Tester

Project description

https://img.shields.io/pypi/v/clatter.svg https://travis-ci.org/delgadom/clatter.svg?branch=master https://coveralls.io/repos/github/delgadom/clatter/badge.svg?branch=master Documentation Status Updates

clatter is a doctest-style testing tool for command-line applications. It wraps other testing suites and allows them to be tested in docstrings.

Features

  • Bring testing best practices to your command line apps

  • Extensible - subclassing CommandValidator is trivial using any cli testing suite

Downsides

  • Security. CLI commands are dangerous, and we make no attempt to protect you. Use at your own risk.

Usage

Test command line utilities and applications by whitelisting them with app-specific testing engines:

>>> teststr = r'''
...
... .. code-block:: bash
...
...     $ echo 'Pining for the fjords'
...     Pining for the fjords
...     <BLANKLINE>
... '''
>>>
>>> tester = Runner()
>>> tester.call_engines['echo'] = SubprocessValidator()
>>> tester.validate(teststr)

Click applications

Integrate your command line app:

>>> @click.command()
... @click.argument('name')
... def hello(name):
...     click.echo('Hello %s!' % name)

This can now be tested in docstrings:

>>> teststr = '''
...
... .. code-block:: bash
...
...     $ hello Polly
...     Hello Polly!
...     <BLANKLINE>
...
...     $ hello Polly Parrot
...     Usage: hello [OPTIONS] NAME
...     <BLANKLINE>
...     Error: Got unexpected extra argument (Parrot)
...     <BLANKLINE>
...
...     $ hello 'Polly Parrot' # clitest: +NORMALIZE_WHITESPACE
...     Hello Polly Parrot!
...
... '''

Click applications can be tested with a ClickValidator engine:

>>> tester = Runner()
>>> tester.call_engines['hello'] = ClickValidator(hello)

>>> tester.validate(teststr)

Mixed applications

Your app can be combined with other command-line utilities by adding multiple engines:

>>> teststr = r'''
...
... .. code-block:: bash
...
...     $ hello Polly
...     Hello Polly!
...     <BLANKLINE>
...
...     $ echo 'Pining for the fjords'
...     Pining for the fjords
...     <BLANKLINE>
...
... Pipes/redirects don't work, so we can't redirect this value into a file.
... But we can write a file with python:
...
... .. code-block:: bash
...
...     $ python -c \
...     >     "with open('tmp.txt', 'w+') as f: f.write('Pushing up daisies')"
...
...     $ cat tmp.txt
...     Pushing up daisies
...
... '''

>>> tester.call_engines['echo'] = SubprocessValidator()
>>> tester.call_engines['python'] = SubprocessValidator()
>>> tester.call_engines['cat'] = SubprocessValidator()

>>> tester.validate(teststr)

Suppressing commands

Commands can be skipped altogether with a SkipValidator:

>>> skipstr = '''
... .. code-block:: bash
...
...     $ aws storage buckets list
...
... '''

>>> tester = Runner()
>>> tester.call_engines['aws'] = SkipValidator()

Illegal commands

Errors are raised when using an application you haven’t whitelisted:

>>> badstr = '''
...
... The following block of code should cause an error:
...
... .. code-block:: bash
...
...     $ rm tmp.txt
...
... '''

>>> tester.validate(badstr)
Traceback (most recent call last):
...
ValueError: Command "rm" not allowed. Add command caller to call_engines to whitelist.

Unrecognized commands will raise an error, even if +SKIP is specified

>>> noskip = '''
... .. code-block:: bash
...
...     $ nmake all # clitest: +SKIP
...
... '''
>>> tester.validate(badstr)
Traceback (most recent call last):
...
ValueError: Command "nmake" not allowed. Add command caller to call_engines to whitelist.

Error handling

Lines failing to match the command’s output will raise an error

>>> teststr = r'''
... .. code-block:: bash
...
...     $ echo "There, it moved!"
...     "No it didn't!"
...     <BLANKLINE>
...
... '''

>>> tester = Runner()
>>> tester.call_engines['echo'] = SubprocessValidator()

>>> with pytest.raises(ValueError):
...     tester.validate(teststr)

Installation

pip install clatter

Requirements

  • pytest

Todo

See issues to see and add to our todos.

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

clatter-0.0.2.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

clatter-0.0.2-py2.py3-none-any.whl (7.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file clatter-0.0.2.tar.gz.

File metadata

  • Download URL: clatter-0.0.2.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for clatter-0.0.2.tar.gz
Algorithm Hash digest
SHA256 e7f016f724ae4d50a9a2bf98805accc06e4ae572eb4e9f4b8b8cc8045cf201c1
MD5 49b68939875e5b4d60999088ab815a62
BLAKE2b-256 a7d30eb358c75352183d0fa91bec6af251c7392ce6a32c0bd718314e7fd711dd

See more details on using hashes here.

File details

Details for the file clatter-0.0.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for clatter-0.0.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 64999f86772a2167e44608adf1c263aed43d161eab215bb7b349c75ca42e242a
MD5 a9889989a6dd4f9100f36198df00544d
BLAKE2b-256 6f7cecd062a4108ebd236cd8feb7c3c8d72ed75b22a072987a274770ee031d34

See more details on using hashes here.

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