text-document-search 1.9.3

Find and replace use cases for text-document
Documentation
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
extern crate text_document_search as document_search;
use anyhow::Result;

use test_harness::setup_with_text;

use document_search::document_search_controller;
use document_search::{FindAllDto, FindTextDto};

#[test]
fn test_find_text_simple() -> Result<()> {
    let (db_context, event_hub, _undo_redo_manager) = setup_with_text("Hello World")?;

    let result = document_search_controller::find_text(
        &db_context,
        &event_hub,
        &FindTextDto {
            query: "World".to_string(),
            case_sensitive: true,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
            search_backward: false,
            start_position: 0,
        },
    )?;

    assert!(result.found);
    assert_eq!(result.position, 6);
    assert_eq!(result.length, 5);

    Ok(())
}

#[test]
fn test_find_text_not_found() -> Result<()> {
    let (db_context, event_hub, _undo_redo_manager) = setup_with_text("Hello World")?;

    let result = document_search_controller::find_text(
        &db_context,
        &event_hub,
        &FindTextDto {
            query: "Foo".to_string(),
            case_sensitive: true,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
            search_backward: false,
            start_position: 0,
        },
    )?;

    assert!(!result.found);

    Ok(())
}

#[test]
fn test_find_text_case_insensitive() -> Result<()> {
    let (db_context, event_hub, _undo_redo_manager) = setup_with_text("Hello World")?;

    // Case-sensitive search should not find "hello"
    let result_sensitive = document_search_controller::find_text(
        &db_context,
        &event_hub,
        &FindTextDto {
            query: "hello".to_string(),
            case_sensitive: true,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
            search_backward: false,
            start_position: 0,
        },
    )?;
    assert!(!result_sensitive.found);

    // Case-insensitive search should find "hello"
    let result_insensitive = document_search_controller::find_text(
        &db_context,
        &event_hub,
        &FindTextDto {
            query: "hello".to_string(),
            case_sensitive: false,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
            search_backward: false,
            start_position: 0,
        },
    )?;
    assert!(result_insensitive.found);
    assert_eq!(result_insensitive.position, 0);
    assert_eq!(result_insensitive.length, 5);

    Ok(())
}

#[test]
fn test_find_text_backward() -> Result<()> {
    let (db_context, event_hub, _undo_redo_manager) = setup_with_text("abc abc abc")?;

    // Search backward from position 10, should find the second "abc" at position 4
    let result = document_search_controller::find_text(
        &db_context,
        &event_hub,
        &FindTextDto {
            query: "abc".to_string(),
            case_sensitive: true,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
            search_backward: true,
            start_position: 8,
        },
    )?;

    assert!(result.found);
    assert_eq!(result.position, 4);

    Ok(())
}

#[test]
fn test_find_all_multiple_matches() -> Result<()> {
    let (db_context, event_hub, _undo_redo_manager) =
        setup_with_text("the cat and the dog and the bird")?;

    let result = document_search_controller::find_all(
        &db_context,
        &event_hub,
        &FindAllDto {
            query: "the".to_string(),
            case_sensitive: true,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
        },
    )?;

    assert_eq!(result.count, 3);
    assert_eq!(result.positions, vec![0, 12, 24]);
    assert_eq!(result.lengths, vec![3, 3, 3]);

    Ok(())
}

#[test]
fn test_find_all_no_matches() -> Result<()> {
    let (db_context, event_hub, _undo_redo_manager) = setup_with_text("Hello World")?;

    let result = document_search_controller::find_all(
        &db_context,
        &event_hub,
        &FindAllDto {
            query: "xyz".to_string(),
            case_sensitive: true,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
        },
    )?;

    assert_eq!(result.count, 0);
    assert!(result.positions.is_empty());

    Ok(())
}

#[test]
fn test_find_all_across_blocks() -> Result<()> {
    let (db_context, event_hub, _undo_redo_manager) = setup_with_text("hello there\nhello again")?;

    let result = document_search_controller::find_all(
        &db_context,
        &event_hub,
        &FindAllDto {
            query: "hello".to_string(),
            case_sensitive: true,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
        },
    )?;

    assert_eq!(result.count, 2);
    // "hello there\nhello again" -> positions 0 and 12
    assert_eq!(result.positions, vec![0, 12]);

    Ok(())
}

