Patching and mocking utilities
Project description
shims is an Apache2 licensed Python module with patching and mocking utilities.
The unittest package has clever functions for patching modules and objects. Unfortunately, the common interface is not very readable:
import unittest
from unittest.mock import patch
class TestThing(unittest.TestCase):
@patch("a.b.c")
@patch("x.y.z")
@patch("foo.bar.baz")
@patch("one.two.three")
def test_thing(self, mock_three, mock_baz, mock_z, mock_c):
...
if __name__ == "__main__":
unittest.main()
Now, raise your hand if you’ve ever confused the order of patch decorators and the order of the arguments (me, times :100:)?
Also, raise your hand if you’ve struggled to find the right string argument for patch :wave:?
Patch is a great utility but the decorator pattern is not very readable. The patch function actually returns patch objects. And patch objects include start() and stop() methods. But these methods are hard to invoke automatically without decorators using unittest.
Furthermore, the patch target is referenced using strings to identify the object to patch. Most editors lack go-to-definition support for these strings which sometimes results in even less readable code.
Pytest now to the rescue! Here’s the same code, now using Pytest:
from unittest.mock import MagicMock
import pytest
import a.b
import x.y
import foo.bar
import one.two
def test_thing(monkeypatch):
mock_c = MagicMock()
monkeypatch.setattr(a.b, "c", mock_c)
mock_z = MagicMock()
monkeypatch.setattr(x.y, "z", mock_z)
mock_baz = MagicMock()
monkeypatch.setattr(foo.bar, "baz", mock_baz)
mock_three = MagicMock()
monkeypatch.setattr(one.two, "three", mock_three)
...
if __name__ == "__main__":
pytest.main([__file__])
We’re no longer abusing the decorator pattern in Python but it’s still not very reasonable. The fixture idea is a good one and shims goes a bit farther with it.
Here’s the same code, now using shims:
import pytest
import a.b
import x.y
import foo.bar
import one.two
def test_thing(shims):
mock_c = shims.patch(a.b.c)
mock_z = shims.patch(x.y.z)
mock_baz = shims.patch(foo.bar.baz)
mock_three = shims.patch(one.two.three)
...
if __name__ == "__main__":
pytest.main([__file__])
The problems solved with shims:
Decorator pattern replaced with function calls.
Targets used directly rather than by strings.
MagicMock objects are created automatically.
The end goal is to integrate shims into pytest itself.
Features
Pure-Python
Pytest Support (Optional)
Developed on Python 3.8
Tested on CPython 3.6, 3.7, 3.8 and PyPy, PyPy3
Tested using GitHub Actions on Linux, Mac, and Windows
Quickstart
Installing shims is simple with pip:
$ pip install shims
You can access documentation in the interpreter with Python’s built-in help function:
>>> import shims
>>> help(shims) # doctest: +SKIP
Tutorial
The shims module provides utilities for patching and mocking.
>>> import urllib.request
>>> response = urllib.request.urlopen('http://www.example.com/').read()
>>> print(response[:63].decode())
<!doctype html>
<html>
<head>
<title>Example Domain</title>
>>> import shims
>>> mock_urlopen = shims.patch(urllib.request.urlopen)
>>> mock_urlopen.return_value = '<test response>'
>>> urllib.request.urlopen('http://www.example.com/')
'<test response>'
>>> shims.stop()
Reference
License
Copyright 2020 Grant Jenks
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file shims-0.0.1.tar.gz
.
File metadata
- Download URL: shims-0.0.1.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d8e838caaa7c00cf5f3fa0df22cb7bcdb37e784247df773983496bc8c0fb4fa |
|
MD5 | 9948c75cd942d3a8be1b9c6ae97cdec6 |
|
BLAKE2b-256 | 1ebace75b459599bb95c43cbfce805ba8ca88244c29e4acc31bffe061f6ec97c |
File details
Details for the file shims-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: shims-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9351d98c6b56d653aee10b189935c51488617944f6e2f1ecc2292baac24f1a75 |
|
MD5 | 39f8dd2f619fd7b8a3109997a1b2999c |
|
BLAKE2b-256 | ec833b2a38c1ea543cb23ea4c76ff50c4d22644ff440c6dc4bc1568f3a0462b4 |