Skip to main content

Test-driven source code search for Python.

Project description

pytest-nodev is a simple test-driven search engine for Python code, it finds classes and functions that match the behaviour specified by the given tests.

How does “test-driven code search” work?

To be more precise pytest-nodev is a pytest plugin that lets you execute a set of tests that specify the expected behaviour of a class or a function on all objects in the Python standard library and in all the modules you have installed.

Show me how it works in practice. I need to write a parse_bool function that robustly parses a boolean value from a string. Here is the test I intend to use to validate my own implementation once I write it.:

def test_parse_bool():
    assert not parse_bool('false')
    assert not parse_bool('FALSE')
    assert not parse_bool('0')

    assert parse_bool('true')
    assert parse_bool('TRUE')
    assert parse_bool('1')

First, install the latest version of pytest-nodev from the Python Package Index:

$ pip install pytest-nodev

Then copy your specification test to the test_parse_bool.py file and decorate it with pytest.mark.candidate as follows:

import pytest

@pytest.mark.candidate('parse_bool')
def test_parse_bool():
    assert not parse_bool('false')
    assert not parse_bool('FALSE')
    assert not parse_bool('0')

    assert parse_bool('true')
    assert parse_bool('TRUE')
    assert parse_bool('1')

Finally, instruct pytest to run your test on all candidate callables in the Python standard library:

$ py.test --candidates-from-stdlib test_parse_bool.py
======================= test session starts ==========================
platform darwin -- Python 3.5.1, pytest-2.9.2, py-1.4.31, pluggy-0.3.1
rootdir: /tmp, inifile: setup.cfg
plugins: nodev-1.0.0, timeout-1.0.0
collected 4000 items

test_parse_bool.py xxxxxxxxxxxx[...]xxxxxxxxXxxxxxxxx[...]xxxxxxxxxxxx

====================== pytest_nodev: 1 passed ========================

test_parse_bool.py::test_parse_bool[distutils.util:strtobool] PASSED

=== 3999 xfailed, 1 xpassed, 260 pytest-warnings in 75.38 seconds ====

In just over a minute pytest-nodev collected 4000 functions from the standard library, run your specification test on all of them and reported that the strtobool function in the distutils.util module is the only one that passes your test.

Now you can review it and if you like it you may use it in your code. No need to write your own implementation!

Wow! Does it work so well all the times?

To be honest strtobool is a little known gem of the Python standard library that is just perfect for illustrating all the benefits of test-driven code search. Here are some of them in rough order of importance:

  • a function imported is a one less function coded—and tested, documented, debugged, ported, maintained…

  • it’s battle tested code—lot’s of old bugs have already been squashed

  • it’s other people code—there’s an upstream to report new bugs to

  • it gives you additional useful functionality—for free on top of that

  • it’s in the Python standard library—no additional dependency required

BIG FAT WARNING!

A lot of functions called with the wrong set of arguments may have unexpected consequences ranging from slightly annoying, think os.mkdir('false'), to utterly catastrophic, think shutil.rmtree('/', True). Serious use of pytest-nodev, in particular using --candidates-from-all, require running the tests with operating-system level isolation, e.g. as a dedicated user or even better inside a dedicated container. The User’s guide documents how to run pytest-nodev safely and efficiently.

Project resources

Documentation

http://pytest-nodev.readthedocs.io

Support

https://stackoverflow.com/search?q=pytest-nodev

Development

https://github.com/nodev-io/pytest-nodev

Discussion

To be decided, see issue #15

Download

https://pypi-hypernode.com/pypi/pytest-nodev

Code quality

Build Status on Travis CI Build Status on AppVeyor Coverage Status on Coveralls

Contributing

Contributions are very welcome. Please see the CONTRIBUTING document for the best way to help. If you encounter any problems, please file an issue along with a detailed description.

Authors:

Contributors:

Sponsors:

  • B-Open Solutions srl

License

pytest-nodev is free and open source software distributed under the terms of the MIT license.

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

pytest-nodev-0.9.9.tar.gz (25.0 kB view details)

Uploaded Source

Built Distribution

pytest_nodev-0.9.9-py2.py3-none-any.whl (16.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pytest-nodev-0.9.9.tar.gz.

File metadata

File hashes

Hashes for pytest-nodev-0.9.9.tar.gz
Algorithm Hash digest
SHA256 35fa9a559477b06c8eb817bf5df3cc793f7f83319a01a0c79815a78018ef972b
MD5 86bd2870d93be9ec1b7914ce396779d7
BLAKE2b-256 399232441c75b1e78220363738ba6306fbc69b6a0d3213b90d497c9216e38e91

See more details on using hashes here.

File details

Details for the file pytest_nodev-0.9.9-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_nodev-0.9.9-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 8e897af623c1cf246aae6543903fe2fd167a9e0afe345a8a516403dfe97e9039
MD5 21eea000f27c6a5ade8be581d9bc54af
BLAKE2b-256 d6e604575cce068b13b3e3de0d244941bfb5128794e9e007b2a10d7ec94f62bf

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