2021-08-06 17:31:42 +02:00
|
|
|
import pytest
|
|
|
|
from clickhouse_driver.errors import ServerException
|
|
|
|
|
2022-03-22 21:27:11 +01:00
|
|
|
from posthog.errors import wrap_query_error
|
2021-08-06 17:31:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"error,expected_type,expected_message,expected_code",
|
|
|
|
[
|
|
|
|
(AttributeError("Foobar"), "AttributeError", "Foobar", None),
|
|
|
|
(
|
|
|
|
ServerException("Estimated query execution time (34.5 seconds) is too long. Aborting query"),
|
|
|
|
"EstimatedQueryExecutionTimeTooLong",
|
|
|
|
"Estimated query execution time (34.5 seconds) is too long.",
|
|
|
|
None,
|
|
|
|
),
|
|
|
|
(ServerException("Syntax error", code=62), "CHQueryErrorSyntaxError", "Code: 62.\nSyntax error", 62),
|
2022-03-15 14:21:29 +01:00
|
|
|
(ServerException("Syntax error", code=9999), "CHQueryErrorUnknownException", "Code: 9999.\nSyntax error", 9999),
|
2021-08-06 17:31:42 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_wrap_query_error(error, expected_type, expected_message, expected_code):
|
|
|
|
new_error = wrap_query_error(error)
|
|
|
|
assert type(new_error).__name__ == expected_type
|
|
|
|
assert str(new_error) == expected_message
|
|
|
|
assert getattr(new_error, "code", None) == expected_code
|