-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathconfiguration_validations_test.py
201 lines (170 loc) · 6.15 KB
/
configuration_validations_test.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
"""Tests for the ConfigurationValidations class."""
import types
import pytest
from typesense.configuration import ConfigDict, ConfigurationValidations
from typesense.exceptions import ConfigError
DEFAULT_NODE = types.MappingProxyType(
{"host": "localhost", "port": 8108, "protocol": "http"},
)
def test_validate_node_fields_with_url() -> None:
"""Test validate_node_fields with a URL string."""
assert ConfigurationValidations.validate_node_fields("http://localhost:8108/path")
def test_validate_node_fields_with_valid_dict() -> None:
"""Test validate_node_fields with a valid dictionary."""
assert ConfigurationValidations.validate_node_fields(
DEFAULT_NODE,
)
def test_validate_node_fields_with_invalid_dict() -> None:
"""Test validate_node_fields with an invalid dictionary."""
assert not ConfigurationValidations.validate_node_fields(
{
"host": "localhost",
"port": 8108,
},
)
def test_deprecation_warning_timeout_seconds(caplog: pytest.LogCaptureFixture) -> None:
"""Test that a deprecation warning is issued for the 'timeout_seconds' field."""
config_dict: ConfigDict = {
"nodes": [DEFAULT_NODE],
"nearest_node": "http://localhost:8108",
"api_key": "xyz",
"timeout_seconds": 10,
}
ConfigurationValidations.show_deprecation_warnings(config_dict)
assert (
" ".join(
[
"Deprecation warning: timeout_seconds is now renamed",
"to connection_timeout_seconds",
],
)
in caplog.text
)
def test_deprecation_warning_master_node(caplog: pytest.LogCaptureFixture) -> None:
"""Test that a deprecation warning is issued for the 'master_node' field."""
config_dict: ConfigDict = {
"nodes": [DEFAULT_NODE],
"nearest_node": "http://localhost:8108",
"api_key": "xyz",
"master_node": "http://localhost:8108",
}
ConfigurationValidations.show_deprecation_warnings(config_dict)
assert (
"Deprecation warning: master_node is now consolidated to nodes" in caplog.text
)
def test_deprecation_warning_read_replica_nodes(
caplog: pytest.LogCaptureFixture,
) -> None:
"""Test that a deprecation warning is issued for the 'read_replica_nodes' field."""
config_dict: ConfigDict = {
"nodes": [DEFAULT_NODE],
"nearest_node": "http://localhost:8108",
"api_key": "xyz",
"read_replica_nodes": ["http://localhost:8109"],
}
ConfigurationValidations.show_deprecation_warnings(config_dict)
assert (
"Deprecation warning: read_replica_nodes is now consolidated to nodes"
) in caplog.text
def test_validate_config_dict() -> None:
"""Test validate_config_dict."""
ConfigurationValidations.validate_config_dict(
{
"nodes": [
{
"host": "localhost",
"port": 8108,
"protocol": "http",
},
],
"nearest_node": {
"host": "localhost",
"port": 8108,
"protocol": "http",
},
"api_key": "xyz",
},
)
def test_validate_config_dict_with_string_nearest_node() -> None:
"""Test validate_config_dict with nearest node as a string."""
ConfigurationValidations.validate_config_dict(
{
"nodes": [
{
"host": "localhost",
"port": 8108,
"protocol": "http",
},
],
"nearest_node": "http://localhost:8108",
"api_key": "xyz",
},
)
def test_validate_config_dict_with_string_nodes() -> None:
"""Test validate_config_dict with nodes as a string."""
ConfigurationValidations.validate_config_dict(
{
"nodes": "http://localhost:8108",
"nearest_node": "http://localhost:8108",
"api_key": "xyz",
},
)
def test_validate_config_dict_with_no_nodes() -> None:
"""Test validate_config_dict with no nodes."""
with pytest.raises(ConfigError, match="`nodes` is not defined."):
ConfigurationValidations.validate_config_dict(
{
"nearest_node": "http://localhost:8108",
"api_key": "xyz",
},
)
def test_validate_config_dict_with_no_api_key() -> None:
"""Test validate_config_dict with no api_key."""
with pytest.raises(ConfigError, match="`api_key` is not defined."):
ConfigurationValidations.validate_config_dict(
{
"nodes": [DEFAULT_NODE],
"nearest_node": "http://localhost:8108",
},
)
def test_validate_config_dict_with_wrong_node() -> None:
"""Test validate_config_dict with wrong node."""
with pytest.raises(
ConfigError,
match="`node` entry must be a URL string or a dictionary with the following required keys: host, port, protocol", # noqa: B950
):
ConfigurationValidations.validate_config_dict(
{
"nodes": [
{
"host": "localhost",
"port": 8108,
"wrong_field": "invalid",
},
],
"api_key": "xyz",
},
)
def test_validate_config_dict_with_wrong_nearest_node() -> None:
"""Test validate_config_dict with wrong nearest node."""
with pytest.raises(
ConfigError,
match="`nearest_node` entry must be a URL string or a dictionary with the following required keys: host, port, protocol", # noqa: B950
):
ConfigurationValidations.validate_config_dict(
{
"nodes": [
{
"host": "localhost",
"port": 8108,
"protocol": "http",
},
],
"nearest_node": {
"host": "localhost",
"port": 8108,
"wrong_field": "invalid",
},
"api_key": "xyz",
},
)