-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathTestUtilities.py
52 lines (44 loc) · 1.59 KB
/
TestUtilities.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import os
import unittest.mock
from contextlib import contextmanager
@contextmanager
def generate_files(fnames, file_contents, directory=os.getcwd()):
"""
Generates files with specified contents temporarily.
:param fnames: list of file names to create.
:param file_contents: list of strings containing content
corresponding to the supplied file names.
:param directory: path to the directory where the files are
to be generated.
"""
fpaths = []
try:
if not os.path.exists(directory):
os.makedirs(directory)
for fname, fcontent in zip(fnames, file_contents):
fpath = os.path.join(directory, fname)
with open(fpath, 'w', encoding='utf-8') as file:
file.write(fcontent)
fpaths.append(fpath)
yield fpaths
finally:
for fpath in fpaths:
os.remove(fpath)
@contextmanager
def bear_test_module():
"""
This function mocks the ``pkg_resources.iter_entry_points()``
to use the testing bear module we have. Hence, it doesn't test
the collection of entry points.
"""
bears_test_module = os.path.join(os.path.dirname(__file__),
'test_bears', '__init__.py')
class EntryPoint:
@staticmethod
def load():
class PseudoPlugin:
__file__ = bears_test_module
return PseudoPlugin()
with unittest.mock.patch('pkg_resources.iter_entry_points',
return_value=[EntryPoint()]):
yield