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
|
// Copyright (c) 2021 Soni L.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
// Documentation and comments licensed under CC BY-SA 4.0.
// because we wanna use double underscore (__) for test names
#![allow(non_snake_case)]
use ::iosonism::suggestion::Suggestion;
use ::iosonism::suggestion::Suggestions;
#[test]
fn test_merge__empty() {
let merged = Suggestions::merge("foo b", Vec::new());
assert!(merged.is_empty());
}
#[test]
fn test_merge__single() {
let suggestions = Suggestions::create("foo b", vec![
Suggestion::new(5..5, "ar".into()),
]);
let merged = Suggestions::merge("foo b", vec![suggestions.clone()]);
assert_eq!(merged, suggestions);
}
#[test]
fn test_merge__multiple() {
// it is possible the equivalent of this test fails sometimes in brigdier,
// but it should never fail here.
// also we use ASCII/UTF-8 ordering rather than locale-sensitive ordering.
let a = Suggestions::create("foo b", vec![
Suggestion::new(5..5, "ar".into()),
Suggestion::new(5..5, "az".into()),
Suggestion::new(5..5, "Ar".into()),
]);
let b = Suggestions::create("foo b", vec![
Suggestion::new(4..5, "foo".into()),
Suggestion::new(4..5, "qux".into()),
Suggestion::new(4..5, "apple".into()),
Suggestion::new(4..5, "Bar".into()),
]);
let merged = Suggestions::merge("foo b", vec![a, b]);
assert_eq!(merged.get_range(), 4..5);
assert_eq!(merged.take_list(), vec![
Suggestion::new(4..5, "Bar".into()),
Suggestion::new(4..5, "apple".into()),
Suggestion::new(4..5, "bAr".into()),
Suggestion::new(4..5, "bar".into()),
Suggestion::new(4..5, "baz".into()),
Suggestion::new(4..5, "foo".into()),
Suggestion::new(4..5, "qux".into()),
]);
}
|