Enhance the standard unittest package with features for testing asyncio libraries
Project description
The package asynctest is built on top of the standard unittest module and cuts down boilerplate code when testing libraries for asyncio.
Currently, asynctest targets the “selector” model, hence, some features will not (yet?) work with Windows’ proactor.
Documentation
Full documentation is available at http://asynctest.readthedocs.org/en/latest/,
Features
TestCases
Initialize and close a loop created for each test (it can be configurated), if the loop uses a selector, it will be updated with a TestSelector object wrapping the original selector (see below),
if the test function is a coroutine function or returns a coroutine, it will run on the loop,
TestCase.setUp() and TestCase.tearDown() can be coroutine functions,
control post-test checks with @fail_on, for instance, the test fail if the loop didn’t run, some optional checks can be activated,
ClockedTestCase allows to control the loop clock and run timed events without waiting the wall clock.
Mock and CoroutineMock
CoroutineMock is a new Mock class which mocks a coroutine function, and returns a coroutine when called,
MagicMock supports asynchronous context managers and asynchronous iterators,
NonCallableMock, Mock and CoroutineMock can return CoroutineMock objects when its attributes are get if there is a matching attribute in the spec (or spec_set) object which is a coroutine function,
patch(), patch.object(), patch.multiple() return a MagickMock or CoroutineMock object by default, according to the patched target,
patch(), patch.object(), patch.multiple() handle generators and coroutines and their behavior can be controled when the generator or coroutine pauses,
all the patch() methods can decorate coroutine functions,
mock_open() returns a MagickMock object by default.
return_once() can be used with Mock.side_effect to return a value only once when a mock is called.
Selectors
The module asynctest.selector provides classes to mock objects performing IO (files, sockets, etc).
FileMock is a special type of mock which represents a file. FileMock.fileno() returns a special value which allows to identify uniquely the mock,
SocketMock is a special type of FileMock which uses socket.socket as spec,
TestSelector is a custom selector able to wrap a real selector implementation and deal with FileMock objects, it can replace a selector loop by calling loop._selector = TestSelector(loop._selector), and will intercept mock so they don’t get registered to the actual selector.
set_read_ready() and set_write_ready() to force read and write event callbacks to be scheduled on the loop, as if the selector scheduled them.
Helpers
the coroutine exhaust_callbacks(loop) returns once all the callbacks which should be called immediately are executed, which is useful when the test author needs to assert things which are not yet executed by the loop.
Roadmap
I hope I will find time to develop and release the following features:
set of warnings against common mistakes
proactor support
Tests
asynctest is unit tested. You can run asynctest test suite with this command:
$ PYTHONPATH=. python -m unittest test
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 asynctest-0.12.0.tar.gz
.
File metadata
- Download URL: asynctest-0.12.0.tar.gz
- Upload date:
- Size: 41.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c01915e9c83873ad6af42d078b67e8f9e16122f966f57053e5320d8c5ad135aa |
|
MD5 | cf1af74de219ef2cec6c40857d606fee |
|
BLAKE2b-256 | 7fbfb4dfe33bf96914162c1c0c91dfed318d9e1fa9fb598d58753b95f926331a |
File details
Details for the file asynctest-0.12.0-py3-none-any.whl
.
File metadata
- Download URL: asynctest-0.12.0-py3-none-any.whl
- Upload date:
- Size: 28.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92e92d3d31c5a684e1f4f9f3fcd8c4c7a3e40b380e4164d8f49a362c7f402b95 |
|
MD5 | a209be039af7e9b099fad18634f5f274 |
|
BLAKE2b-256 | 359489fd44e6b564bf78013a501e413c5c985e803ee736e5353cea6dae986113 |