libdictenstein 0.1.0

High-performance dictionary data structures (trie, DAWG, double-array trie, suffix automaton, lock-free durable persistent ART) behind one trait API; pairs with liblevenshtein for fuzzy matching
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
//! Macro-based test generalization for trait implementations.
//!
//! This module provides macros that generate property-based tests for all
//! implementations of shared dictionary traits. This ensures consistent
//! behavior across DynamicDawg, DoubleArrayTrie, SuffixAutomaton, and other
//! dictionary backends.
//!
//! # Usage
//!
//! ```ignore
//! // Generate tests for all Dictionary implementations
//! test_dictionary_contains!(
//!     dawg_contains_test => DynamicDawg::<()>::new(),
//!     dat_contains_test => DoubleArrayTrie::new(),
//! );
//! ```

/// Generates property tests for the `Dictionary::contains` method across multiple
/// dictionary implementations.
///
/// This macro creates proptest tests that verify:
/// - All inserted terms are found by contains()
/// - Non-inserted terms are not found
/// - Length is accurate after insertions
#[macro_export]
macro_rules! test_dictionary_contains {
    (
        $( $test_name:ident => $dict_expr:expr, $insert_method:tt ),+ $(,)?
    ) => {
        $(
            paste::paste! {
                proptest! {
                    #![proptest_config(ProptestConfig::with_cases(50))]

                    #[test]
                    fn [<$test_name _inserted_terms_found>](
                        terms in prop::collection::vec($crate::common::strategies::ascii_term(1, 15), 1..=30)
                    ) {
                        let dict = $dict_expr;
                        let unique_terms: std::collections::HashSet<_> = terms.into_iter().collect();

                        test_dictionary_contains!(@insert dict, unique_terms, $insert_method);

                        for term in &unique_terms {
                            prop_assert!(
                                dict.contains(term),
                                "Term '{}' should be found by contains()",
                                term
                            );
                        }
                    }

                    #[test]
                    fn [<$test_name _nonexistent_terms_not_found>](
                        terms in prop::collection::vec($crate::common::strategies::ascii_term(1, 10), 1..=20),
                        missing in $crate::common::strategies::ascii_term(11, 15)
                    ) {
                        let dict = $dict_expr;
                        let unique_terms: std::collections::HashSet<_> = terms.into_iter().collect();

                        test_dictionary_contains!(@insert dict, unique_terms, $insert_method);

                        // If missing is not in our set, it should not be found
                        if !unique_terms.contains(&missing) {
                            prop_assert!(
                                !dict.contains(&missing),
                                "Non-inserted term '{}' should not be found",
                                missing
                            );
                        }
                    }
                }
            }
        )+
    };

    // Helper for mutable insertion (one term at a time)
    (@insert $dict:ident, $terms:ident, insert) => {
        for term in &$terms {
            $dict.insert(term);
        }
    };

    // Helper for builder-style (from_terms)
    (@insert $dict:ident, $terms:ident, from_terms) => {
        // Note: for from_terms, the dict must be created with the terms
        // This branch is just a placeholder - actual usage requires different macro structure
        let _ = &$terms; // suppress unused warning
    };
}

