forked from whoosh-community/whoosh
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_writing.py
289 lines (236 loc) · 10.2 KB
/
test_writing.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
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
from __future__ import with_statement
import random, time, threading
from nose.tools import assert_equal, assert_raises
from whoosh import analysis, fields, query, writing
from whoosh.compat import u, b, xrange, text_type, PY3
from whoosh.filedb.filestore import RamStorage
from whoosh.filedb.filetables import TermIndexReader
from whoosh.support.testing import TempIndex, TempStorage
def test_no_stored():
schema = fields.Schema(id=fields.ID, text=fields.TEXT)
with TempIndex(schema, "nostored") as ix:
domain = (u("alfa"), u("bravo"), u("charlie"), u("delta"), u("echo"), u("foxtrot"),
u("golf"), u("hotel"), u("india"))
w = ix.writer()
for i in xrange(20):
w.add_document(id=text_type(i), text=u(" ").join(random.sample(domain, 5)))
w.commit()
with ix.reader() as r:
assert_equal(sorted([int(id) for id in r.lexicon("id")]), list(range(20)))
def test_asyncwriter():
schema = fields.Schema(id=fields.ID(stored=True), text=fields.TEXT)
with TempIndex(schema, "asyncwriter") as ix:
domain = (u("alfa"), u("bravo"), u("charlie"), u("delta"), u("echo"), u("foxtrot"),
u("golf"), u("hotel"), u("india"))
writers = []
# Simulate doing 20 (near-)simultaneous commits. If we weren't using
# AsyncWriter, at least some of these would fail because the first
# writer wouldn't be finished yet.
for i in xrange(20):
w = writing.AsyncWriter(ix)
writers.append(w)
w.add_document(id=text_type(i), text=u(" ").join(random.sample(domain, 5)))
w.commit()
# Wait for all writers to finish before checking the results
for w in writers:
if w.running:
w.join()
# Check whether all documents made it into the index.
with ix.reader() as r:
assert_equal(sorted([int(id) for id in r.lexicon("id")]), list(range(20)))
def test_asyncwriter_no_stored():
schema = fields.Schema(id=fields.ID, text=fields.TEXT)
with TempIndex(schema, "asyncnostored") as ix:
domain = (u("alfa"), u("bravo"), u("charlie"), u("delta"), u("echo"), u("foxtrot"),
u("golf"), u("hotel"), u("india"))
writers = []
# Simulate doing 20 (near-)simultaneous commits. If we weren't using
# AsyncWriter, at least some of these would fail because the first
# writer wouldn't be finished yet.
for i in xrange(20):
w = writing.AsyncWriter(ix)
writers.append(w)
w.add_document(id=text_type(i), text=u(" ").join(random.sample(domain, 5)))
w.commit()
# Wait for all writers to finish before checking the results
for w in writers:
if w.running:
w.join()
# Check whether all documents made it into the index.
with ix.reader() as r:
assert_equal(sorted([int(id) for id in r.lexicon("id")]), list(range(20)))
def test_buffered():
schema = fields.Schema(id=fields.ID, text=fields.TEXT)
with TempIndex(schema, "buffered") as ix:
domain = (u("alfa"), u("bravo"), u("charlie"), u("delta"), u("echo"), u("foxtrot"),
u("golf"), u("hotel"), u("india"))
w = writing.BufferedWriter(ix, period=None, limit=10,
commitargs={"merge": False})
for i in xrange(100):
w.add_document(id=text_type(i), text=u(" ").join(random.sample(domain, 5)))
time.sleep(0.5)
w.close()
assert_equal(len(ix._segments()), 10)
def test_buffered_search():
schema = fields.Schema(id=fields.STORED, text=fields.TEXT)
with TempIndex(schema, "bufferedsearch") as ix:
w = writing.BufferedWriter(ix, period=None, limit=5)
w.add_document(id=1, text=u("alfa bravo charlie"))
w.add_document(id=2, text=u("bravo tango delta"))
w.add_document(id=3, text=u("tango delta echo"))
w.add_document(id=4, text=u("charlie delta echo"))
with w.searcher() as s:
r = s.search(query.Term("text", u("tango")))
assert_equal(sorted([d["id"] for d in r]), [2, 3])
w.add_document(id=5, text=u("foxtrot golf hotel"))
w.add_document(id=6, text=u("india tango juliet"))
w.add_document(id=7, text=u("tango kilo lima"))
w.add_document(id=8, text=u("mike november echo"))
with w.searcher() as s:
r = s.search(query.Term("text", u("tango")))
assert_equal(sorted([d["id"] for d in r]), [2, 3, 6, 7])
w.close()
def test_buffered_update():
schema = fields.Schema(id=fields.ID(stored=True, unique=True),
payload=fields.STORED)
with TempIndex(schema, "bufferedupdate") as ix:
w = writing.BufferedWriter(ix, period=None, limit=5)
for i in xrange(10):
for char in u("abc"):
fs = dict(id=char, payload=text_type(i) + char)
w.update_document(**fs)
with w.reader() as r:
assert_equal(sorted(r.all_stored_fields(), key=lambda x: x["id"]),
[{'id': u('a'), 'payload': u('9a')},
{'id': u('b'), 'payload': u('9b')},
{'id': u('c'), 'payload': u('9c')}])
assert_equal(r.doc_count(), 3)
w.close()
def test_buffered_threads():
class SimWriter(threading.Thread):
def __init__(self, w, domain):
threading.Thread.__init__(self)
self.w = w
self.domain = domain
def run(self):
w = self.w
domain = self.domain
for _ in xrange(10):
w.update_document(name=random.choice(domain))
time.sleep(random.uniform(0.01, 0.1))
schema = fields.Schema(name=fields.ID(unique=True, stored=True))
with TempIndex(schema, "buffthreads") as ix:
domain = u("alfa bravo charlie delta").split()
w = writing.BufferedWriter(ix, limit=10)
threads = [SimWriter(w, domain) for _ in xrange(10)]
for thread in threads:
thread.start()
for thread in threads:
thread.join()
w.close()
with ix.reader() as r:
assert_equal(r.doc_count(), 4)
assert_equal(sorted([d["name"] for d in r.all_stored_fields()]),
domain)
def test_fractional_weights():
ana = analysis.RegexTokenizer(r"\S+") | analysis.DelimitedAttributeFilter()
# With Positions format
schema = fields.Schema(f=fields.TEXT(analyzer=ana))
ix = RamStorage().create_index(schema)
w = ix.writer()
w.add_document(f=u("alfa^0.5 bravo^1.5 charlie^2.0 delta^1.5"))
w.commit()
with ix.searcher() as s:
wts = []
for word in s.lexicon("f"):
p = s.postings("f", word)
wts.append(p.weight())
assert_equal(wts, [0.5, 1.5, 2.0, 1.5])
# Try again with Frequency format
schema = fields.Schema(f=fields.TEXT(analyzer=ana, phrase=False))
ix = RamStorage().create_index(schema)
w = ix.writer()
w.add_document(f=u("alfa^0.5 bravo^1.5 charlie^2.0 delta^1.5"))
w.commit()
with ix.searcher() as s:
wts = []
for word in s.lexicon("f"):
p = s.postings("f", word)
wts.append(p.weight())
assert_equal(wts, [0.5, 1.5, 2.0, 1.5])
def test_cancel_delete():
schema = fields.Schema(id=fields.ID(stored=True))
# Single segment
with TempIndex(schema, "canceldelete1") as ix:
w = ix.writer()
for char in u("ABCD"):
w.add_document(id=char)
w.commit()
with ix.reader() as r:
assert not r.has_deletions()
w = ix.writer()
w.delete_document(2)
w.delete_document(3)
w.cancel()
with ix.reader() as r:
assert not r.has_deletions()
assert not r.is_deleted(2)
assert not r.is_deleted(3)
# Multiple segments
with TempIndex(schema, "canceldelete2") as ix:
for char in u("ABCD"):
w = ix.writer()
w.add_document(id=char)
w.commit(merge=False)
with ix.reader() as r:
assert not r.has_deletions()
w = ix.writer()
w.delete_document(2)
w.delete_document(3)
w.cancel()
with ix.reader() as r:
assert not r.has_deletions()
assert not r.is_deleted(2)
assert not r.is_deleted(3)
def test_delete_nonexistant():
from whoosh.writing import IndexingError
schema = fields.Schema(id=fields.ID(stored=True))
# Single segment
with TempIndex(schema, "deletenon1") as ix:
w = ix.writer()
for char in u("ABC"):
w.add_document(id=char)
w.commit()
try:
w = ix.writer()
assert_raises(IndexingError, w.delete_document, 5)
finally:
w.cancel()
# Multiple segments
with TempIndex(schema, "deletenon1") as ix:
for char in u("ABC"):
w = ix.writer()
w.add_document(id=char)
w.commit(merge=False)
try:
w = ix.writer()
assert_raises(IndexingError, w.delete_document, 5)
finally:
w.cancel()
def test_read_inline():
schema = fields.Schema(a=fields.TEXT)
assert schema["a"].scorable
with TempIndex(schema, "readinline") as ix:
w = ix.writer()
w.add_document(a=u("alfa"))
w.add_document(a=u("bravo"))
w.add_document(a=u("charlie"))
w.commit()
tr = TermIndexReader(ix.storage.open_file("_readinline_1.trm"))
for i, (term, terminfo) in enumerate(tr.items()):
assert_equal(terminfo.postings[0], (i,))
assert_equal(terminfo.postings[1], (1.0,))
tr.close()
with ix.reader() as r:
pr = r.postings("a", "bravo")
assert_equal(pr.id(), 1)