Skip to main content

python ut test code generator.

Project description

Python UT generator

This tools generate automatically Python pytest Unit test code.
This project uses ast module to generate.
Easy to make coverage test. And Easy to customize test code.

Feature

  • Generate unit test python file in tests package.
  • Generate pytest test function from each function.
  • Generate mock patch syntax code.
  • Generate argument syntax code to call.
  • If function has return value, create assert return.

Installation

Install pip

pip install pyutgenerator

https://pypi.org/project/pyutgenerator/

Run tool.

Genarete test code

pyutgen "Input File Name"

or

python -m pyutgenerator.run "Input File Name"

Sample input file

import os


def aaaaa():
    """
    call and return
    """
    return os.path.exists('')

Sample out put


import pytest
from unittest.mock import patch
from unittest.mock import MagicMock

from tests.pyutgenerator.data import pattern01

def test_aaaaa():
    # plan

    # do
    with\
            patch('tests.pyutgenerator.data.pattern01.os.path') as m1:
        m1.return_value = None
        m1.exists = MagicMock(return_value=None)
        ret = pattern01.aaaaa()

        # check
        assert ret

For the future

  • For Code
    • Genarete various parameters for test.
    • Write return check value.
    • 'exception' check.
    • 'with' description mock.
    • Generate test data.
    • Assertion for method call for count, parameter, throw.
    • parameter type for str,list, obj ...
    • Simple code analyst report. like no None check or Parameter
    • For django
  • Customize parameter options or setting file.
    • Exclude function mock.
    • Source directory path.
    • tab space num.
  • Get test data from debug.
  • able to run default generated code and pass test.
  • Full coverage.
  • web ui for test.

Prerequisites

not yet

not yet

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

  • Hat tip to anyone whose code was used
  • Inspiration
  • etc

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

pyutgenerator-0.11.1.tar.gz (10.8 kB view details)

Uploaded Source

Built Distribution

pyutgenerator-0.11.1-py3-none-any.whl (12.1 kB view details)

Uploaded Python 3

File details

Details for the file pyutgenerator-0.11.1.tar.gz.

File metadata

  • Download URL: pyutgenerator-0.11.1.tar.gz
  • Upload date:
  • Size: 10.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.11 CPython/3.9.12 Windows/10

File hashes

Hashes for pyutgenerator-0.11.1.tar.gz
Algorithm Hash digest
SHA256 547052b2fff2fe6993b2a0b4c2ec5660bb3c6443b8ed7804434a16de8acf1dbc
MD5 8ea3de67b7b7fc5f0905ce4559b14d45
BLAKE2b-256 b4852d1112b7c3afec5016214d3e5b27d18ffdd6be04cb279ca00679f548db0c

See more details on using hashes here.

File details

Details for the file pyutgenerator-0.11.1-py3-none-any.whl.

File metadata

  • Download URL: pyutgenerator-0.11.1-py3-none-any.whl
  • Upload date:
  • Size: 12.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.11 CPython/3.9.12 Windows/10

File hashes

Hashes for pyutgenerator-0.11.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e62db31c3bc3b83f1c3388704b021832408dea7e70aadb854d4bc31a6a450e3c
MD5 e6897817d0592a4395aff2d4f4982512
BLAKE2b-256 57f02677caa393e3622945e7f56cab72a0e51496be84a0d72e985a65c80711de

See more details on using hashes here.

Supported by

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