-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontext_managers.py
36 lines (29 loc) · 1 KB
/
context_managers.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from contextlib import ContextDecorator
class MassContextManagerExceptions(Exception):
def __init__(self, exceptions):
self.exceptions = exceptions
class MassContextManager(ContextDecorator):
"""
A context manager / decorator that enter/exit a list of mocks.
e.g.:
class FooBarMocks(MassContextManager):
mocks = (
mock.patch('foo.bar', return_value='foo'),
mock.patch('foo.baz', return_value='bar')
)
"""
mocks = () # Must be set in subclass
def __enter__(self):
assert self.mocks
self.patchers = [mock.__enter__() for mock in self.mocks]
return self
def __exit__(self, exc_type, exc_val, exc_tb):
assert self.mocks
errors = []
for mock in self.mocks:
try:
mock.__exit__(exc_type, exc_val, exc_tb)
except Exception as e:
errors.append(e)
if errors:
raise MassContextManagerExceptions(errors)