/// Generates property tests for `MutableDictionary` implementations.
///
/// Tests insertion, removal, and consistency invariants.
#[macro_export]
macro_rules! test_mutable_dictionary {
    (
        $( $test_name:ident => $dict_expr:expr ),+ $(,)?
    ) => {
        $(
            paste::paste! {
                proptest! {
                    #![proptest_config(ProptestConfig::with_cases(50))]

                    #[test]
                    fn [<$test_name _insert_then_contains>](
                        terms in prop::collection::vec($crate::common::strategies::ascii_term(1, 15), 1..=30)
                    ) {
                        let dict = $dict_expr;
                        let unique_terms: std::collections::HashSet<_> = terms.into_iter().collect();

                        for term in &unique_terms {
                            dict.insert(term);
                        }

                        for term in &unique_terms {
                            prop_assert!(
                                dict.contains(term),
                                "Inserted term '{}' should be found",
                                term
                            );
                        }
                    }

                    #[test]
                    fn [<$test_name _remove_then_not_contains>](
                        terms in prop::collection::vec($crate::common::strategies::ascii_term(1, 15), 5..=30)
                    ) {
                        let dict = $dict_expr;
                        let unique_terms: Vec<_> = terms.into_iter()
                            .collect::<std::collections::HashSet<_>>()
                            .into_iter()
                            .collect();

                        // Insert all
                        for term in &unique_terms {
                            dict.insert(term);
                        }

                        // Remove first half
                        let to_remove: Vec<_> = unique_terms.iter().take(unique_terms.len() / 2).cloned().collect();
                        for term in &to_remove {
                            dict.remove(term);
                        }

                        // Verify removed terms are gone
                        for term in &to_remove {
                            prop_assert!(
                                !dict.contains(term),
                                "Removed term '{}' should not be found",
                                term
                            );
                        }

                        // Verify remaining terms still exist
                        for term in unique_terms.iter().skip(unique_terms.len() / 2) {
                            prop_assert!(
                                dict.contains(term),
                                "Non-removed term '{}' should still be found",
                                term
                            );
                        }
                    }

                    #[test]
                    fn [<$test_name _insert_remove_reinsert>](
                        terms in prop::collection::vec($crate::common::strategies::ascii_term(1, 15), 1..=20)
                    ) {
                        let dict = $dict_expr;
                        let unique_terms: Vec<_> = terms.into_iter()
                            .collect::<std::collections::HashSet<_>>()
                            .into_iter()
                            .collect();

                        // Insert all
                        for term in &unique_terms {
                            dict.insert(term);
                        }

                        // Remove all
                        for term in &unique_terms {
                            dict.remove(term);
                        }

                        // Verify all removed
                        for term in &unique_terms {
                            prop_assert!(
                                !dict.contains(term),
                                "Term '{}' should be gone after remove",
                                term
                            );
                        }

                        // Reinsert all
                        for term in &unique_terms {
                            dict.insert(term);
                        }

                        // Verify all back
                        for term in &unique_terms {
                            prop_assert!(
                                dict.contains(term),
                                "Term '{}' should be back after reinsert",
                                term
                            );
                        }
                    }
                }
            }
        )+
    };
}

/// Generates property tests for `MutableMappedDictionary` implementations.
///
/// Tests value insertion, retrieval, and update consistency.
///
/// **Note**: The calling code must have `MappedDictionary` trait in scope.
#[macro_export]
macro_rules! test_mapped_dictionary {
    (
        $( $test_name:ident => $dict_expr:expr ),+ $(,)?
    ) => {
        $(
            paste::paste! {
                proptest! {
                    #![proptest_config(ProptestConfig::with_cases(50))]

                    #[test]
                    fn [<$test_name _value_roundtrip>](
                        pairs in prop::collection::vec(
                            ($crate::common::strategies::ascii_term(1, 15), any::<u32>()),
                            1..=30
                        )
                    ) {
                        use libdictenstein::MappedDictionary;

                        let dict = $dict_expr;
                        let expected: std::collections::HashMap<String, u32> = pairs.into_iter().collect();

                        for (term, value) in &expected {
                            dict.insert_with_value(term, *value);
                        }

                        for (term, expected_value) in &expected {
                            let actual = dict.get_value(term);
                            prop_assert_eq!(
                                actual,
                                Some(*expected_value),
                                "Term '{}' should have value {}",
                                term,
                                expected_value
                            );
                        }
                    }

                    #[test]
                    fn [<$test_name _value_overwrite>](
                        term in $crate::common::strategies::ascii_term(1, 15),
                        value1 in any::<u32>(),
                        value2 in any::<u32>()
                    ) {
                        use libdictenstein::MappedDictionary;

                        let dict = $dict_expr;

                        dict.insert_with_value(&term, value1);
                        prop_assert_eq!(dict.get_value(&term), Some(value1));

                        dict.insert_with_value(&term, value2);
                        prop_assert_eq!(
                            dict.get_value(&term),
                            Some(value2),
                            "Value should be updated to new value"
                        );
                    }
                }
            }
        )+
    };
}

