2023-12-20 17:08:04 +00:00
|
|
|
import errno
|
|
|
|
import json
|
|
|
|
import logging
|
|
|
|
import secrets
|
|
|
|
import struct
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
from contextlib import nullcontext as does_not_raise
|
|
|
|
from itertools import chain
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
from ..aestransport import AesTransport
|
|
|
|
from ..credentials import Credentials
|
2023-12-29 19:17:15 +00:00
|
|
|
from ..deviceconfig import DeviceConfig
|
2023-12-20 17:08:04 +00:00
|
|
|
from ..exceptions import (
|
|
|
|
SMART_RETRYABLE_ERRORS,
|
|
|
|
SMART_TIMEOUT_ERRORS,
|
|
|
|
SmartDeviceException,
|
|
|
|
SmartErrorCode,
|
|
|
|
)
|
|
|
|
from ..iotprotocol import IotProtocol
|
|
|
|
from ..klaptransport import KlapEncryptionSession, KlapTransport, _sha256
|
|
|
|
from ..smartprotocol import SmartProtocol
|
|
|
|
|
|
|
|
DUMMY_QUERY = {"foobar": {"foo": "bar", "bar": "foo"}}
|
2024-01-29 10:55:54 +00:00
|
|
|
DUMMY_MULTIPLE_QUERY = {
|
|
|
|
"foobar": {"foo": "bar", "bar": "foo"},
|
|
|
|
"barfoo": {"foo": "bar", "bar": "foo"},
|
|
|
|
}
|
2023-12-20 17:08:04 +00:00
|
|
|
ERRORS = [e for e in SmartErrorCode if e != 0]
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("error_code", ERRORS, ids=lambda e: e.name)
|
|
|
|
async def test_smart_device_errors(mocker, error_code):
|
|
|
|
host = "127.0.0.1"
|
|
|
|
mock_response = {"result": {"great": "success"}, "error_code": error_code.value}
|
|
|
|
|
|
|
|
mocker.patch.object(AesTransport, "perform_handshake")
|
|
|
|
mocker.patch.object(AesTransport, "perform_login")
|
|
|
|
|
|
|
|
send_mock = mocker.patch.object(AesTransport, "send", return_value=mock_response)
|
|
|
|
|
2023-12-29 19:17:15 +00:00
|
|
|
config = DeviceConfig(host, credentials=Credentials("foo", "bar"))
|
|
|
|
protocol = SmartProtocol(transport=AesTransport(config=config))
|
2023-12-20 17:08:04 +00:00
|
|
|
with pytest.raises(SmartDeviceException):
|
|
|
|
await protocol.query(DUMMY_QUERY, retry_count=2)
|
|
|
|
|
|
|
|
if error_code in chain(SMART_TIMEOUT_ERRORS, SMART_RETRYABLE_ERRORS):
|
|
|
|
expected_calls = 3
|
|
|
|
else:
|
|
|
|
expected_calls = 1
|
|
|
|
assert send_mock.call_count == expected_calls
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("error_code", ERRORS, ids=lambda e: e.name)
|
|
|
|
async def test_smart_device_errors_in_multiple_request(mocker, error_code):
|
|
|
|
host = "127.0.0.1"
|
|
|
|
mock_response = {
|
|
|
|
"result": {
|
|
|
|
"responses": [
|
|
|
|
{"method": "foobar1", "result": {"great": "success"}, "error_code": 0},
|
|
|
|
{
|
|
|
|
"method": "foobar2",
|
|
|
|
"result": {"great": "success"},
|
|
|
|
"error_code": error_code.value,
|
|
|
|
},
|
|
|
|
{"method": "foobar3", "result": {"great": "success"}, "error_code": 0},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"error_code": 0,
|
|
|
|
}
|
|
|
|
|
|
|
|
mocker.patch.object(AesTransport, "perform_handshake")
|
|
|
|
mocker.patch.object(AesTransport, "perform_login")
|
|
|
|
|
|
|
|
send_mock = mocker.patch.object(AesTransport, "send", return_value=mock_response)
|
2023-12-29 19:17:15 +00:00
|
|
|
config = DeviceConfig(host, credentials=Credentials("foo", "bar"))
|
|
|
|
protocol = SmartProtocol(transport=AesTransport(config=config))
|
2023-12-20 17:08:04 +00:00
|
|
|
with pytest.raises(SmartDeviceException):
|
2024-01-29 10:55:54 +00:00
|
|
|
await protocol.query(DUMMY_MULTIPLE_QUERY, retry_count=2)
|
2023-12-20 17:08:04 +00:00
|
|
|
if error_code in chain(SMART_TIMEOUT_ERRORS, SMART_RETRYABLE_ERRORS):
|
|
|
|
expected_calls = 3
|
|
|
|
else:
|
|
|
|
expected_calls = 1
|
|
|
|
assert send_mock.call_count == expected_calls
|
2024-01-29 10:55:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("request_size", [1, 3, 5, 10])
|
|
|
|
@pytest.mark.parametrize("batch_size", [1, 2, 3, 4, 5])
|
|
|
|
async def test_smart_device_multiple_request(mocker, request_size, batch_size):
|
|
|
|
host = "127.0.0.1"
|
|
|
|
requests = {}
|
|
|
|
mock_response = {
|
|
|
|
"result": {"responses": []},
|
|
|
|
"error_code": 0,
|
|
|
|
}
|
|
|
|
for i in range(request_size):
|
|
|
|
method = f"get_method_{i}"
|
|
|
|
requests[method] = {"foo": "bar", "bar": "foo"}
|
|
|
|
mock_response["result"]["responses"].append(
|
|
|
|
{"method": method, "result": {"great": "success"}, "error_code": 0}
|
|
|
|
)
|
|
|
|
|
|
|
|
mocker.patch.object(AesTransport, "perform_handshake")
|
|
|
|
mocker.patch.object(AesTransport, "perform_login")
|
|
|
|
|
|
|
|
send_mock = mocker.patch.object(AesTransport, "send", return_value=mock_response)
|
|
|
|
config = DeviceConfig(
|
|
|
|
host, credentials=Credentials("foo", "bar"), batch_size=batch_size
|
|
|
|
)
|
|
|
|
protocol = SmartProtocol(transport=AesTransport(config=config))
|
|
|
|
|
|
|
|
await protocol.query(requests, retry_count=0)
|
|
|
|
expected_count = int(request_size / batch_size) + (request_size % batch_size > 0)
|
|
|
|
assert send_mock.call_count == expected_count
|