Git Product home page Git Product logo

pytest-object-getter's Introduction

PYTEST OBJECT GETTER

A Pytest Plugin providing the get_object fixture.

GitHub Workflow Status (branch) Read the Docs (version) Codecov Code Climate Maintainability Better Code Hub Technical Debt
Production Version PyPI - Wheel Supported Python versions GitHub GitHub commits since tagged version (branch) GitHub commits since latest release (by SemVer)

Highlights

  1. pytest_object_getter python package, hosted on pypi.org
    • Installable with pip
    • get_object fixture available to your tests
      1. Dynamically import an object from a module
      2. Optionally mock any object that is present in the module's namespace
      3. Construct the mock object at runtime
      4. Alter the bahaviour of an object at runtime
  2. Tested against multiple platforms and python versions
    • platforms: Ubuntu, MacOS
    • python: 3.6, 3.7, 3.8, 3.9, 3.10
For more, see the CI Pipeline and the Test workflow, defined in test.yaml.

You can read more on pytest and fixtures in pytest latest documentation.

Quickstart

Prerequisites

You need to have Python installed.

Installing

Using pip is the approved way for installing pytest_object_getter.

python3 -m pip install pytest_object_getter

After installation the get_object pytest fixture should be available in your tests.

A Use Case

Let's see how to write a test and use the 'get_object' fixture to mock the requests.get method to avoid actual network communication:

python3 -m pip install ask-pypi
import pytest

@pytest.fixture
def mock_response():
    def init(self, package_name: str):
        self.status_code = 200 if package_name == 'existing-package' else 404
    return type('MockResponse', (), {
        '__init__': init
    })

@pytest.fixture
def create_mock_requests(mock_response):
    def _create_mock_requests():
        def mock_get(*args, **kwargs):
            package_name = args[0].split('/')[-1]
            return mock_response(package_name)
        return type('MockRequests', (), {
            'get': mock_get,
        })
    return _create_mock_requests

def test_fixture(get_object, create_mock_requests):

    from ask_pypi import is_pypi_project

    assert is_pypi_project('numpy') == True
    assert is_pypi_project('pandas') == True
    assert is_pypi_project('existing-package') == False

    get_object('is_project', 'ask_pypi.pypi_project',
        overrides={'requests': lambda: create_mock_requests()})

    assert is_pypi_project('existing-package') == True

    assert is_pypi_project('numpy') == False
    assert is_pypi_project('pandas') == False
    assert is_pypi_project('so-magic') == False

License

Free software:

GitHub

Development

Here are some useful notes related to doing development on this project.

  1. Test Suite, using pytest, located in tests dir
  2. Parallel Execution of Unit Tests, on multiple cpu's
  3. Documentation Pages, hosted on readthedocs server, located in docs dir
  4. Automation, using tox, driven by single tox.ini file
    1. Code Coverage measuring
    2. Build Command, using the build python package
    3. Pypi Deploy Command, supporting upload to both pypi.org and test.pypi.org servers
    4. Type Check Command, using mypy
    5. Lint Check and Apply commands, using isort and black
  5. CI Pipeline, running on Github Actions, defined in .github/
    1. Job Matrix, spanning different platform's and python version's
      1. Platforms: ubuntu-latest, macos-latest
      2. Python Interpreters: 3.6, 3.7, 3.8, 3.9, 3.10
    2. Parallel Job execution, generated from the matrix, that runs the Test Suite

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.