-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_tidesdb.py
More file actions
389 lines (308 loc) · 11.6 KB
/
test_tidesdb.py
File metadata and controls
389 lines (308 loc) · 11.6 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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
"""
Tests for TidesDB Python bindings.
These tests require the TidesDB shared library to be installed.
"""
import os
import shutil
import tempfile
import time
import pytest
import tidesdb
@pytest.fixture
def temp_db_path():
"""Create a temporary directory for test database."""
path = tempfile.mkdtemp(prefix="tidesdb_test_")
yield path
shutil.rmtree(path, ignore_errors=True)
@pytest.fixture
def db(temp_db_path):
"""Create a test database."""
database = tidesdb.TidesDB.open(temp_db_path)
yield database
database.close()
@pytest.fixture
def cf(db):
"""Create a test column family."""
db.create_column_family("test_cf")
cf = db.get_column_family("test_cf")
yield cf
try:
db.drop_column_family("test_cf")
except tidesdb.TidesDBError:
pass
class TestOpenClose:
"""Tests for database open/close operations."""
def test_open_close(self, temp_db_path):
"""Test basic open and close."""
db = tidesdb.TidesDB.open(temp_db_path)
assert db is not None
db.close()
def test_open_with_config(self, temp_db_path):
"""Test open with custom configuration."""
config = tidesdb.Config(
db_path=temp_db_path,
num_flush_threads=4,
num_compaction_threads=4,
log_level=tidesdb.LogLevel.LOG_WARN,
block_cache_size=32 * 1024 * 1024,
max_open_sstables=128,
)
db = tidesdb.TidesDB(config)
assert db is not None
db.close()
def test_context_manager(self, temp_db_path):
"""Test database as context manager."""
with tidesdb.TidesDB.open(temp_db_path) as db:
assert db is not None
class TestColumnFamilies:
"""Tests for column family operations."""
def test_create_drop_column_family(self, db):
"""Test creating and dropping a column family."""
db.create_column_family("test_cf")
cf = db.get_column_family("test_cf")
assert cf is not None
assert cf.name == "test_cf"
db.drop_column_family("test_cf")
def test_create_with_config(self, db):
"""Test creating column family with custom config."""
config = tidesdb.default_column_family_config()
config.write_buffer_size = 32 * 1024 * 1024
config.compression_algorithm = tidesdb.CompressionAlgorithm.LZ4_COMPRESSION
config.enable_bloom_filter = True
config.bloom_fpr = 0.01
db.create_column_family("custom_cf", config)
cf = db.get_column_family("custom_cf")
assert cf is not None
stats = cf.get_stats()
assert stats.config is not None
assert stats.config.enable_bloom_filter is True
db.drop_column_family("custom_cf")
def test_create_with_btree_config(self, db):
"""Test creating column family with B+tree format enabled."""
config = tidesdb.default_column_family_config()
config.use_btree = True
db.create_column_family("btree_cf", config)
cf = db.get_column_family("btree_cf")
assert cf is not None
stats = cf.get_stats()
assert stats.config is not None
assert stats.config.use_btree is True
assert stats.use_btree is True
db.drop_column_family("btree_cf")
def test_default_config_use_btree(self, db):
"""Test that default config has use_btree=False."""
config = tidesdb.default_column_family_config()
assert config.use_btree is False
def test_list_column_families(self, db):
"""Test listing column families."""
db.create_column_family("cf1")
db.create_column_family("cf2")
names = db.list_column_families()
assert "cf1" in names
assert "cf2" in names
db.drop_column_family("cf1")
db.drop_column_family("cf2")
def test_get_nonexistent_column_family(self, db):
"""Test getting a non-existent column family."""
with pytest.raises(tidesdb.TidesDBError):
db.get_column_family("nonexistent")
class TestTransactions:
"""Tests for transaction operations."""
def test_put_get(self, db, cf):
"""Test basic put and get."""
with db.begin_txn() as txn:
txn.put(cf, b"key1", b"value1")
txn.commit()
with db.begin_txn() as txn:
value = txn.get(cf, b"key1")
assert value == b"value1"
def test_delete(self, db, cf):
"""Test delete operation."""
with db.begin_txn() as txn:
txn.put(cf, b"key1", b"value1")
txn.commit()
with db.begin_txn() as txn:
txn.delete(cf, b"key1")
txn.commit()
with db.begin_txn() as txn:
with pytest.raises(tidesdb.TidesDBError):
txn.get(cf, b"key1")
def test_rollback(self, db, cf):
"""Test transaction rollback."""
with db.begin_txn() as txn:
txn.put(cf, b"key1", b"value1")
txn.rollback()
with db.begin_txn() as txn:
with pytest.raises(tidesdb.TidesDBError):
txn.get(cf, b"key1")
def test_multiple_operations(self, db, cf):
"""Test multiple operations in one transaction."""
with db.begin_txn() as txn:
txn.put(cf, b"key1", b"value1")
txn.put(cf, b"key2", b"value2")
txn.put(cf, b"key3", b"value3")
txn.delete(cf, b"key2")
txn.commit()
with db.begin_txn() as txn:
assert txn.get(cf, b"key1") == b"value1"
assert txn.get(cf, b"key3") == b"value3"
with pytest.raises(tidesdb.TidesDBError):
txn.get(cf, b"key2")
def test_isolation_level(self, db, cf):
"""Test transaction with specific isolation level."""
txn = db.begin_txn_with_isolation(tidesdb.IsolationLevel.SERIALIZABLE)
txn.put(cf, b"key1", b"value1")
txn.commit()
txn.close()
class TestSavepoints:
"""Tests for savepoint operations."""
def test_savepoint_rollback(self, db, cf):
"""Test savepoint and rollback to savepoint."""
with db.begin_txn() as txn:
txn.put(cf, b"key1", b"value1")
txn.savepoint("sp1")
txn.put(cf, b"key2", b"value2")
txn.rollback_to_savepoint("sp1")
txn.commit()
with db.begin_txn() as txn:
assert txn.get(cf, b"key1") == b"value1"
with pytest.raises(tidesdb.TidesDBError):
txn.get(cf, b"key2")
def test_release_savepoint(self, db, cf):
"""Test releasing a savepoint."""
with db.begin_txn() as txn:
txn.put(cf, b"key1", b"value1")
txn.savepoint("sp1")
txn.put(cf, b"key2", b"value2")
txn.release_savepoint("sp1")
txn.commit()
with db.begin_txn() as txn:
assert txn.get(cf, b"key1") == b"value1"
assert txn.get(cf, b"key2") == b"value2"
class TestIterators:
"""Tests for iterator operations."""
def test_forward_iteration(self, db, cf):
"""Test forward iteration."""
with db.begin_txn() as txn:
txn.put(cf, b"a", b"1")
txn.put(cf, b"b", b"2")
txn.put(cf, b"c", b"3")
txn.commit()
with db.begin_txn() as txn:
with txn.new_iterator(cf) as it:
it.seek_to_first()
items = list(it)
assert len(items) == 3
assert items[0] == (b"a", b"1")
assert items[1] == (b"b", b"2")
assert items[2] == (b"c", b"3")
def test_backward_iteration(self, db, cf):
"""Test backward iteration."""
with db.begin_txn() as txn:
txn.put(cf, b"a", b"1")
txn.put(cf, b"b", b"2")
txn.put(cf, b"c", b"3")
txn.commit()
with db.begin_txn() as txn:
with txn.new_iterator(cf) as it:
it.seek_to_last()
items = []
while it.valid():
items.append((it.key(), it.value()))
it.prev()
assert len(items) == 3
assert items[0] == (b"c", b"3")
assert items[1] == (b"b", b"2")
assert items[2] == (b"a", b"1")
def test_seek(self, db, cf):
"""Test seek operations."""
with db.begin_txn() as txn:
txn.put(cf, b"a", b"1")
txn.put(cf, b"c", b"3")
txn.put(cf, b"e", b"5")
txn.commit()
with db.begin_txn() as txn:
with txn.new_iterator(cf) as it:
it.seek(b"b")
assert it.valid()
assert it.key() == b"c"
it.seek_for_prev(b"d")
assert it.valid()
assert it.key() == b"c"
class TestTTL:
"""Tests for TTL functionality."""
def test_ttl_expiration(self, db, cf):
"""Test that keys with expired TTL are eventually not returned."""
expired_ttl = int(time.time()) - 1
with db.begin_txn() as txn:
txn.put(cf, b"expired_key", b"value", ttl=expired_ttl)
txn.commit()
cf.flush_memtable()
time.sleep(0.5)
with db.begin_txn() as txn:
try:
txn.get(cf, b"expired_key")
except tidesdb.TidesDBError:
pass
def test_no_ttl(self, db, cf):
"""Test that keys without TTL persist."""
with db.begin_txn() as txn:
txn.put(cf, b"permanent_key", b"value", ttl=-1)
txn.commit()
with db.begin_txn() as txn:
value = txn.get(cf, b"permanent_key")
assert value == b"value"
class TestStats:
"""Tests for statistics operations."""
def test_column_family_stats(self, db, cf):
"""Test getting column family statistics."""
with db.begin_txn() as txn:
txn.put(cf, b"key1", b"value1")
txn.commit()
stats = cf.get_stats()
assert stats.num_levels >= 0
assert stats.memtable_size >= 0
def test_column_family_stats_btree_fields(self, db, cf):
"""Test that B+tree stats fields are present."""
with db.begin_txn() as txn:
txn.put(cf, b"key1", b"value1")
txn.commit()
stats = cf.get_stats()
# B+tree stats should be present (even if 0 for non-btree CF)
assert isinstance(stats.use_btree, bool)
assert isinstance(stats.btree_total_nodes, int)
assert isinstance(stats.btree_max_height, int)
assert isinstance(stats.btree_avg_height, float)
assert stats.btree_total_nodes >= 0
assert stats.btree_max_height >= 0
assert stats.btree_avg_height >= 0.0
def test_cache_stats(self, db):
"""Test getting cache statistics."""
stats = db.get_cache_stats()
assert isinstance(stats.enabled, bool)
assert stats.hits >= 0
assert stats.misses >= 0
class TestMaintenance:
"""Tests for maintenance operations."""
def test_flush_memtable(self, db, cf):
"""Test manual memtable flush."""
with db.begin_txn() as txn:
txn.put(cf, b"key1", b"value1")
txn.commit()
cf.flush_memtable()
time.sleep(0.5)
def test_compact(self, db, cf):
"""Test manual compaction."""
with db.begin_txn() as txn:
for i in range(100):
txn.put(cf, f"key{i}".encode(), f"value{i}".encode())
txn.commit()
cf.flush_memtable()
time.sleep(0.5)
try:
cf.compact()
except tidesdb.TidesDBError:
pass
time.sleep(0.5)
if __name__ == "__main__":
pytest.main([__file__, "-v"])