Skip to main content

Automate tests via docstrings and more

Project description

Fastest

Creates unit tests from examples in the docstring and more.

Codacy Badge Scrutinizer_Badge Coverage Status Build_Status Current_Version Python_Version

Install

$ pip install fastest

Usage

$ fastest

watches all .py files and creates coverage for entire project.

$ fastest --path=$(pwd) --source=py_module

where path is the the project root, and source is same as the value passed to the command coverage run -m unittest --source=$source test

$ fastest --exclude=dont_check_this_dir/*,these__*.py

To exclude files/folders use --exclude and the file watcher will ignore them. The test/* folder that faster creates is excluded by default.

$ fastest --poll-duration=10

Builds files, runs tests and coverage every 10s, default = 1s

Things that happen when you run python main.py --path=$(pwd):

  1. Checks for a test file at the project root, it creates if it doesn't find one.
  2. Watches .py files for changes.
  3. Creates unittests if a function has examples in its docstrings like so:
# .
# ├──module_a
# ├──module_b
#    └── utils.py
#
def add(x, y):
    """
    ----
    examples:
    1) add(3, 4) -> 7
    """
    return x + y

This will create a unittest in the test directory, assertEqual(add(3, 4), 7) within Class test_<file>_<function>(self) (for the given directory, tree: Class test_utils_add(self))

  1. Runs all tests that are created.
  2. Creates a coverage report (in html format).
  3. Print the link to the coverage reports' index.html.

How to make best use of Fastest

  1. Keep your functions light:
    • Be paranoid about separation of concerns.
    • Too many conditions are a hint that you might need another function.
    • Complex loops and if-else are not scalable code, a single mistake would take that tower down and feature additions would involve someone going through that brain-teaser.
  2. Use libraries but wrap them with your own functions. Like: Use requests or the inevitable database? wrap them with your own functions.
    • Helps with adding customizations in one place (configuring things like base url, and similar configs)
    • Helps mocking so that entire code-base can be unit tested.
  3. Docstrings may get outdated if your work pace is too fast to maintain quality documentation. Now adding examples now would help you create tests which prevents your descriptions from going stale, if the tests fail, probably the documentation needs a second look too. This is enforced within Fastest, as documentation IS contributing to tests.

Examples:

  1. Allows creation of variables within the docstrings, which includes lambda functions!
    def quick_maths(a, b):
       """
       ----
       examples:
       @let 
       a = {
           'apples': 3,
           'oranges': 4
       }
       @end
       
       1) quick_maths(a['apples'], a['oranges']) -> 7
       ----
       """
       return a + b
    
  2. You can run any valid python code within @let--@end blocks.
  3. Can include installed modules external to your project.
    def current_time():
       """
       ---
       examples:
       @need
       from datetime import datetime
       @end
       1) current_time() -> datetime.now()
       """
       return datetime.now()
    
  4. If types are added to docstring, Fastest will create tests for checking type of the value returned against empty of arguments.
    def chain_strings(str1, str2):
        """
        :param str1: str
        :param str2: str
        :return: str
        """
        return str1 + str2
    
    Fastest will create a assertInstanceIs(chain_strings('', ''), str) for the above snippet.

Goals for Fastest

  • Help maintaining tests, code-coverage and documentation.
  • Help with performance issues within code.
  • Provide testability score for code.
  • Test functions for auto-generated inputs where the code would crash.

Fastest uses itself for creating tests and manages a 100% on the coverage!

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

fastest-0.1.0.tar.gz (14.8 kB view hashes)

Uploaded Source

Built Distribution

fastest-0.1.0-py3-none-any.whl (44.8 kB view hashes)

Uploaded Python 3

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