forked from deepset-ai/haystack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_document.py
More file actions
341 lines (282 loc) · 10.2 KB
/
test_document.py
File metadata and controls
341 lines (282 loc) · 10.2 KB
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
# SPDX-FileCopyrightText: 2022-present deepset GmbH <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
import pytest
from haystack import Document
from haystack.dataclasses.byte_stream import ByteStream
from haystack.dataclasses.sparse_embedding import SparseEmbedding
@pytest.mark.parametrize(
"doc,doc_str",
[
(Document(content="test text"), "content: 'test text'"),
(Document(blob=ByteStream(b"hello, test string")), "blob: 18 bytes"),
(Document(content="test text", blob=ByteStream(b"hello, test string")), "content: 'test text', blob: 18 bytes"),
],
)
def test_document_str(doc, doc_str):
assert f"Document(id={doc.id}, {doc_str})" == str(doc)
def test_init():
doc = Document()
assert doc.id == "d4675c57fcfe114db0b95f1da46eea3c5d6f5729c17d01fb5251ae19830a3455"
assert doc.content == None
assert doc.blob == None
assert doc.meta == {}
assert doc.score == None
assert doc.embedding == None
assert doc.sparse_embedding == None
def test_init_with_wrong_parameters():
with pytest.raises(TypeError):
Document(text="")
def test_init_with_parameters():
blob_data = b"some bytes"
sparse_embedding = SparseEmbedding(indices=[0, 2, 4], values=[0.1, 0.2, 0.3])
doc = Document(
content="test text",
blob=ByteStream(data=blob_data, mime_type="text/markdown"),
meta={"text": "test text"},
score=0.812,
embedding=[0.1, 0.2, 0.3],
sparse_embedding=sparse_embedding,
)
assert doc.id == "1aa43af57c1dbc317241bf55d3067049f334d3b458d95dc72f71a7111f6c1a56"
assert doc.content == "test text"
assert doc.blob.data == blob_data
assert doc.blob.mime_type == "text/markdown"
assert doc.meta == {"text": "test text"}
assert doc.score == 0.812
assert doc.embedding == [0.1, 0.2, 0.3]
assert doc.sparse_embedding == sparse_embedding
def test_init_with_legacy_fields():
doc = Document(
content="test text",
content_type="text",
id_hash_keys=["content"],
dataframe="placeholder",
score=0.812,
embedding=[0.1, 0.2, 0.3], # type: ignore
)
assert doc.id == "18fc2c114825872321cf5009827ca162f54d3be50ab9e9ffa027824b6ec223af"
assert doc.content == "test text"
assert doc.blob == None
assert doc.meta == {}
assert doc.score == 0.812
assert doc.embedding == [0.1, 0.2, 0.3]
assert doc.sparse_embedding == None
assert doc.content_type == "text" # this is a property now
assert not hasattr(doc, "id_hash_keys")
assert not hasattr(doc, "dataframe")
def test_init_with_legacy_field():
doc = Document(
content="test text",
content_type="text", # type: ignore
id_hash_keys=["content"], # type: ignore
score=0.812,
embedding=[0.1, 0.2, 0.3],
meta={"date": "10-10-2023", "type": "article"},
)
assert doc.id == "a2c0321b34430cc675294611e55529fceb56140ca3202f1c59a43a8cecac1f43"
assert doc.content == "test text"
assert doc.meta == {"date": "10-10-2023", "type": "article"}
assert doc.score == 0.812
assert doc.embedding == [0.1, 0.2, 0.3]
assert doc.sparse_embedding == None
assert doc.content_type == "text" # this is a property now
assert not hasattr(doc, "id_hash_keys")
def test_basic_equality_type_mismatch():
doc = Document(content="test text")
assert doc != "test text"
def test_basic_equality_id():
doc1 = Document(content="test text")
doc2 = Document(content="test text")
assert doc1 == doc2
doc1.id = "1234"
doc2.id = "5678"
assert doc1 != doc2
def test_to_dict():
doc = Document()
assert doc.to_dict() == {
"id": doc._create_id(),
"content": None,
"blob": None,
"score": None,
"embedding": None,
"sparse_embedding": None,
}
def test_to_dict_without_flattening():
doc = Document()
assert doc.to_dict(flatten=False) == {
"id": doc._create_id(),
"content": None,
"blob": None,
"meta": {},
"score": None,
"embedding": None,
"sparse_embedding": None,
}
def test_to_dict_with_custom_parameters():
doc = Document(
content="test text",
blob=ByteStream(b"some bytes", mime_type="application/pdf"),
meta={"some": "values", "test": 10},
score=0.99,
embedding=[10.0, 10.0],
sparse_embedding=SparseEmbedding(indices=[0, 2, 4], values=[0.1, 0.2, 0.3]),
)
assert doc.to_dict() == {
"id": doc.id,
"content": "test text",
"blob": {"data": list(b"some bytes"), "mime_type": "application/pdf"},
"some": "values",
"test": 10,
"score": 0.99,
"embedding": [10.0, 10.0],
"sparse_embedding": {"indices": [0, 2, 4], "values": [0.1, 0.2, 0.3]},
}
def test_to_dict_with_custom_parameters_without_flattening():
doc = Document(
content="test text",
blob=ByteStream(b"some bytes", mime_type="application/pdf"),
meta={"some": "values", "test": 10},
score=0.99,
embedding=[10.0, 10.0],
sparse_embedding=SparseEmbedding(indices=[0, 2, 4], values=[0.1, 0.2, 0.3]),
)
assert doc.to_dict(flatten=False) == {
"id": doc.id,
"content": "test text",
"blob": {"data": list(b"some bytes"), "mime_type": "application/pdf"},
"meta": {"some": "values", "test": 10},
"score": 0.99,
"embedding": [10, 10],
"sparse_embedding": {"indices": [0, 2, 4], "values": [0.1, 0.2, 0.3]},
}
def test_to_dict_field_precedence():
"""
Test that Document's first-level fields take precedence over meta fields
when flattening the dictionary representation.
"""
doc = Document(content="from-content", score=0.9, meta={"content": "from-meta", "score": 0.5, "source": "web"})
flat_dict = doc.to_dict(flatten=True)
# First-level fields should take precedence
assert flat_dict["content"] == "from-content"
assert flat_dict["score"] == 0.9
# Meta-only fields should be preserved
assert flat_dict["source"] == "web"
def test_from_dict():
assert Document.from_dict({}) == Document()
def from_from_dict_with_parameters():
blob_data = b"some bytes"
assert Document.from_dict(
{
"content": "test text",
"blob": {"data": list(blob_data), "mime_type": "text/markdown"},
"meta": {"text": "test text"},
"score": 0.812,
"embedding": [0.1, 0.2, 0.3],
"sparse_embedding": {"indices": [0, 2, 4], "values": [0.1, 0.2, 0.3]},
}
) == Document(
content="test text",
blob=ByteStream(blob_data, mime_type="text/markdown"),
meta={"text": "test text"},
score=0.812,
embedding=[0.1, 0.2, 0.3],
sparse_embedding=SparseEmbedding(indices=[0, 2, 4], values=[0.1, 0.2, 0.3]),
)
def test_from_dict_with_legacy_fields():
assert Document.from_dict(
{
"content": "test text",
"content_type": "text",
"id_hash_keys": ["content"],
"score": 0.812,
"embedding": [0.1, 0.2, 0.3],
}
) == Document(
content="test text",
content_type="text",
id_hash_keys=["content"],
score=0.812,
embedding=[0.1, 0.2, 0.3], # type: ignore
)
def test_from_dict_with_legacy_field_and_flat_meta():
assert Document.from_dict(
{
"content": "test text",
"content_type": "text",
"id_hash_keys": ["content"],
"score": 0.812,
"embedding": [0.1, 0.2, 0.3],
"date": "10-10-2023",
"type": "article",
}
) == Document(
content="test text",
content_type="text", # type: ignore
id_hash_keys=["content"], # type: ignore
score=0.812,
embedding=[0.1, 0.2, 0.3],
meta={"date": "10-10-2023", "type": "article"},
)
def test_from_dict_with_flat_meta():
blob_data = b"some bytes"
assert Document.from_dict(
{
"content": "test text",
"blob": {"data": list(blob_data), "mime_type": "text/markdown"},
"score": 0.812,
"embedding": [0.1, 0.2, 0.3],
"sparse_embedding": {"indices": [0, 2, 4], "values": [0.1, 0.2, 0.3]},
"date": "10-10-2023",
"type": "article",
}
) == Document(
content="test text",
blob=ByteStream(blob_data, mime_type="text/markdown"),
score=0.812,
embedding=[0.1, 0.2, 0.3],
sparse_embedding=SparseEmbedding(indices=[0, 2, 4], values=[0.1, 0.2, 0.3]),
meta={"date": "10-10-2023", "type": "article"},
)
def test_from_dict_with_flat_and_non_flat_meta():
with pytest.raises(ValueError, match="Pass either the 'meta' parameter or flattened metadata keys"):
Document.from_dict(
{
"content": "test text",
"blob": {"data": list(b"some bytes"), "mime_type": "text/markdown"},
"score": 0.812,
"meta": {"test": 10},
"embedding": [0.1, 0.2, 0.3],
"date": "10-10-2023",
"type": "article",
}
)
def test_from_dict_with_dataframe():
"""
Test that Document.from_dict() can properly deserialize a Document dictionary obtained with
document.to_dict(flatten=False) in haystack-ai<=2.10.0.
We make sure that Document.from_dict() does not raise an error and that dataframe is skipped (legacy field).
"""
# Document dictionary obtained with document.to_dict(flatten=False) in haystack-ai<=2.10.0
doc_dict = {
"id": "my_id",
"content": "my_content",
"dataframe": None,
"blob": None,
"meta": {"key": "value"},
"score": None,
"embedding": None,
"sparse_embedding": None,
}
doc = Document.from_dict(doc_dict)
assert doc.id == "my_id"
assert doc.content == "my_content"
assert doc.meta == {"key": "value"}
assert doc.score is None
assert doc.embedding is None
assert doc.sparse_embedding is None
assert not hasattr(doc, "dataframe")
def test_content_type():
assert Document(content="text").content_type == "text"
with pytest.raises(ValueError):
_ = Document().content_type