Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

jameslamb/doppel-cli

As of February 17, 2024, this project is no longer being maintained. You're welcome to fork it if you find it useful

doppel-cli

PyPI Version conda-forge version GitHub Actions Build Status Documentation Status Python Versions downloads license CII Best Practices

doppel-cli is an integration testing framework for testing API similarity across languages. R and Python are currently supported.

What is the value of keeping the same public interface?

This project tests API consistency in libraries across languages.

Why is this valuable?

  • For developers:
    • less communication overhead implementing changes across languages
    • forcing function to limit growth in complexity of the public API
  • For users:
    • no need to re-learn the API when switching languages
    • form better expectations when switching languages

For more on this, click the link below to see this talk from the satRdays Chicago 2019 conference:

satRdays Chicago

Documentation

For the most up-to-date documentation, please see https://doppel-cli.readthedocs.io/en/latest/.

Getting started

All releases are available on PyPi, the official package manager for Python. To avoid conflicts with the existing doppel project on that repository, this project is distributed as doppel-cli.

pip install doppel-cli

The package is also available on the conda-forge channel.

conda install -c conda-forge doppel-cli

If you want to get the most recent dev version, clone this repo and install from source.

git clone git@github.com:jameslamb/doppel-cli.git
cd doppel-cli
python setup.py install

R requirements

In order to use doppel-cli on R packages, you will need the R packages shown in the following installation commands:

Rscript -e "
    install.packages(
        c('argparse', 'futile.logger', 'jsonlite', 'R6')
        , repos = 'https://cran.rstudio.com'
    )
"

Example: Testing continuity between R and Python implementations

In this example, I'll show how to use doppel-cli to test continuity between R and Python implementations of the same API. For this example, I used the argparse library.

NOTE: This example assumes that you already have argparse installed locally.

If you don't run one or both of these:

Rscript -e "install.packages('argparse', repos = 'https://cran.rstudio.com')"
pip install argparse

First, you need to generate special files that doppel uses to store information about a project's API. These are created using the doppel-describe tool.

PACKAGE=argparse

# Create temporary directory to store output files
mkdir $(pwd)/test_data

# The R package
doppel-describe \
    -p ${PACKAGE} \
    --language R \
    --data-dir $(pwd)/test_data \
    --verbose

# The python package
doppel-describe \
    -p ${PACKAGE} \
    --language python \
    --data-dir $(pwd)/test_data \
    --verbose

Cool! Let's do some testing! doppel-test can be used to compare multiple packages.

doppel-test \
    --files $(pwd)/test_data/python_${PACKAGE}.json,$(pwd)/test_data/r_${PACKAGE}.json \
    | tee out.log \
    | cat

This will yield something like this:

Function Count
==============
+---------------------+----------------+
|   argparse [python] |   argparse [r] |
+=====================+================+
|                   0 |              1 |
+---------------------+----------------+


Function Names
==============
+-----------------+---------------------+----------------+
| function_name   | argparse [python]   | argparse [r]   |
+=================+=====================+================+
| ArgumentParser  | no                  | yes            |
+-----------------+---------------------+----------------+

Function Argument Names
=======================
No shared functions.

Class Count
===========
+---------------------+----------------+
|   argparse [python] |   argparse [r] |
+=====================+================+
|                   9 |              0 |
+---------------------+----------------+


Class Names
===========
+-------------------------------+---------------------+----------------+
| class_name                    | argparse [python]   | argparse [r]   |
+===============================+=====================+================+
| MetavarTypeHelpFormatter      | yes                 | no             |
+-------------------------------+---------------------+----------------+
| ArgumentParser                | yes                 | no             |
+-------------------------------+---------------------+----------------+
| FileType                      | yes                 | no             |
+-------------------------------+---------------------+----------------+
| HelpFormatter                 | yes                 | no             |
+-------------------------------+---------------------+----------------+
| RawDescriptionHelpFormatter   | yes                 | no             |
+-------------------------------+---------------------+----------------+
| Action                        | yes                 | no             |
+-------------------------------+---------------------+----------------+
| ArgumentDefaultsHelpFormatter | yes                 | no             |
+-------------------------------+---------------------+----------------+
| Namespace                     | yes                 | no             |
+-------------------------------+---------------------+----------------+
| RawTextHelpFormatter          | yes                 | no             |
+-------------------------------+---------------------+----------------+


Class Public Methods
====================
No shared classes.

Arguments in Class Public Methods
=================================
No shared classes.

Test Failures (12)
===================
1. Function 'ngettext()' is not exported by all packages

2. Function 'ArgumentParser()' is not exported by all packages

3. Packages have different counts of exported classes! argparse [python] (9), argparse [r] (0)

4. Class 'HelpFormatter()' is not exported by all packages

5. Class 'Namespace()' is not exported by all packages

6. Class 'RawDescriptionHelpFormatter()' is not exported by all packages

7. Class 'ArgumentParser()' is not exported by all packages

8. Class 'MetavarTypeHelpFormatter()' is not exported by all packages

9. Class 'Action()' is not exported by all packages

10. Class 'ArgumentDefaultsHelpFormatter()' is not exported by all packages

11. Class 'FileType()' is not exported by all packages

12. Class 'RawTextHelpFormatter()' is not exported by all packages

As you can see above, the argparse Python package has 9 exported classes while the R package has none.

From doppel-cli's perspective, this is considered a test failure. If you run echo $? in the terminal, should should see 1 printed. Returning a non-zero exit code like this tells CI tools like GitHub Actions that the test was a failure, making doppel-cli useful for CI (more on this in a future example).

You may be thinking "well wait, surely you'd want to test for way more stuff than just counts of classes and functions, right?". Absolutely! See the project issues issues for a backlog of features I'd like to add. PRs are welcomed!!!

To learn more about the things that are currently configurable, you can run:

doppel-describe --help

and

doppel-test --help

Contributing

Bug reports, questions, and feature requests should be directed to the issues page.

See CONTRIBUTING.md for information on how to contribute.

doppel-cli attempts to adhere to Core Infrastructure Initiative (CII) best practices for open source projects. See the project's CII page for an explanation of how doppel-cli meets these requirements.