-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtest_cli.py
More file actions
235 lines (193 loc) · 6.44 KB
/
test_cli.py
File metadata and controls
235 lines (193 loc) · 6.44 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
"""Test the wristpy cli."""
import logging
import pathlib
import pytest
import pytest_mock
from typer import testing
from wristpy.core import cli, orchestrator
@pytest.fixture
def create_typer_cli_runner() -> testing.CliRunner:
"""Create a Typer CLI runner."""
return testing.CliRunner()
def test_main_default(
mocker: pytest_mock.MockerFixture,
sample_data_gt3x: pathlib.Path,
create_typer_cli_runner: testing.CliRunner,
) -> None:
"""Test cli with only necessary arguments."""
mock_run = mocker.patch.object(orchestrator, "run")
default_thresholds = None
result = create_typer_cli_runner.invoke(cli.app, [str(sample_data_gt3x)])
assert result.exit_code == 0
mock_run.assert_called_once_with(
input=sample_data_gt3x,
output=None,
thresholds=default_thresholds,
calibrator=None,
activity_metric="enmo",
epoch_length=5,
nonwear_algorithm=["ggir"],
verbosity=logging.INFO,
output_filetype=None,
)
def test_main_enmo_default(
mocker: pytest_mock.MockerFixture,
sample_data_gt3x: pathlib.Path,
create_typer_cli_runner: testing.CliRunner,
) -> None:
"""Test that correct enmo default thresholds are pulled."""
mock_run = mocker.patch.object(orchestrator, "_run_file")
default_thresholds = (0.0563, 0.1916, 0.6958)
create_typer_cli_runner.invoke(cli.app, ([str(sample_data_gt3x), "-a", "enmo"]))
mock_run.assert_called_once_with(
input=sample_data_gt3x,
output=None,
thresholds=default_thresholds,
calibrator=None,
activity_metric="enmo",
epoch_length=5,
nonwear_algorithm=["ggir"],
verbosity=logging.INFO,
)
def test_main_mad_default(
mocker: pytest_mock.MockerFixture,
sample_data_gt3x: pathlib.Path,
create_typer_cli_runner: testing.CliRunner,
) -> None:
"""Test that correct mad default thresholds are pulled."""
mock_run = mocker.patch.object(orchestrator, "_run_file")
default_thresholds = (0.029, 0.338, 0.604)
create_typer_cli_runner.invoke(cli.app, ([str(sample_data_gt3x), "-a", "mad"]))
mock_run.assert_called_once_with(
input=sample_data_gt3x,
output=None,
thresholds=default_thresholds,
calibrator=None,
activity_metric="mad",
nonwear_algorithm=["ggir"],
epoch_length=5,
verbosity=logging.INFO,
)
def test_main_agcount_default(
mocker: pytest_mock.MockerFixture,
sample_data_gt3x: pathlib.Path,
create_typer_cli_runner: testing.CliRunner,
) -> None:
"""Test that correct ag_count default thresholds are pulled."""
mock_run = mocker.patch.object(orchestrator, "_run_file")
default_thresholds = (100, 3000, 5200)
create_typer_cli_runner.invoke(cli.app, ([str(sample_data_gt3x), "-a", "ag_count"]))
mock_run.assert_called_once_with(
input=sample_data_gt3x,
output=None,
thresholds=default_thresholds,
calibrator=None,
activity_metric="ag_count",
nonwear_algorithm=["ggir"],
epoch_length=5,
verbosity=logging.INFO,
)
def test_main_with_options(
mocker: pytest_mock.MockerFixture,
sample_data_gt3x: pathlib.Path,
tmp_path: pathlib.Path,
create_typer_cli_runner: testing.CliRunner,
) -> None:
"""Test cli with optional arguments."""
test_output = tmp_path / "test.csv"
mock_run = mocker.patch.object(orchestrator, "run")
create_typer_cli_runner.invoke(
cli.app,
(
[
str(sample_data_gt3x),
"--output",
str(test_output),
"-c",
"gradient",
"-t",
"0.1",
"1.0",
"1.5",
"-e",
"3",
"-a",
"mad",
"-n",
"cta",
"-n",
"ggir",
]
),
)
mock_run.assert_called_once_with(
input=sample_data_gt3x,
output=test_output,
thresholds=(0.1, 1.0, 1.5),
calibrator="gradient",
activity_metric="mad",
nonwear_algorithm=["cta", "ggir"],
epoch_length=3,
verbosity=logging.INFO,
output_filetype=None,
)
def test_main_with_bad_thresholds(
sample_data_gt3x: pathlib.Path,
create_typer_cli_runner: testing.CliRunner,
) -> None:
"""Test cli with bad thresholds."""
result = create_typer_cli_runner.invoke(
cli.app, [str(sample_data_gt3x), "-t", "3.0"]
)
assert result.exit_code != 0
# partial matching due to ANSI escape sequences in Github Actions
assert "requires 3 arguments." in result.output
def test_main_with_bad_epoch(
sample_data_gt3x: pathlib.Path,
create_typer_cli_runner: testing.CliRunner,
) -> None:
"""Test cli with invalid epoch length."""
result = create_typer_cli_runner.invoke(
cli.app, [str(sample_data_gt3x), "-e", "-5"]
)
assert result.exit_code != 0
assert result.exception is not None
def test_main_verbosity(
mocker: pytest_mock.MockerFixture,
sample_data_gt3x: pathlib.Path,
create_typer_cli_runner: testing.CliRunner,
) -> None:
"""Test cli with different verbosity levels."""
mock_run = mocker.patch.object(orchestrator, "run")
create_typer_cli_runner.invoke(cli.app, [str(sample_data_gt3x), "-v"])
mock_run.assert_called_once_with(
input=sample_data_gt3x,
output=None,
thresholds=None,
calibrator=None,
activity_metric="enmo",
epoch_length=5,
nonwear_algorithm=["ggir"],
verbosity=logging.DEBUG,
output_filetype=None,
)
def test_main_version(
create_typer_cli_runner: testing.CliRunner,
) -> None:
"""Test cli version output."""
result = create_typer_cli_runner.invoke(cli.app, ["--version"])
assert result.exit_code == 0
assert "Wristpy version" in result.output
def test_main_version_with_options(
create_typer_cli_runner: testing.CliRunner,
sample_data_gt3x: pathlib.Path,
mocker: pytest_mock.MockerFixture,
) -> None:
"""Test other arguments and options are ignored when --version is passed."""
mock_run = mocker.patch.object(orchestrator, "run")
result = create_typer_cli_runner.invoke(
cli.app, [str(sample_data_gt3x), "-e", "5", "--version"]
)
assert result.exit_code == 0
assert "Wristpy version" in result.output
mock_run.assert_not_called()