Context manager that expects code to raise an exception
Project description
expect-exception
A decorator and context manager to run code that you expect (and want!) to raise an exception.
This module is meant to "reverse" the usage of try/except, for when you write
code where the exception is the "good" branch. It raises an
ExceptionNotRaisedError when the expected exception type is not raised in the
wrapped code, either because it finished executing or because another,
unexpected exception was raised.
For example, you can use expect_exception to replace the following code:
def upload_new_file(filename, content)
try:
some_api.fetch_file(filename)
except FileNotFoundError:
# We don't want to override existing files on SomeService, but SomeApi
# doesn't have a method to check if a file exists!
pass
some_api.upload_file(filename, content)
With this:
def upload_new_file(filename, content)
with expect_exception(FileNotFoundError):
# We don't want to override existing files on SomeService, but SomeApi
# doesn't have a method to check if a file exists!
some_api.fetch_file(filename)
some_api.upload_file(filename, content)
Alternatively, you can use expect_exception as a decorator for a helper
method:
# some_api.py
class SomeApi(...):
...
def fetch_file(self, filename):
...
@expect_exception(FileNotFoundError):
def ensure_file_missing(self, filename):
self.fetch_file(filename)
# ---
def upload_new_file(filename, content):
some_api.ensure_file_missing(filename)
some_api.upload_file(filename, content)
Usage
from expect_exception import expect_exception
# Use either as a @decorator or as a `with` statement context.
expect_exception(
SomeExceptionType[, SomeExceptionType, ...,
wrap_unexpected_exception: bool])
Arguments:
*exception_types: Type[BaseException](positional arguments): one or more exception types (class objects) that are expected to be raised in this context. Exceptions that inherit from any of those listed here will also be caught.wrap_unexpected_exception: bool(keyword only argument): True to wrap any unexpected exception in anExceptionNotRaisedError; False to bubble up the unexpected exception. Defaults to True.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file expect-exception-1.0.2.tar.gz.
File metadata
- Download URL: expect-exception-1.0.2.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
123ff0c60328c62dbe8716823dbdd787f94a35433d0524496352a8aedca4d4f7
|
|
| MD5 |
cf6e6f397e672dcef6150bde3dca46d8
|
|
| BLAKE2b-256 |
ff119e7bc6766e4b849c9d46e6df54b746dc8ada627adf54dbda51f12bad8050
|
File details
Details for the file expect_exception-1.0.2-py3-none-any.whl.
File metadata
- Download URL: expect_exception-1.0.2-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83c45cbc5873d1068dfff8ac3b256db9fe9dd955fa5740b97c47548478cc61cf
|
|
| MD5 |
0c2c23b73bcf2093b18282dba44835e0
|
|
| BLAKE2b-256 |
9c7775474417cff221d04108ed2f88b4086ce5032047c3b24036b95f5ca52fe2
|