-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsynonyms_test.py
180 lines (145 loc) · 5.25 KB
/
synonyms_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
"""Tests for the Synonyms class."""
from __future__ import annotations
import requests_mock
from tests.utils.object_assertions import (
assert_match_object,
assert_object_lists_match,
assert_to_contain_object,
)
from typesense.api_call import ApiCall
from typesense.collections import Collections
from typesense.synonyms import Synonyms, SynonymSchema, SynonymsRetrieveSchema
def test_init(fake_api_call: ApiCall) -> None:
"""Test that the Synonyms object is initialized correctly."""
synonyms = Synonyms(fake_api_call, "companies")
assert_match_object(synonyms.api_call, fake_api_call)
assert_object_lists_match(
synonyms.api_call.node_manager.nodes,
fake_api_call.node_manager.nodes,
)
assert_match_object(
synonyms.api_call.config.nearest_node,
fake_api_call.config.nearest_node,
)
assert not synonyms.synonyms
def test_get_missing_synonym(fake_synonyms: Synonyms) -> None:
"""Test that the Synonyms object can get a missing synonym."""
synonym = fake_synonyms["company_synonym"]
assert synonym.synonym_id == "company_synonym"
assert_match_object(synonym.api_call, fake_synonyms.api_call)
assert_object_lists_match(
synonym.api_call.node_manager.nodes, fake_synonyms.api_call.node_manager.nodes
)
assert_match_object(
synonym.api_call.config.nearest_node,
fake_synonyms.api_call.config.nearest_node,
)
assert synonym.collection_name == "companies"
assert (
synonym._endpoint_path() # noqa: WPS437
== "/collections/companies/synonyms/company_synonym"
)
def test_get_existing_synonym(fake_synonyms: Synonyms) -> None:
"""Test that the Synonyms object can get an existing synonym."""
synonym = fake_synonyms["companies"]
fetched_synonym = fake_synonyms["companies"]
assert len(fake_synonyms.synonyms) == 1
assert synonym is fetched_synonym
def test_retrieve(fake_synonyms: Synonyms) -> None:
"""Test that the Synonyms object can retrieve synonyms."""
json_response: SynonymsRetrieveSchema = {
"synonyms": [
{
"id": "company_synonym",
"synonyms": ["companies", "corporations", "firms"],
},
],
}
with requests_mock.Mocker() as mock:
mock.get(
"http://nearest:8108/collections/companies/synonyms/",
json=json_response,
)
response = fake_synonyms.retrieve()
assert len(response) == 1
assert response["synonyms"][0] == {
"id": "company_synonym",
"synonyms": ["companies", "corporations", "firms"],
}
assert response == json_response
def test_create(fake_synonyms: Synonyms) -> None:
"""Test that the Synonyms object can create a synonym."""
json_response: SynonymSchema = {
"id": "company_synonym",
"synonyms": ["companies", "corporations", "firms"],
}
with requests_mock.Mocker() as mock:
mock.put(
"http://nearest:8108/collections/companies/synonyms/company_synonym",
json=json_response,
)
fake_synonyms.upsert(
"company_synonym",
{"synonyms": ["companies", "corporations", "firms"]},
)
assert mock.call_count == 1
assert mock.called is True
assert mock.last_request.method == "PUT"
assert (
mock.last_request.url
== "http://nearest:8108/collections/companies/synonyms/company_synonym"
)
assert mock.last_request.json() == {
"synonyms": ["companies", "corporations", "firms"],
}
def test_actual_create(
actual_synonyms: Synonyms,
delete_all: None,
create_collection: None,
) -> None:
"""Test that the Synonyms object can create an synonym on Typesense Server."""
response = actual_synonyms.upsert(
"company_synonym",
{"synonyms": ["companies", "corporations", "firms"]},
)
assert response == {
"id": "company_synonym",
"synonyms": ["companies", "corporations", "firms"],
}
def test_actual_update(
actual_synonyms: Synonyms,
delete_all: None,
create_collection: None,
) -> None:
"""Test that the Synonyms object can update an synonym on Typesense Server."""
create_response = actual_synonyms.upsert(
"company_synonym",
{"synonyms": ["companies", "corporations", "firms"]},
)
assert create_response == {
"id": "company_synonym",
"synonyms": ["companies", "corporations", "firms"],
}
update_response = actual_synonyms.upsert(
"company_synonym",
{"synonyms": ["companies", "corporations"]},
)
assert update_response == {
"id": "company_synonym",
"synonyms": ["companies", "corporations"],
}
def test_actual_retrieve(
delete_all: None,
create_synonym: None,
actual_collections: Collections,
) -> None:
"""Test that the Synonyms object can retrieve an synonym from Typesense Server."""
response = actual_collections["companies"].synonyms.retrieve()
assert len(response["synonyms"]) == 1
assert_to_contain_object(
response["synonyms"][0],
{
"id": "company_synonym",
"synonyms": ["companies", "corporations", "firms"],
},
)