-
Notifications
You must be signed in to change notification settings - Fork 879
/
Copy pathtest_model_custom_dependencies.py
301 lines (265 loc) · 8.71 KB
/
test_model_custom_dependencies.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
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
import os
import pathlib
import platform
import subprocess
import pytest
import requests
import test_utils
from model_archiver import ModelArchiver, ModelArchiverConfig
from model_archiver.manifest_components.manifest import RuntimeType
def setup_module(module):
test_utils.torchserve_cleanup()
# Clean out custom model dependencies in base python environment
subprocess.run(
[
"pip",
"uninstall",
"-y",
"-r",
str(
os.path.join(
test_utils.REPO_ROOT,
"test",
"pytest",
"test_data",
"custom_dependencies",
"requirements.txt",
)
),
],
check=True,
)
# Create model store directory
pathlib.Path(test_utils.MODEL_STORE).mkdir(parents=True, exist_ok=True)
def teardown_module(module):
test_utils.torchserve_cleanup()
# Restore custom model dependencies in base python environment
subprocess.run(
[
"pip",
"install",
"-r",
str(
os.path.join(
test_utils.REPO_ROOT,
"test",
"pytest",
"test_data",
"custom_dependencies",
"requirements.txt",
)
),
],
check=True,
)
def generate_model_archive(use_requirements=False, use_venv=False):
config = ModelArchiverConfig(
model_name="mnist_custom_dependencies",
handler=os.path.join(
test_utils.REPO_ROOT,
"test",
"pytest",
"test_data",
"custom_dependencies",
"mnist_custom_dependencies_handler.py",
),
runtime=RuntimeType.PYTHON.value,
model_file=os.path.join(
test_utils.REPO_ROOT, "examples", "image_classifier", "mnist", "mnist.py"
),
serialized_file=os.path.join(
test_utils.REPO_ROOT,
"examples",
"image_classifier",
"mnist",
"mnist_cnn.pt",
),
extra_files=None,
export_path=test_utils.MODEL_STORE,
force=True,
archive_format="no-archive",
version="1.0",
requirements_file=os.path.join(
test_utils.REPO_ROOT,
"test",
"pytest",
"test_data",
"custom_dependencies",
"requirements.txt",
)
if use_requirements
else None,
config_file=os.path.join(
test_utils.REPO_ROOT,
"test",
"pytest",
"test_data",
"custom_dependencies",
"model_config.yaml",
)
if use_venv
else None,
)
ModelArchiver.generate_model_archive(config)
def register_model_and_make_inference_request(expect_model_load_failure=False):
try:
resp = test_utils.register_model(
"mnist_custom_dependencies", "mnist_custom_dependencies"
)
resp.raise_for_status()
except Exception as e:
if expect_model_load_failure:
return
else:
raise e
if expect_model_load_failure:
raise Exception("Expected model load failure but model load succeeded")
data_file = os.path.join(
test_utils.REPO_ROOT,
"examples",
"image_classifier",
"mnist",
"test_data",
"0.png",
)
with open(data_file, "rb") as input_data:
resp = requests.post(
url=f"http://localhost:8080/predictions/mnist_custom_dependencies",
data=input_data,
)
resp.raise_for_status()
@pytest.mark.skipif(
platform.machine() == "aarch64", reason="Test skipped on aarch64 architecture"
)
def test_install_dependencies_to_target_directory_with_requirements():
test_utils.torchserve_cleanup()
try:
generate_model_archive(use_requirements=True, use_venv=False)
test_utils.start_torchserve(
model_store=test_utils.MODEL_STORE,
snapshot_file=os.path.join(
test_utils.REPO_ROOT,
"test",
"pytest",
"test_data",
"custom_dependencies",
"config.properties",
),
no_config_snapshots=True,
gen_mar=False,
)
register_model_and_make_inference_request(expect_model_load_failure=False)
finally:
test_utils.torchserve_cleanup()
def test_install_dependencies_to_target_directory_without_requirements():
test_utils.torchserve_cleanup()
try:
generate_model_archive(use_requirements=False, use_venv=False)
test_utils.start_torchserve(
model_store=test_utils.MODEL_STORE,
snapshot_file=os.path.join(
test_utils.REPO_ROOT,
"test",
"pytest",
"test_data",
"custom_dependencies",
"config.properties",
),
no_config_snapshots=True,
gen_mar=False,
)
register_model_and_make_inference_request(expect_model_load_failure=True)
finally:
test_utils.torchserve_cleanup()
def test_disable_install_dependencies_to_target_directory_with_requirements():
test_utils.torchserve_cleanup()
try:
generate_model_archive(use_requirements=True, use_venv=False)
test_utils.start_torchserve(
model_store=test_utils.MODEL_STORE,
snapshot_file=None,
no_config_snapshots=True,
gen_mar=False,
)
register_model_and_make_inference_request(expect_model_load_failure=True)
finally:
test_utils.torchserve_cleanup()
def test_disable_install_dependencies_to_target_directory_without_requirements():
test_utils.torchserve_cleanup()
try:
generate_model_archive(use_requirements=False, use_venv=False)
test_utils.start_torchserve(
model_store=test_utils.MODEL_STORE,
snapshot_file=None,
no_config_snapshots=True,
gen_mar=False,
)
register_model_and_make_inference_request(expect_model_load_failure=True)
finally:
test_utils.torchserve_cleanup()
def test_install_dependencies_to_venv_with_requirements():
test_utils.torchserve_cleanup()
try:
generate_model_archive(use_requirements=True, use_venv=True)
test_utils.start_torchserve(
model_store=test_utils.MODEL_STORE,
snapshot_file=os.path.join(
test_utils.REPO_ROOT,
"test",
"pytest",
"test_data",
"custom_dependencies",
"config.properties",
),
no_config_snapshots=True,
gen_mar=False,
)
register_model_and_make_inference_request(expect_model_load_failure=False)
finally:
test_utils.torchserve_cleanup()
def test_install_dependencies_to_venv_without_requirements():
test_utils.torchserve_cleanup()
try:
generate_model_archive(use_requirements=False, use_venv=True)
test_utils.start_torchserve(
model_store=test_utils.MODEL_STORE,
snapshot_file=os.path.join(
test_utils.REPO_ROOT,
"test",
"pytest",
"test_data",
"custom_dependencies",
"config.properties",
),
no_config_snapshots=True,
gen_mar=False,
)
register_model_and_make_inference_request(expect_model_load_failure=True)
finally:
test_utils.torchserve_cleanup()
def test_disable_install_dependencies_to_venv_with_requirements():
test_utils.torchserve_cleanup()
try:
generate_model_archive(use_requirements=True, use_venv=True)
test_utils.start_torchserve(
model_store=test_utils.MODEL_STORE,
snapshot_file=None,
no_config_snapshots=True,
gen_mar=False,
)
register_model_and_make_inference_request(expect_model_load_failure=True)
finally:
test_utils.torchserve_cleanup()
def test_disable_install_dependencies_to_venv_without_requirements():
test_utils.torchserve_cleanup()
try:
generate_model_archive(use_requirements=False, use_venv=True)
test_utils.start_torchserve(
model_store=test_utils.MODEL_STORE,
snapshot_file=None,
no_config_snapshots=True,
gen_mar=False,
)
register_model_and_make_inference_request(expect_model_load_failure=True)
finally:
test_utils.torchserve_cleanup()