-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathstopwords_test.py
167 lines (132 loc) · 4.91 KB
/
stopwords_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
"""Tests for the Stopwords 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.stopwords import Stopwords
from typesense.types.stopword import StopwordSchema, StopwordsRetrieveSchema
def test_init(fake_api_call: ApiCall) -> None:
"""Test that the Stopwords object is initialized correctly."""
stopwords = Stopwords(fake_api_call)
assert_match_object(stopwords.api_call, fake_api_call)
assert_object_lists_match(
stopwords.api_call.node_manager.nodes,
fake_api_call.node_manager.nodes,
)
assert_match_object(
stopwords.api_call.config.nearest_node,
fake_api_call.config.nearest_node,
)
assert not stopwords.stopwords_sets
def test_get_missing_stopword(fake_stopwords: Stopwords) -> None:
"""Test that the Stopwords object can get a missing stopword."""
stopword = fake_stopwords["company_stopwords"]
assert stopword.stopwords_set_id == "company_stopwords"
assert_match_object(stopword.api_call, fake_stopwords.api_call)
assert_object_lists_match(
stopword.api_call.node_manager.nodes, fake_stopwords.api_call.node_manager.nodes
)
assert_match_object(
stopword.api_call.config.nearest_node,
fake_stopwords.api_call.config.nearest_node,
)
assert stopword._endpoint_path == "/stopwords/company_stopwords" # noqa: WPS437
def test_get_existing_stopword(fake_stopwords: Stopwords) -> None:
"""Test that the Stopwords object can get an existing stopword."""
stopword = fake_stopwords["company_stopwords"]
fetched_stopword = fake_stopwords["company_stopwords"]
assert len(fake_stopwords.stopwords_sets) == 1
assert stopword is fetched_stopword
def test_retrieve(fake_stopwords: Stopwords) -> None:
"""Test that the Stopwords object can retrieve stopwords."""
json_response: StopwordsRetrieveSchema = {
"stopwords": [
{
"id": "company_stopwords",
"locale": "",
"stopwords": ["and", "is", "the"],
},
],
}
with requests_mock.Mocker() as mock:
mock.get(
"http://nearest:8108/stopwords",
json=json_response,
)
response = fake_stopwords.retrieve()
assert len(response) == 1
assert response["stopwords"][0] == json_response["stopwords"][0]
assert response == json_response
def test_create(fake_stopwords: Stopwords) -> None:
"""Test that the Stopwords object can create a stopword."""
json_response: StopwordSchema = {
"id": "company_stopwords",
"locale": "",
"stopwords": ["and", "is", "the"],
}
with requests_mock.Mocker() as mock:
mock.put(
"http://nearest:8108/stopwords/company_stopwords",
json=json_response,
)
fake_stopwords.upsert(
"company_stopwords",
{"stopwords": ["and", "is", "the"]},
)
assert mock.call_count == 1
assert mock.called is True
assert mock.last_request.method == "PUT"
assert (
mock.last_request.url == "http://nearest:8108/stopwords/company_stopwords"
)
assert mock.last_request.json() == {"stopwords": ["and", "is", "the"]}
def test_actual_create(actual_stopwords: Stopwords, delete_all_stopwords: None) -> None:
"""Test that the Stopwords object can create an stopword on Typesense Server."""
response = actual_stopwords.upsert(
"company_stopwords",
{"stopwords": ["and", "is", "the"]},
)
assert response == {
"id": "company_stopwords",
"stopwords": ["and", "is", "the"],
}
def test_actual_update(
actual_stopwords: Stopwords,
delete_all_stopwords: None,
) -> None:
"""Test that the Stopwords object can update an stopword on Typesense Server."""
create_response = actual_stopwords.upsert(
"company_stopwords",
{"stopwords": ["and", "is", "the"]},
)
assert create_response == {
"id": "company_stopwords",
"stopwords": ["and", "is", "the"],
}
update_response = actual_stopwords.upsert(
"company_stopwords",
{"stopwords": ["and", "is", "other"]},
)
assert update_response == {
"id": "company_stopwords",
"stopwords": ["and", "is", "other"],
}
def test_actual_retrieve(
delete_all_stopwords: None,
create_stopword: None,
actual_stopwords: Stopwords,
) -> None:
"""Test that the Stopwords object can retrieve an stopword from Typesense Server."""
response = actual_stopwords.retrieve()
assert len(response["stopwords"]) == 1
assert_to_contain_object(
response["stopwords"][0],
{
"id": "company_stopwords",
"stopwords": ["and", "is", "the"],
},
)