Metadata-Version: 2.1
Name: stubalyzer
Version: 0.5.1
Summary: Analysis tool comparing hand written stubs to stubgen-generated ones, reporting inconsistencies
Keywords: mypy,analysis,stubgen,stubs
Author-email: Kialo GmbH <open-source@kialo.com>
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Typing :: Typed
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: mypy==0.930
Requires-Dist: schema>=0.7.5
Requires-Dist: bump2version>=1.0.1 ; extra == "dev"
Requires-Dist: pre-commit>=2.20.0 ; extra == "dev"
Requires-Dist: black==22.6.0 ; extra == "dev"
Requires-Dist: flake8==4.0.1 ; extra == "dev"
Requires-Dist: flake8-rst-docstrings==0.2.7 ; extra == "dev"
Requires-Dist: isort==5.10.1 ; extra == "dev"
Requires-Dist: Sphinx>=2.2.0 ; extra == "doc"
Requires-Dist: Pygments ; extra == "doc"
Requires-Dist: sphinx-rtd-theme ; extra == "doc"
Requires-Dist: pytest>=6.2.5 ; extra == "test"
Requires-Dist: attrs==19.3.0 ; extra == "test"
Project-URL: Bug Reports, https://github.com/kialo/stubalyzer/issues
Project-URL: Home, https://github.com/kialo/stubalyzer
Provides-Extra: dev
Provides-Extra: doc
Provides-Extra: test

Stubalyzer
==========

.. image:: https://readthedocs.org/projects/stubalyzer/badge/?version=latest
    :target: https://stubalyzer.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status


An analysis tool to
compare handwritten mypy stubs to stubgen-generated stubs.

**stubalyzer** makes the process of crafting types for untyped dependencies easier.
Some example inconsistencies which are found and reported by stubalyzer
are listed below:

-  handcrafted and generated stubs have different method signatures
-  generated stubs are missing functions/class members
-  generated types are more specific than the handcrafted types

How to use?
-----------

Installation
~~~~~~~~~~~~

Install stubalyzer with the following command:

.. code:: shell-session

   $ pip install stubalyzer

How to run
~~~~~~~~~~

Run stubalyzer with the following command:

.. code:: shell-session

   $ stubalyzer -h
   usage: stubalyzer [-h] -c CONFIG [-e EXPECTED_MISMATCHES] [-r REFERENCE_STUBS] [-x CHECKSTYLE_REPORT] [-s] [-p]
                     STUBS_HANDWRITTEN

   Analyze a set of (handcrafted) mypy stubs by comparing them to (generated)
   reference stubs

   required arguments:
   -c CONFIG, --config CONFIG
                           Mypy config file

   positional arguments:
     STUBS_HANDWRITTEN     Directory of handwritten stubs that need to be
                           analyzed

   optional arguments:
     -h, --help            show this help message and exit
     -e EXPECTED_MISMATCHES, --expected-mismatches EXPECTED_MISMATCHES
                           A JSON file, which defines expected mismatching
                           symbols and their match results. If any symbol is
                           declared in an expected_mismatches JSON file,
                           stubalyzer will count it as an expected failure, and
                           ignore this inconsistency.

                           Example contents:
                           {
                               "my.module.function: "mismatch",
                               "another.module.Class: "not_found"
                           }

                           According to the example above, we expect the signature
                           of my.module.function to mismatch, and module.Class to
                           be missing in the generated stubs. stubalyzer will
                           ignore these inconsistencies.
     -r REFERENCE_STUBS, --reference REFERENCE_STUBS

                           Directory of reference stubs to compare against. If
                           not specified stubgen will be used to generate the
                           reference stubs.
     -x CHECKSTYLE_REPORT, --checkstyle-report CHECKSTYLE_REPORT

                           Write an xml report in checkstyle format to the given file.
     -s, --silent
                           Suppress all non-error output.
     -p, --include-private

                           Include definitions stubgen would otherwise consider
                           private, when generating the reference stubs. (e.g.
                           names with a single leading underscore, like "_foo")

Output
~~~~~~

If the comparison ends successfully with zero inconsistencies,
stubalyzer will print a success message to stdout, alongside with an
ignore message.

The ignore message includes the number of failures ignored, which are
declared as expected in the file for expected mismatches. If this file
is not provided, the ignore message will not be printed.

.. code:: shell-session

   Successfully validated 68 stubs.

If there are mismatches in the given types, stubalyzer will print a list
of all inconsistencies with a result message, alongside with an ignore
message -if there is any, similar to the following:

.. code:: shell-session

   Symbol "vars.any_var" not found in generated stubs.

   Types for functions.additional_args do not match:

      Handwritten type: def (foo: builtins.int, bar: builtins.int) -> builtins.str

      Reference type  : def (foo: builtins.int) -> builtins.str


   Failure: 33 of 68 stubs seem not to be valid.

   2 more fail(s) were ignored, because they were defined in expected mismatches.

Development
-----------

The following section contains instructions on how to set up and use the
development environment for this project.

Development Setup
~~~~~~~~~~~~~~~~~

Requirements for development:

-  A recent Python version (we currently use 3.9)

For a development setup, run the following shell script:

.. code:: shell-session

   $ ./dev/setup.sh

This will create a virtual environment in the directory ``venv`` and install the
project's dependencies.
To activate the virtual environment, run ``source ./venv/bin/activate`` from the project
directory.

Tests
~~~~~

Tests are run using pytest:

.. code:: shell-session

   $ pytest

Type Checking
~~~~~~~~~~~~~

Type checking is done with Mypy:

.. code:: shell-session

   $ mypy stubalyzer

Code Formatting
~~~~~~~~~~~~~~~

To set up the pre-commit hook to automatically format files, run:

.. code:: shell-session

   $ pre-commit install

The source code is formatted using ``black`` and ``isort``. The
following will format all files in the project:

.. code:: shell-session

   $ pre-commit run -a

Linting
~~~~~~~

Linting is done using ``flake8``, in the root directory run:

.. code:: shell-session

   $ flake8

On commit, ``pre-commit`` automtically runs ``flake8`` on changed files.

Dependency Management
~~~~~~~~~~~~~~~~~~~~~

If you need new dependencies, add them in ``pyproject.toml``.

Documentation
~~~~~~~~~~~~~

The documentation is written using Sphinx.
Build the documentation using:

.. code:: shell-session

   $ cd doc; make html

The output will be in ``docs/_build/html/index.html``.

You can update the API documentation using the following:

.. code:: shell-session

   $ ./dev/update-apidoc.sh

Releases
~~~~~~~~

Stubalyzer has no fixed release schedule.
Instead releases are made when needed.

To prepare a new release, run the following and follow the instructions in the output:

.. code:: shell-session

   $ ./dev/release.sh <patch|minor|major>

