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
390
391
392
393
394
395
396
397
398
|
#[macro_use]
extern crate log;
extern crate ctor;
extern crate tempfile;
use ctor::ctor;
use env_logger;
use log_db::*;
use serial_test::serial;
use std::fs::{self};
use std::path::Path;
use std::thread;
use std::time::Duration;
use tempfile::tempdir;
pub fn tmp_dir() -> String {
let dir = tempdir()
.expect("Failed to create temporary directory")
.path()
.to_str()
.expect("Failed to convert temporary directory path to string")
.to_string();
fs::create_dir_all(&dir).expect("Failed to create temporary directory");
dir
}
#[ctor]
fn init_logger() {
let _ = env_logger::builder().is_test(true).try_init();
}
#[derive(Eq, PartialEq, Clone, Debug)]
enum Field {
Id,
Name,
Data,
}
#[test]
fn test_initialize_only() {
let data_dir = tmp_dir();
let _db = DB::configure()
.data_dir(&data_dir)
.fields(&[
(Field::Id, ValueType::int()),
(Field::Name, ValueType::string()),
(Field::Data, ValueType::bytes()),
])
.primary_key(Field::Id)
.initialize()
.expect("Failed to initialize DB instance");
}
#[test]
fn test_upsert_and_get_with_primary_memtable() {
let data_dir = tmp_dir();
let mut db = DB::configure()
.data_dir(&data_dir)
.fields(&[
(Field::Id, ValueType::int()),
(Field::Name, ValueType::string()),
(Field::Data, ValueType::bytes()),
])
.primary_key(Field::Id)
.initialize()
.expect("Failed to initialize DB instance");
let record = Record::from(&[
Value::Int(1),
Value::String("Alice".to_string()),
Value::Bytes(vec![0, 1, 2]),
]);
db.upsert(&record).unwrap();
let result = db.get(&Value::Int(1)).unwrap().unwrap();
// Check that the IDs match
assert!(match (result.at(0), record.at(0)) {
(Value::Int(a), Value::Int(b)) => a == b,
_ => false,
});
}
#[test]
fn test_upsert_and_get() {
let data_dir = tmp_dir();
let mut db = DB::configure()
.data_dir(&data_dir)
.fields(&[
(Field::Id, ValueType::int()),
(Field::Name, ValueType::string().nullable()),
(Field::Data, ValueType::bytes()),
])
.primary_key(Field::Id)
.initialize()
.expect("Failed to initialize DB instance");
// Insert some records
let record0 = Record::from(&[Value::Int(0), Value::Null, Value::Bytes(vec![3, 4, 5])]);
db.upsert(&record0).unwrap();
let record1 = Record::from(&[
Value::Int(1),
Value::String("Alice".to_string()),
Value::Bytes(vec![0, 1, 2]),
]);
db.upsert(&record1).unwrap();
let record2 = Record::from(&[
Value::Int(1),
Value::String("Bob".to_string()),
Value::Bytes(vec![0, 1, 2]),
]);
db.upsert(&record2).unwrap();
let record3 = Record::from(&[
Value::Int(2),
Value::String("George".to_string()),
Value::Bytes(vec![]),
]);
db.upsert(&record3).unwrap();
// Get with ID = 0
let result = db.get(&Value::Int(0)).unwrap().unwrap();
// Should match record0
assert!(match (result.at(0), record0.at(0)) {
(Value::Int(a), Value::Int(b)) => a == b,
_ => false,
});
assert!(match (result.at(1), record0.at(1)) {
(Value::Null, Value::Null) => true,
_ => false,
});
// Get with ID = 1
let result = db.get(&Value::Int(1)).unwrap().unwrap();
// Should match record2
assert!(match (result.at(0), record2.at(0)) {
(Value::Int(a), Value::Int(b)) => a == b,
_ => false,
});
assert!(match (result.at(1), record2.at(1)) {
(Value::String(a), Value::String(b)) => a == b,
_ => false,
});
}
#[test]
fn test_upsert_fails_on_null_in_non_nullable_field() {
let data_dir = tmp_dir();
let mut db = DB::configure()
.data_dir(&data_dir)
.fields(&[(Field::Id, ValueType::int())])
.primary_key(Field::Id)
.initialize()
.expect("Failed to initialize DB instance");
// Null value
let record = Record::from(&[Value::Null]);
assert!(db.upsert(&record).is_err());
}
#[test]
fn test_upsert_fails_on_invalid_number_of_values() {
let data_dir = tmp_dir();
let mut db = DB::configure()
.data_dir(&data_dir)
.fields(&[
(Field::Id, ValueType::int()),
(Field::Name, ValueType::string()),
(Field::Data, ValueType::bytes()),
])
.primary_key(Field::Id)
.initialize()
.expect("Failed to initialize DB instance");
// Missing primary key
let record = Record::from(&[
Value::String("Alice".to_string()),
Value::Bytes(vec![0, 1, 2]),
]);
assert!(db.upsert(&record).is_err());
}
#[test]
fn test_upsert_fails_on_invalid_value_type() {
let data_dir = tmp_dir();
let mut db = DB::configure()
.data_dir(&data_dir)
.fields(&[
(Field::Id, ValueType::int()),
(Field::Name, ValueType::string()),
(Field::Data, ValueType::bytes()),
])
.primary_key(Field::Id)
.initialize()
.expect("Failed to initialize DB instance");
let record = Record::from(&[
Value::String("foo".to_string()),
Value::String("bar".to_string()),
Value::String("baz".to_string()),
]);
assert!(db.upsert(&record).is_err());
}
#[test]
fn test_upsert_and_find_all() {
let data_dir = tmp_dir();
let mut db = DB::configure()
.data_dir(&data_dir)
.fields(&[
(Field::Id, ValueType::int()),
(Field::Name, ValueType::string()),
(Field::Data, ValueType::bytes()),
])
.primary_key(Field::Id)
.secondary_keys(&[Field::Name])
.initialize()
.expect("Failed to initialize DB instance");
// Insert some records
let record0 = Record::from(&[
Value::Int(0),
Value::String("John".to_string()),
Value::Bytes(vec![3, 4, 5]),
]);
db.upsert(&record0).unwrap();
let record1 = Record::from(&[
Value::Int(1),
Value::String("John".to_string()),
Value::Bytes(vec![1, 2, 3]),
]);
db.upsert(&record1).unwrap();
let record2 = Record::from(&[
Value::Int(2),
Value::String("George".to_string()),
Value::Bytes(vec![1, 2, 3]),
]);
db.upsert(&record2).unwrap();
// There should be 2 Johns
let johns = db
.find_all(&Field::Name, &Value::String("John".to_string()))
.expect("Failed to find all Johns");
assert_eq!(johns.len(), 2);
}
#[test]
#[serial]
fn test_multiple_writing_threads() {
let data_dir = tmp_dir();
debug!("Data dir: {:?}", data_dir);
let mut threads = vec![];
let threads_n = 100;
for i in 0..threads_n {
let data_dir = data_dir.clone();
threads.push(thread::spawn(move || {
let mut db = DB::configure()
.data_dir(&data_dir)
.fields(&[(Field::Id, ValueType::int())])
.primary_key(Field::Id)
.initialize()
.expect("Failed to initialize DB instance");
let record = Record::from(&[Value::Int(i)]);
db.upsert(&record).expect("Failed to upsert record");
}));
}
for thread in threads {
thread.join().expect("Failed to join thread");
}
// Read the records
let mut db = DB::configure()
.data_dir(&data_dir)
.fields(&[(Field::Id, ValueType::int())])
.primary_key(Field::Id)
.initialize()
.expect("Failed to initialize DB instance");
for i in 0..threads_n {
let result = db
.get(&Value::Int(i))
.expect("Failed to get record")
.expect("Record not found");
assert!(match &result.values() {
[Value::Int(a)] => a == &i,
_ => false,
});
}
}
#[test]
#[serial]
fn test_one_writer_and_multiple_reading_threads() {
let data_dir = tmp_dir();
let mut threads = vec![];
let threads_n = 100;
// Add readers that poll for the records
for i in 0..threads_n {
let data_dir = data_dir.clone();
threads.push(thread::spawn(move || {
let mut db = DB::configure()
.data_dir(&data_dir)
.segment_size(1000) // should cause rotations
.fields(&[(Field::Id, ValueType::int())])
.primary_key(Field::Id)
.initialize()
.expect("Failed to initialize DB instance");
let mut timeout = 5;
loop {
let result = db.get(&Value::Int(i)).expect("Failed to get record");
match result {
None => {
thread::sleep(Duration::from_millis(timeout));
timeout = std::cmp::min(timeout * 2, 100);
continue;
}
Some(result) => {
assert!(match &result.values() {
[Value::Int(a)] => a == &i,
_ => false,
});
break;
}
};
}
}));
}
// Add a writer that inserts the records
threads.push(thread::spawn(move || {
let mut db = DB::configure()
.data_dir(&data_dir)
.fields(&[(Field::Id, ValueType::int())])
.primary_key(Field::Id)
.initialize()
.expect("Failed to initialize DB instance");
for i in 0..threads_n {
let record = Record::from(&[Value::Int(i)]);
db.upsert(&record).expect("Failed to upsert record");
db.do_maintenance_tasks() // Run maintenance tasks after every write, just to test it
.expect("Failed to do maintenance tasks");
}
}));
for thread in threads {
thread.join().expect("Failed to join thread");
}
}
#[test]
fn test_log_is_rotated_when_capacity_reached() {
let data_dir = tmp_dir();
let data_dir_path = Path::new(&data_dir);
let record = Record::from(&[Value::Int(1), Value::Bytes(vec![1, 2, 3, 4])]);
let record_len = &record.serialize().len();
let mut db = DB::configure()
.data_dir(&data_dir)
.segment_size(10 * record_len) // small log segment size
.fields(&[
(Field::Id, ValueType::int()),
(Field::Data, ValueType::bytes()),
])
.primary_key(Field::Id)
.initialize()
.expect("Failed to initialize DB instance");
// Insert more records than fits the capacity
for _ in 0..25 {
db.upsert(&record).expect("Failed to upsert record");
db.do_maintenance_tasks()
.expect("Failed to do maintenance tasks");
}
// Check that the rotated segments exist
assert!(data_dir_path.join("metadata").with_extension("1").exists());
assert!(data_dir_path.join("metadata").with_extension("2").exists());
// 3rd segment should not exist (note negation)
assert!(!data_dir_path.join("metadata").with_extension("3").exists());
}
|