Source code for ts.torch_handler.unit_tests.test_envelopes
# pylint: disable=W0621
# Using the same name as global function is part of pytest
"""
Basic unit test for BaseHandler class.
Ensures it can load and execute an example model
"""
import pytest
from ts.torch_handler.base_handler import BaseHandler
from ts.torch_handler.request_envelope.body import BodyEnvelope
from ts.torch_handler.request_envelope.json import JSONEnvelope
[docs]@pytest.fixture()
def handle_fn(base_model_context):
handler = BaseHandler()
handler.initialize(base_model_context)
return handler.handle
[docs]def test_json(handle_fn, base_model_context):
test_data = [{"body": {"instances": [[1.0, 2.0]]}}]
expected_result = ['{"predictions": [1]}']
envelope = JSONEnvelope(handle_fn)
results = envelope.handle(test_data, base_model_context)
assert results == expected_result
[docs]def test_json_batch(handle_fn, base_model_context):
test_data = [{"body": {"instances": [[1.0, 2.0], [4.0, 3.0]]}}]
expected_result = ['{"predictions": [1, 0]}']
envelope = JSONEnvelope(handle_fn)
results = envelope.handle(test_data, base_model_context)
assert results == expected_result
[docs]def test_json_double_batch(handle_fn, base_model_context):
"""
More complex test case. Makes sure the model can
mux several batches and return the demuxed results
"""
test_data = [
{"body": {"instances": [[1.0, 2.0]]}},
{"body": {"instances": [[4.0, 3.0], [5.0, 6.0]]}},
]
expected_result = ['{"predictions": [1]}', '{"predictions": [0, 1]}']
envelope = JSONEnvelope(handle_fn)
results = envelope.handle(test_data, base_model_context)
print(results)
assert results == expected_result
[docs]def test_body(handle_fn, base_model_context):
test_data = [{"body": [1.0, 2.0]}]
expected_result = [1]
envelope = BodyEnvelope(handle_fn)
results = envelope.handle(test_data, base_model_context)
assert results == expected_result
[docs]def test_binary(base_model_context):
test_data = [{"instances": [{"b64": "YQ=="}]}]
envelope = JSONEnvelope(lambda x, y: [row.decode("utf-8") for row in x])
results = envelope.handle(test_data, base_model_context)
assert results == ['{"predictions": ["a"]}']