/// Generates property tests for `CompactableDictionary` implementations.
///
/// Tests that compaction preserves all terms.
#[macro_export]
macro_rules! test_compactable_dictionary {
    (
        $( $test_name:ident => $dict_expr:expr ),+ $(,)?
    ) => {
        $(
            paste::paste! {
                proptest! {
                    #![proptest_config(ProptestConfig::with_cases(30))]

                    #[test]
                    fn [<$test_name _compact_preserves_terms>](
                        terms in prop::collection::vec($crate::common::strategies::ascii_term(1, 15), 10..=50)
                    ) {
                        let dict = $dict_expr;
                        let unique_terms: std::collections::HashSet<_> = terms.into_iter().collect();

                        // Insert all
                        for term in &unique_terms {
                            dict.insert(term);
                        }

                        // Remove some to create fragmentation
                        let to_remove: Vec<_> = unique_terms.iter().take(unique_terms.len() / 3).cloned().collect();
                        let removed_set: std::collections::HashSet<_> = to_remove.iter().cloned().collect();
                        for term in &to_remove {
                            dict.remove(term);
                        }

                        let remaining: std::collections::HashSet<_> = unique_terms
                            .difference(&removed_set)
                            .cloned()
                            .collect();

                        // Compact
                        dict.compact();

                        // Verify remaining terms still exist
                        for term in &remaining {
                            prop_assert!(
                                dict.contains(term),
                                "Term '{}' should exist after compaction",
                                term
                            );
                        }

                        // Verify removed terms still gone
                        for term in &to_remove {
                            prop_assert!(
                                !dict.contains(term),
                                "Removed term '{}' should not reappear after compaction",
                                term
                            );
                        }
                    }
                }
            }
        )+
    };
}

/// Generates iterator consistency tests for dictionaries.
///
/// Tests that iteration returns all and only the inserted terms.
#[macro_export]
macro_rules! test_dictionary_iterator {
    (
        $( $test_name:ident => $dict_expr:expr, iter_method = $iter_method:ident, to_string = $to_string:expr ),+ $(,)?
    ) => {
        $(
            paste::paste! {
                proptest! {
                    #![proptest_config(ProptestConfig::with_cases(50))]

                    #[test]
                    fn [<$test_name _iterator_completeness>](
                        terms in prop::collection::vec($crate::common::strategies::ascii_term(1, 15), 1..=30)
                    ) {
                        let dict = $dict_expr;
                        let expected: std::collections::HashSet<String> = terms.into_iter().collect();

                        for term in &expected {
                            dict.insert(term);
                        }

                        let iterated: std::collections::HashSet<String> = dict.$iter_method()
                            .map($to_string)
                            .collect();

                        prop_assert_eq!(
                            &iterated,
                            &expected,
                            "Iterator should return exactly the inserted terms"
                        );
                    }
                }
            }
        )+
    };
}

/// Generates Unicode handling tests for char-based dictionaries.
#[macro_export]
macro_rules! test_unicode_dictionary {
    (
        $( $test_name:ident => $dict_expr:expr ),+ $(,)?
    ) => {
        $(
            paste::paste! {
                proptest! {
                    #![proptest_config(ProptestConfig::with_cases(30))]

                    #[test]
                    fn [<$test_name _unicode_roundtrip>](
                        terms in prop::collection::vec($crate::common::strategies::unicode_term(1, 10), 1..=20)
                    ) {
                        let dict = $dict_expr;
                        let unique_terms: std::collections::HashSet<_> = terms.into_iter().collect();

                        for term in &unique_terms {
                            dict.insert(term);
                        }

                        for term in &unique_terms {
                            prop_assert!(
                                dict.contains(term),
                                "Unicode term '{}' should be found",
                                term
                            );
                        }
                    }

                    #[test]
                    fn [<$test_name _emoji_handling>](
                        base in $crate::common::strategies::ascii_term(1, 5)
                    ) {
                        let dict = $dict_expr;

                        let emoji_terms = vec![
                            format!("{}🚀", base),
                            format!("🎉{}", base),
                            format!("{}💡{}", base, base),
                            format!("{}🔥🎨", base),
                        ];

                        for term in &emoji_terms {
                            dict.insert(term);
                        }

                        for term in &emoji_terms {
                            prop_assert!(
                                dict.contains(term),
                                "Emoji term '{}' should be found",
                                term
                            );
                        }
                    }
                }
            }
        )+
    };
}