#[test]
fn test_find_text_regex() -> Result<()> {
    let (db_context, event_hub, _) = setup_with_text("abc 123 def 456")?;

    // Find a sequence of digits using regex
    let result = document_search_controller::find_text(
        &db_context,
        &event_hub,
        &FindTextDto {
            query: r"\d+".to_string(),
            case_sensitive: true,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: true,
            search_backward: false,
            start_position: 0,
        },
    )?;

    assert!(result.found);
    assert_eq!(result.position, 4); // "123" starts at char 4
    assert_eq!(result.length, 3);

    Ok(())
}

#[test]
fn test_find_all_regex() -> Result<()> {
    let (db_context, event_hub, _) = setup_with_text("cat bat hat mat")?;

    // Find all words ending in "at" with regex
    let result = document_search_controller::find_all(
        &db_context,
        &event_hub,
        &FindAllDto {
            query: r"[a-z]at".to_string(),
            case_sensitive: true,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: true,
        },
    )?;

    assert_eq!(result.count, 4);
    assert_eq!(result.positions, vec![0, 4, 8, 12]);
    assert_eq!(result.lengths, vec![3, 3, 3, 3]);

    Ok(())
}

#[test]
fn test_find_text_unicode() -> Result<()> {
    let (db_context, event_hub, _) = setup_with_text("café résumé naïve")?;

    // Find an accented word
    let result = document_search_controller::find_text(
        &db_context,
        &event_hub,
        &FindTextDto {
            query: "résumé".to_string(),
            case_sensitive: true,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
            search_backward: false,
            start_position: 0,
        },
    )?;

    assert!(result.found);
    assert_eq!(result.position, 5); // "café " is 5 chars, so "résumé" starts at char 5
    assert_eq!(result.length, 6); // "résumé" is 6 chars

    Ok(())
}

#[test]
fn test_find_text_whole_word_unicode() -> Result<()> {
    let (db_context, event_hub, _) = setup_with_text("café caféine")?;

    // Whole word search for "café" — should only match the first one
    let result = document_search_controller::find_all(
        &db_context,
        &event_hub,
        &FindAllDto {
            query: "café".to_string(),
            case_sensitive: true,
            whole_word: true,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
        },
    )?;

    assert_eq!(result.count, 1);
    assert_eq!(result.positions, vec![0]);

    Ok(())
}

#[test]
fn test_find_text_start_position_skips() -> Result<()> {
    let (db_context, event_hub, _) = setup_with_text("abc abc abc")?;

    // Search from position 1 should skip first "abc"
    let result = document_search_controller::find_text(
        &db_context,
        &event_hub,
        &FindTextDto {
            query: "abc".to_string(),
            case_sensitive: true,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
            search_backward: false,
            start_position: 1,
        },
    )?;

    assert!(result.found);
    assert_eq!(result.position, 4); // second "abc"

    Ok(())
}

#[test]
fn test_find_text_whole_word_ascii() -> Result<()> {
    let (db_context, event_hub, _) = setup_with_text("catfish cat concatenate")?;

    let result = document_search_controller::find_all(
        &db_context,
        &event_hub,
        &FindAllDto {
            query: "cat".to_string(),
            case_sensitive: true,
            whole_word: true,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
        },
    )?;

    assert_eq!(result.count, 1);
    assert_eq!(result.positions, vec![8]); // only standalone "cat"

    Ok(())
}

#[test]
fn test_find_text_regex_case_insensitive() -> Result<()> {
    let (db_context, event_hub, _) = setup_with_text("Hello HELLO hello")?;

    let result = document_search_controller::find_all(
        &db_context,
        &event_hub,
        &FindAllDto {
            query: "hello".to_string(),
            case_sensitive: false,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: true,
        },
    )?;

    assert_eq!(result.count, 3);

    Ok(())
}

#[test]
fn test_find_text_empty_query() -> Result<()> {
    let (db_context, event_hub, _) = setup_with_text("Hello")?;

    let result = document_search_controller::find_text(
        &db_context,
        &event_hub,
        &FindTextDto {
            query: "".to_string(),
            case_sensitive: true,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
            search_backward: false,
            start_position: 0,
        },
    )?;

    assert!(!result.found);

    Ok(())
}

#[test]
fn test_find_all_empty_query() -> Result<()> {
    let (db_context, event_hub, _) = setup_with_text("Hello")?;

    let result = document_search_controller::find_all(
        &db_context,
        &event_hub,
        &FindAllDto {
            query: "".to_string(),
            case_sensitive: true,
            whole_word: false,
            diacritic_sensitive: false,
            language: String::new(),
            use_regex: false,
        },
    )?;

    assert_eq!(result.count, 0);

    Ok(())
}