-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest_model.py
230 lines (151 loc) · 5.96 KB
/
test_model.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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
from copy import deepcopy
from datetime import datetime
from uuid import uuid4
import pytest
from elasticsearch import Elasticsearch
from user import User
from pydastic import ESModel, NotFoundError
from pydastic.error import InvalidElasticsearchResponse
def test_model_definition_yields_error_without_meta_class():
with pytest.raises(NotImplementedError):
class User(ESModel):
pass
def test_model_definition_yields_error_without_index():
with pytest.raises(NotImplementedError):
class User(ESModel):
class Meta:
pass
def test_model_save_without_connection_raises_attribute_error():
with pytest.raises(AttributeError):
user = User(name="Liam")
user.save(wait_for=True)
def test_model_save(es: Elasticsearch):
user = User(name="John")
user.save(wait_for=True)
assert user.id != None
res = es.get(index=user.Meta.index, id=user.id)
assert res["found"]
# Check that fields match exactly
model = user.to_es()
assert res["_source"] == model
def test_model_save_with_index(es: Elasticsearch):
preset_id = "[email protected]"
user = User(id=preset_id, name="Sam")
user.save(wait_for=True)
res = es.get(index=user.Meta.index, id=preset_id)
assert res["found"]
model = user.to_es()
assert res["_source"] == model
def test_model_save_with_dynamic_index(es: Elasticsearch):
preset_id = "[email protected]"
user = User(id=preset_id, name="Sam")
user.save(index="custom-user", wait_for=True)
res = es.get(index="custom-user", id=preset_id)
assert res["found"]
model = user.to_es()
assert res["_source"] == model
def test_model_save_datetime_saved_as_isoformat(es: Elasticsearch):
date = datetime.now()
iso = date.isoformat()
user = User(name="Brandon", last_login=date)
user.save(wait_for=True)
res = es.get(index=user.Meta.index, id=user.id)
assert res["found"]
assert res["_source"]["last_login"] == iso
def test_model_save_to_update(es: Elasticsearch, user: User):
# Update user details
user_copy = deepcopy(user)
dummy_name = "xxxxx"
user.name = dummy_name
user.save(wait_for=True)
saved_user = User.get(id=user.id)
assert saved_user.name == user.name
# Change name back to compare with old object
saved_user.name = user_copy.name
assert saved_user == user_copy
def test_model_save_additional_fields(es: Elasticsearch):
extra_fields = {"name": "John", "location": "Seattle", "manager_ids": ["Pam", "Sam"]}
res = es.index(index=User.Meta.index, body=extra_fields)
user = User.get(res["_id"], extra_fields=True)
# Confirm that user has these extra fields
assert user.location == extra_fields["location"]
assert user.manager_ids == extra_fields["manager_ids"]
# Check that extra fields dict is exact subset
user_dict = user.dict()
assert dict(user_dict, **extra_fields) == user_dict
def test_model_ignores_additional_fields(es: Elasticsearch):
extra_fields = {"name": "John", "location": "Seattle", "manager_ids": ["Pam", "Sam"]}
res = es.index(index=User.Meta.index, body=extra_fields)
user = User.get(res["_id"])
with pytest.raises(AttributeError):
user.location
with pytest.raises(AttributeError):
user.manager_ids
def test_model_get_fields_unaffected(es: Elasticsearch, user: User):
"""Bug where fields get overwritten when model is fetched and ID is popped out"""
User.get(id=user.id)
assert "id" in User.__fields__
def test_model_from_es(es: Elasticsearch):
user = User(name="Alex")
user.save(wait_for=True)
res = es.get(index=user.Meta.index, id=user.id)
assert res["found"]
user_from_es = User.from_es(res)
assert user == user_from_es
def test_model_from_es_empty_data():
user = User.from_es({})
assert user is None
def test_model_from_es_invalid_format():
res = {"does not": "include _source", "or": "_id"}
with pytest.raises(InvalidElasticsearchResponse):
User.from_es(res)
def test_model_to_es(es: Elasticsearch):
user = User(name="Claude")
user.save(wait_for=True)
es_from_user = user.to_es()
res = es.get(index=user.Meta.index, id=user.id)
assert res["_source"] == es_from_user
def test_model_to_es_with_exclude(es: Elasticsearch):
user = User(name="Carla")
user.save(wait_for=True)
es_from_user = user.to_es(exclude={"last_login", "phone"})
# Check that id excluded and fields excluded
assert es_from_user == {"name": "Carla"}
def test_model_get(es: Elasticsearch):
user = User(name="Jean", phone="128")
user.save(wait_for=True)
get = User.get(id=user.id)
assert get == user
def test_model_get_with_dynamic_index(es: Elasticsearch):
user = User(name="Philip", phone="128")
user.save(index="custom", wait_for=True)
get = User.get(index="custom", id=user.id)
assert get == user
def test_model_get_nonexistent_raises_error(es: Elasticsearch):
with pytest.raises(NotFoundError):
User.get(id=uuid4())
def test_model_delete_raises_error(es: Elasticsearch):
user = User(name="James")
with pytest.raises(ValueError):
user.delete(wait_for=True)
with pytest.raises(NotFoundError):
user.id = "123456"
user.delete(wait_for=True)
def test_model_delete(es: Elasticsearch):
user = User(name="Marie")
user.save(wait_for=True)
user.delete(wait_for=True)
with pytest.raises(NotFoundError):
User.get(id=user.id)
def test_model_delete_with_dynamic_index(es: Elasticsearch):
user = User(name="Marie")
user.save(index="abc", wait_for=True)
user.delete(index="abc", wait_for=True)
with pytest.raises(NotFoundError):
User.get(id=user.id, index="abc")
def test_internal_meta_class_changes_limited_to_instance():
# Cannot modify Meta index to have a dynamic index name
user = User(name="a")
user.Meta.index = "dev-user"
assert User.Meta.index == "dev-user"
assert user.Meta.index == "dev-user"