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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
use crate::{
Keeper,
store::{
Package,
PacketMetaData,
Store
},
uuid::Uuid
};
use std::collections::BTreeMap;
pub type MemStore = Store<MemDb>;
pub struct MemDb {
msgs: BTreeMap<Uuid, String>
}
impl MemDb {
pub fn new() -> MemDb {
MemDb {
msgs: BTreeMap::new()
}
}
}
impl Keeper for MemDb {
fn add(&mut self, package: &Package) {
self.msgs.insert(package.uuid, package.msg.clone());
}
fn get(&mut self, uuid: &Uuid) -> Option<String> {
match self.msgs.get(uuid) {
Some(msg) => Some(msg.clone()),
None => None
}
}
fn del(&mut self, uuid: &Uuid) {
self.msgs.remove(uuid);
}
fn fetch(&mut self) -> Vec<PacketMetaData> {
vec![]
}
}
pub fn open() -> MemStore {
Store::open(MemDb::new())
}
#[cfg(test)]
mod tests {
mod add {
use crate::{
mem::open,
store::{ Packet, GroupDefaults }
};
#[test]
fn should_increase_store_byte_size() {
let mut store = open();
let packet = Packet::new(1, "1234567890".to_string());
store.add(&packet).expect("Could not add msg");
assert_eq!(store.byte_size, 10)
}
#[test]
fn should_increase_group_byte_size() {
let mut store = open();
let packet = Packet::new(1, "1234567890".to_string());
store.add(&packet).expect("Could not add msg");
let group = store.groups_map.get(&1).expect("Could not find group");
assert_eq!(group.byte_size, 10)
}
#[test]
fn should_increase_inserted_msg_count() {
let mut store = open();
assert_eq!(0, store.msgs_inserted);
let packet = Packet::new(1, "1234567890".to_string());
store.add(&packet).expect("Could not add msg");
assert_eq!(1, store.msgs_inserted);
}
#[test]
fn should_prune_store_byte_size_to_10_when_store_max_byte_size_exists() {
let mut store = open();
let first_packet = Packet::new(1, "1234567890".to_string());
let second_packet = Packet::new(1, "1234567890".to_string());
store.max_byte_size = Some(10);
store.add(&first_packet).expect("Could not add first msg");
store.add(&second_packet).expect("Could not second msg");
assert_eq!(store.byte_size, 10)
}
#[test]
fn should_prune_store_byte_size_to_10_when_group_max_byte_size_exists() {
let mut store = open();
let first_packet = Packet::new(1, "1234567890".to_string());
let second_packet = Packet::new(1, "1234567890".to_string());
store.add(&first_packet).expect("Could not add first msg");
let mut group = store.groups_map.get_mut(&1).expect("Could not find group");
group.max_byte_size = Some(10);
store.add(&second_packet).expect("Could not second msg");
assert_eq!(store.byte_size, 10)
}
#[test]
fn should_prune_group_byte_size_to_10_when_group_max_byte_size_exists() {
let mut store = open();
let first_packet = Packet::new(1, "1234567890".to_string());
let second_packet = Packet::new(1, "1234567890".to_string());
store.add(&first_packet).expect("Could not add first msg");
let mut group = store.groups_map.get_mut(&1).expect("Could not get mutable group");
group.max_byte_size = Some(10);
store.add(&second_packet).expect("Could not second msg");
let group = store.groups_map.get(&1).expect("Could get group ref");
assert_eq!(group.byte_size, 10)
}
#[test]
fn should_prune_oldest_msg_in_a_group_when_exceeding_group_max_byte_size() {
let mut store = open();
let first_uuid = store.add(&Packet::new(1, "1234567890".to_string())).expect("Could not add first msg");
let mut group = store.groups_map.get_mut(&1).expect("Could not get mutable group");
group.max_byte_size = Some(10);
let second_uuid = store.add(&Packet::new(1, "1234567890".to_string())).expect("Could not second msg");
assert_eq!(None, store.id_to_group_map.get(&first_uuid));
assert_eq!(Some(&1), store.id_to_group_map.get(&second_uuid));
}
#[test]
fn should_prune_oldest_msg_in_a_group_when_exceeding_store_max_byte_size() {
let mut store = open();
store.max_byte_size = Some(10);
let first_uuid = store.add(&Packet::new(1, "1234567890".to_string())).expect("Could not add first msg");
let second_uuid = store.add(&Packet::new(1, "1234567890".to_string())).expect("Could not second msg");
assert_eq!(None, store.id_to_group_map.get(&first_uuid));
assert_eq!(Some(&1), store.id_to_group_map.get(&second_uuid));
}
#[test]
fn should_prune_oldest_lowest_pri_msg_in_the_store_when_exceeding_store_max_byte_size() {
let mut store = open();
store.max_byte_size = Some(20);
let first_uuid = store.add(&Packet::new(2, "1234567890".to_string())).expect("Could not add first msg");
let second_uuid = store.add(&Packet::new(1, "1234567890".to_string())).expect("Could not second msg");
let third_uuid = store.add(&Packet::new(1, "1234567890".to_string())).expect("Could not second msg");
assert_eq!(Some(&2), store.id_to_group_map.get(&first_uuid));
assert_eq!(None, store.id_to_group_map.get(&second_uuid));
assert_eq!(Some(&1), store.id_to_group_map.get(&third_uuid));
}
#[test]
fn should_return_msg_to_large_for_store_err() {
let mut store = open();
store.max_byte_size = Some(9);
let result = store.add(&Packet::new(2, "1234567890".to_string()));
assert!(result.is_err());
}
#[test]
fn should_return_msg_to_large_for_group_err() {
let mut store = open();
store.add(&Packet::new(1, "1234567890".to_string())).expect("Could not add first msg");
let mut group = store.groups_map.get_mut(&1).expect("Could not get mutable group");
group.max_byte_size = Some(10);
let result = store.add(&Packet::new(1, "12345678901".to_string()));
assert!(result.is_err());
}
#[test]
fn should_return_msg_lacks_priority_err() {
let mut store = open();
store.max_byte_size = Some(20);
store.add(&Packet::new(2, "1234567890".to_string())).expect("Could not add first msg");
store.add(&Packet::new(2, "1234567890".to_string())).expect("Could not second msg");
let result = store.add(&Packet::new(1, "1234567890".to_string()));
assert!(result.is_err());
}
#[test]
fn should_create_group_with_defaults() {
let mut store = open();
store.group_defaults.insert(1, GroupDefaults { max_byte_size: Some(10) });
store.add(&Packet::new(1, "1234567890".to_string())).expect("Could not add msg");
let group = store.groups_map.get(&1).expect("Could not get group");
assert_eq!(Some(10), group.max_byte_size);
}
#[test]
fn should_increase_burned_msg_count() {
let mut store = open();
store.max_byte_size = Some(3);
store.add(&Packet::new(1, "foo".to_string())).expect("Could not insert msg");
assert_eq!(0, store.msgs_burned);
store.add(&Packet::new(1, "bar".to_string())).expect("Could not insert msg");
assert_eq!(1, store.msgs_burned);
store.max_byte_size = None;
let mut group = store.groups_map.get_mut(&1).expect("Could not find group");
group.max_byte_size = Some(3);
store.add(&Packet::new(1, "baz".to_string())).expect("Could not insert msg");
assert_eq!(2, store.msgs_burned);
}
#[test]
fn should_reinsert_group_after_errors() {
let mut store = open();
store.max_byte_size = Some(10);
store.add(&Packet::new(2, "12345".to_string())).expect("Could not add msg");
let first_attempt = store.add(&Packet::new(2, "12345678901".to_string()));
assert!(first_attempt.is_err());
let mut group = store.groups_map.get_mut(&2).expect("Group not found");
group.max_byte_size = Some(5);
let second_attempt = store.add(&Packet::new(2, "123456".to_string()));
assert!(second_attempt.is_err());
let third_attempt = store.add(&Packet::new(1, "123456".to_string()));
assert!(third_attempt.is_err());
let group = store.groups_map.get(&2);
assert!(group.is_some());
}
}
mod get {
use crate::{
mem::open,
store::Packet
};
#[test]
fn should_return_msg() {
let mut store = open();
let uuid = store.add(&Packet::new(1, "first message".to_string())).expect("Could not add first message");
let stored_packet = store.get(Some(uuid), None).expect("Msg not found");
assert_eq!(uuid, stored_packet.uuid);
assert_eq!("first message", stored_packet.msg);
}
#[test]
fn should_return_oldest_msg() {
let mut store = open();
let first_uuid = store.add(&Packet::new(1, "first message".to_string())).expect("Could not add first message");
store.add(&Packet::new(1, "second message".to_string())).expect("Could not add first message");
let stored_packet = store.get(None, None).expect("Msg not found");
assert_eq!(first_uuid, stored_packet.uuid);
assert_eq!("first message", stored_packet.msg);
}
#[test]
fn should_return_highest_pri_msg() {
let mut store = open();
store.add(&Packet::new(1, "first message".to_string())).expect("Could not add first message");
let second_msg = store.add(&Packet::new(2, "second message".to_string())).expect("Could not add first message");
let stored_packet = store.get(None, None).expect("Msg not found");
assert_eq!(second_msg, stored_packet.uuid);
assert_eq!("second message", stored_packet.msg);
}
#[test]
fn should_return_oldest_msg_in_group() {
let mut store = open();
let first_uuid = store.add(&Packet::new(1, "first message".to_string())).expect("Could not add first message");
let _second_uuid = store.add(&Packet::new(2, "second message".to_string())).expect("Could not add first message");
let _third_uuid = store.add(&Packet::new(1, "third message".to_string())).expect("Could not add first message");
let stored_packet = store.get(None, Some(1)).expect("Msg not found");
assert_eq!(first_uuid, stored_packet.uuid);
assert_eq!("first message", stored_packet.msg);
}
}
mod del {
use crate::{
mem::open,
store::Packet
};
#[test]
fn should_decrease_byte_size() {
let mut store = open();
let uuid = store.add(&Packet::new(1, "foo".to_string())).expect("Could not insert first msg");
store.add(&Packet::new(1, "bar".to_string())).expect("Could not insert second msg");
let group = store.groups_map.get(&1).expect("Could get group ref");
assert_eq!(6, store.byte_size);
assert_eq!(6, group.byte_size);
assert!(store.db.msgs.get(&uuid).is_some());
store.del(&uuid).expect("Could not delete message");
let group = store.groups_map.get(&1).expect("Could get group ref");
assert_eq!(3, store.byte_size);
assert_eq!(3, group.byte_size);
assert!(store.db.msgs.get(&uuid).is_none());
}
#[test]
fn should_remove_empty_group() {
let mut store = open();
let uuid = store.add(&Packet::new(1, "foo".to_string())).expect("Could not insert first msg");
assert!(store.groups_map.get(&1).is_some());
store.del(&uuid).expect("Could not delete message");
assert!(store.groups_map.get(&1).is_none())
}
#[test]
fn should_increase_bytes_deleted_count() {
let mut store = open();
let uuid = store.add(&Packet::new(1, "foo".to_string())).expect("Could not insert first msg");
assert_eq!(0, store.msgs_deleted);
store.del(&uuid).expect("Could not delete message");
assert_eq!(1, store.msgs_deleted);
}
#[test]
fn should_reset_bytes_deleted_count_and_add_diff() {
let mut store = open();
let uuid = store.add(&Packet::new(1, "foo".to_string())).expect("Could not insert first msg");
store.msgs_deleted = i32::MAX;
assert_eq!(i32::MAX, store.msgs_deleted);
store.del(&uuid).expect("Could not delete message");
assert_eq!(1, store.msgs_deleted);
}
#[test]
fn should_clear_deleted_count() {
let mut store = open();
let uuid = store.add(&Packet::new(1, "foo".to_string())).expect("Could not insert first msg");
assert_eq!(0, store.msgs_deleted);
store.del(&uuid).expect("Could not delete message");
store.clear_msgs_deleted_count();
assert_eq!(0, store.msgs_deleted);
}
}
mod update_group_defaults {
use crate::{
mem::open,
store::{
GroupDefaults,
Packet
}
};
#[test]
fn should_update_store_config() {
let mut store = open();
store.update_group_defaults(1, &GroupDefaults{ max_byte_size: Some(10) });
let defaults = store.group_defaults.get(&1).expect("Could not find defaults");
assert_eq!(Some(10), defaults.max_byte_size);
}
#[test]
fn should_update_existing_group() {
let mut store = open();
store.update_group_defaults(1, &GroupDefaults{ max_byte_size: Some(10) });
store.add(&Packet::new(1, "foo".to_string())).expect("Could not add message");
let group = store.groups_map.get(&1).expect("Could not find defaults");
assert_eq!(Some(10), group.max_byte_size);
}
#[test]
fn should_prune_group_after_update() {
let mut store = open();
store.add(&Packet::new(1, "foo".to_string())).expect("Could not add message");
store.add(&Packet::new(1, "bar".to_string())).expect("Could not add message");
store.update_group_defaults(1, &GroupDefaults{ max_byte_size: Some(3) });
let group = store.groups_map.get(&1).expect("Could not find group");
assert_eq!(3, store.byte_size);
assert_eq!(3, group.byte_size);
assert_eq!(1, store.msgs_burned);
}
}
mod delete_group_defaults {
use crate::{
mem::open,
store::{
GroupDefaults,
Packet
}
};
#[test]
#[test]
fn should_update_existing_group() {
let mut store = open();
store.update_group_defaults(1, &GroupDefaults{ max_byte_size: Some(10) });
store.add(&Packet::new(1, "foo".to_string())).expect("Could not add message");
let group = store.groups_map.get(&1).expect("Could not find defaults");
assert_eq!(Some(10), group.max_byte_size);
store.delete_group_defaults(1);
assert!(store.group_defaults.get(&1).is_none());
let group = store.groups_map.get(&1).expect("Could not find defaults");
assert_eq!(None, group.max_byte_size);
}
}
mod update_store_defaults {
use crate::{
mem::open,
store::{
StoreDefaults,
Packet
}
};
#[test]
fn should_update_store_config() {
let mut store = open();
store.update_store_defaults(&StoreDefaults{ max_byte_size: Some(10) });
assert_eq!(Some(10), store.max_byte_size);
}
#[test]
fn should_prune_store_after_update() {
let mut store = open();
store.add(&Packet::new(1, "foo".to_string())).expect("Could not add message");
store.add(&Packet::new(1, "bar".to_string())).expect("Could not add message");
store.update_store_defaults(&StoreDefaults{ max_byte_size: Some(3) });
let group = store.groups_map.get(&1).expect("Could not find defaults");
assert_eq!(3, store.byte_size);
assert_eq!(3, group.byte_size);
assert_eq!(1, store.msgs_burned);
}
}
mod clear_counts {
use crate::{
mem::open,
store::{
Packet
}
};
#[test]
fn should_clear_msgs_burned_count() {
let mut store = open();
store.max_byte_size = Some(3);
store.add(&Packet::new(1, "foo".to_string())).expect("Could not add msg");
store.add(&Packet::new(1, "foo".to_string())).expect("Could not add msg");
assert_eq!(1, store.msgs_burned);
store.clear_msgs_burned_count();
assert_eq!(0, store.msgs_burned);
}
#[test]
fn should_clear_msgs_inserted_count() {
let mut store = open();
assert_eq!(0, store.msgs_inserted);
store.add(&Packet::new(1, "foo".to_string())).expect("Could not add msg");
assert_eq!(1, store.msgs_inserted);
store.clear_msgs_inserted_count();
assert_eq!(0, store.msgs_inserted);
}
}
mod uuid {
use crate::Uuid;
#[test]
fn should_convert_a_str_to_uuid() {
assert_eq!(Uuid{ timestamp: 1636523479865480266, sequence: 1 }, Uuid::from_string("1636523479865480266-1"))
}
}
}