-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_coreugate.py
107 lines (85 loc) · 3.55 KB
/
test_coreugate.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import sys, pathlib, pandas, pytest, numpy, logging
# from cleo.commands import Command
# from cleo import CommandTester
from unittest.mock import patch
from coreugate.coreugate import RunCoreugate
def test_path_exists():
'''
test that path_exists returns True
'''
with patch.object(RunCoreugate, "__init__", lambda x: None):
p = pathlib.Path('test', 'test_file.txt')
cg_obj = RunCoreugate()
assert cg_obj._check_file(f"{p}")
def test_path_not_exists():
'''
test that path_exists returns a FileNotFoundError when file is missing
'''
with patch.object(RunCoreugate, "__init__", lambda x: None):
p = pathlib.Path('test', 'not_file.txt')
cg_obj = RunCoreugate()
cg_obj.logger = logging.getLogger(__name__)
with pytest.raises(SystemExit):
cg_obj._check_file(f'{p}')
def test_bad_input():
'''
test if output is a messsage to screen if wrong input
'''
with patch.object(RunCoreugate, "__init__", lambda x: None):
tab = pandas.DataFrame({'A':[1], 'B':[2], 'C':[3], 'D':[4]})
cg_obj = RunCoreugate()
cg_obj.logger = logging.getLogger(__name__)
with pytest.raises(SystemExit):
cg_obj.check_input_file(tab)
def test_good_input():
'''
test if output is a messsage to screen if wrong input
'''
with patch.object(RunCoreugate, "__init__", lambda x: None):
tab = pandas.DataFrame({'A':[1], 'B':[2]})
cg_obj = RunCoreugate()
cg_obj.logger = logging.getLogger(__name__)
assert cg_obj.check_input_file(tab) == True
def test_cluster_threshold_success():
'''
test that path_exists returns a FileNotFoundError when file is missing
'''
with patch.object(RunCoreugate, "__init__", lambda x: None):
cg_obj = RunCoreugate()
cg_obj.logger = logging.getLogger(__name__)
assert cg_obj.check_cluster_thresholds('50,100')
def test_cluster_threshold_empty():
'''
test that path_exists returns a FileNotFoundError when file is missing
'''
with patch.object(RunCoreugate, "__init__", lambda x: None):
cg_obj = RunCoreugate()
cg_obj.logger = logging.getLogger(__name__)
with pytest.raises(SystemExit):
cg_obj.check_cluster_thresholds('')
def test_cluster_threshold_type_error():
'''
test that path_exists returns a FileNotFoundError when file is missing
'''
with patch.object(RunCoreugate, "__init__", lambda x: None):
cg_obj = RunCoreugate()
cg_obj.logger = logging.getLogger(__name__)
with pytest.raises(SystemExit):
cg_obj.check_cluster_thresholds([])
def test_filter_threshold_success():
'''
test that path_exists returns a FileNotFoundError when file is missing
'''
with patch.object(RunCoreugate, "__init__", lambda x: None):
cg_obj = RunCoreugate()
cg_obj.logger = logging.getLogger(__name__)
assert cg_obj.check_filter_threshold(0.95)
def test_filter_threshold_type_error():
'''
test that path_exists returns a FileNotFoundError when file is missing
'''
with patch.object(RunCoreugate, "__init__", lambda x: None):
cg_obj = RunCoreugate()
cg_obj.logger = logging.getLogger(__name__)
with pytest.raises(SystemExit):
cg_obj.check_filter_threshold('p')