-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathconfiguration_test.py
186 lines (146 loc) · 5.14 KB
/
configuration_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
"""Tests for the Configuration class."""
import types
import pytest
from tests.utils.object_assertions import (
assert_match_object,
assert_object_lists_match,
assert_to_contain_object,
)
from typesense.configuration import ConfigDict, Configuration, Node
from typesense.exceptions import ConfigError
DEFAULT_NODE = types.MappingProxyType(
{"host": "localhost", "port": 8108, "protocol": "http"},
)
def test_configuration_defaults() -> None:
"""Test the Configuration constructor defaults."""
config: ConfigDict = {
"nodes": [
{
"host": "localhost",
"port": 8108,
"protocol": "http",
"path": "3",
},
DEFAULT_NODE,
],
"nearest_node": DEFAULT_NODE,
"api_key": "xyz",
}
configuration = Configuration(config)
nodes = [
Node(host="localhost", port=8108, protocol="http", path=""),
Node(host="localhost", port=8108, protocol="http", path="3"),
]
nearest_node = Node(host="localhost", port=8108, protocol="http", path="")
assert_object_lists_match(configuration.nodes, nodes)
assert_match_object(configuration.nearest_node, nearest_node)
expected = {
"api_key": "xyz",
"connection_timeout_seconds": 3.0,
"num_retries": 3,
"retry_interval_seconds": 1.0,
"verify": True,
}
assert_to_contain_object(configuration, expected)
def test_configuration_explicit() -> None:
"""Test the Configuration constructor with explicit values."""
config: ConfigDict = {
"nodes": [DEFAULT_NODE],
"nearest_node": DEFAULT_NODE,
"api_key": "xyz",
"connection_timeout_seconds": 5.0,
"num_retries": 5,
"retry_interval_seconds": 2.0,
"verify": False,
"additional_headers": {"X-Test": "test", "X-Test2": "test2"},
}
configuration = Configuration(config)
nodes = [Node(host="localhost", port=8108, protocol="http", path="")]
nearest_node = Node(host="localhost", port=8108, protocol="http", path="")
assert_object_lists_match(configuration.nodes, nodes)
assert_match_object(configuration.nearest_node, nearest_node)
expected = {
"api_key": "xyz",
"connection_timeout_seconds": 5.0,
"num_retries": 5,
"retry_interval_seconds": 2.0,
"verify": False,
"additional_headers": {"X-Test": "test", "X-Test2": "test2"},
}
assert_to_contain_object(configuration, expected)
def test_configuration_no_nearest_node() -> None:
"""Test the Configuration constructor with no nearest node."""
config: ConfigDict = {
"nodes": [DEFAULT_NODE],
"api_key": "xyz",
}
configuration = Configuration(config)
nodes = Node(host="localhost", port=8108, protocol="http", path="")
for node in configuration.nodes:
assert_match_object(node, nodes)
expected = {
"api_key": "xyz",
"connection_timeout_seconds": 3.0,
"num_retries": 3,
"retry_interval_seconds": 1.0,
"verify": True,
"nearest_node": None,
}
assert_to_contain_object(configuration, expected)
def test_configuration_empty_nodes() -> None:
"""Test the Configuration constructor with empty nodes."""
config: ConfigDict = {
"nodes": [],
"api_key": "xyz",
}
with pytest.raises(
ConfigError,
match="`nodes` is not defined.", # noqa: B950
):
Configuration(config)
def test_configuration_invalid_node() -> None:
"""Test the Configuration constructor with an invalid node."""
config: ConfigDict = {
"nodes": [{"host": "localhost"}],
"api_key": "xyz",
}
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
):
Configuration(config)
def test_configuration_invalid_node_url() -> None:
"""Test the Configuration constructor with an invalid node as a url."""
config: ConfigDict = {
"nodes": ["http://localhost"],
"api_key": "xyz",
}
with pytest.raises(
ConfigError,
match="Node URL does not contain the port.",
):
Configuration(config)
def test_configuration_invalid_nearest_node() -> None:
"""Test the Configuration constructor with an invalid nearest node."""
config: ConfigDict = {
"nodes": [DEFAULT_NODE],
"nearest_node": {"host": "localhost"},
"api_key": "xyz",
}
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
):
Configuration(config)
def test_configuration_invalid_nearest_node_url() -> None:
"""Test the Configuration constructor with an invalid nearest node as a url."""
config: ConfigDict = {
"nodes": [DEFAULT_NODE],
"nearest_node": "http://localhost",
"api_key": "xyz",
}
with pytest.raises(
ConfigError,
match="Node URL does not contain the port.",
):
Configuration(config)