Skip to main content

SQLAlchemy mock helpers.

Project description

https://badge.fury.io/py/alembic-mock.png https://travis-ci.org/miki725/alembic-mock.png?branch=master https://coveralls.io/repos/miki725/alembic-mock/badge.png?branch=master

SQLAlchemy mock helpers.

Installing

You can install alchemy-mock using pip:

$ pip install alchemy-mock

Why?

SQLAlchemy is awesome. Unittests are great. Accessing DB during tests - not so much. This library provides easy way to mock SQLAlchemy’s session in unittests while preserving ability to do sane asserts. Normally SQLAlchemy’s expressions cannot be easily compared as comparison on binary expression produces yet another binary expression:

>>> type((Model.foo == 5) == (Model.bar == 5))
<class 'sqlalchemy.sql.elements.BinaryExpression'>

But they can be compared with this library:

>>> ExpressionMatcher(Model.foo == 5) == (Model.bar == 5)
False

Using

ExpressionMatcher can be directly used:

>>> from alchemy_mock.comparison import ExpressionMatcher
>>> ExpressionMatcher(Model.foo == 5) == (Model.foo == 5)
True

Alternatively AlchemyMagicMock can be used to mock out SQLAlchemy session:

>>> from alchemy_mock.mocking import AlchemyMagicMock
>>> session = AlchemyMagicMock()
>>> session.query(Model).filter(Model.foo == 5).all()

>>> session.query.return_value.filter.assert_called_once_with(Model.foo == 5)

In real world though session can be interacted with multiple times to query some data. In those cases UnifiedAlchemyMagicMock can be used which combines various calls for easier assertions:

>>> from alchemy_mock.mocking import UnifiedAlchemyMagicMock
>>> session = UnifiedAlchemyMagicMock()

>>> q = session.query(Model).filter(Model.foo == 5)
>>> if condition:
...     q = q.filter(Model.bar > 10)
>>> data1 = q.all()
>>> data2 = q.filter(Model.note == 'hello world').all()

>>> session.filter.assert_has_calls([
...     mock.call(Model.foo == 5, Model.bar > 10),
...     mock.call(Model.foo == 5, Model.bar > 10, Model.note == 'hello world'),
... ])

History

0.1.0 (2018-01-12)

  • First release on PyPI.

Credits

Development Lead

Contributors

None yet. Why not be the first?

License

The MIT License (MIT)

Copyright (c) 2018, Miroslav Shubernetskiy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

alchemy-mock-0.1.0.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

alchemy_mock-0.1.0-py2.py3-none-any.whl (11.4 kB view details)

Uploaded Python 2Python 3

File details

Details for the file alchemy-mock-0.1.0.tar.gz.

File metadata

  • Download URL: alchemy-mock-0.1.0.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for alchemy-mock-0.1.0.tar.gz
Algorithm Hash digest
SHA256 7debfac95164c16ba34753cd755e087c44ba8f01ff13a83963a610a8587174f8
MD5 3697d3bf7942f5df9ad6c786ba4d7e46
BLAKE2b-256 fc8c9d742e198be20886e9b5a014a7cda89d8acba7b7c7aba1a6e92342734a5e

See more details on using hashes here.

File details

Details for the file alchemy_mock-0.1.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for alchemy_mock-0.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 214f81e234875eceb20ba78cb1e86c81086d42dec2f05dcd5c032de72db2d773
MD5 99ee136ff7b959463290b7d31f2674f1
BLAKE2b-256 028c9f087dc5be2e773654f74d021fca2b1d8a52a6f0c49aa0acd7cc4177f760

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page