summaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/dialer/dialpad/SmartDialTrieTest.java
blob: cd87b661331c139948653a95ea7ddae4fa5a5116 (plain)
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
/*
 * Copyright (C) 2013 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.dialer.dialpad;

import static com.android.dialer.dialpad.SmartDialCache.ContactNumber;

import com.android.dialer.dialpad.SmartDialTrie.Node;

import android.test.suitebuilder.annotation.SmallTest;

import junit.framework.TestCase;

/**
 * To run this test, use the command:
 * adb shell am instrument -w -e class com.android.dialer.dialpad.SmartDialTrieTest /
 * com.android.dialer.tests/android.test.InstrumentationTestRunner
 */
@SmallTest
public class SmartDialTrieTest extends TestCase{

    public void testSize() {
        final SmartDialTrie trie = new SmartDialTrie();
        trie.put(new ContactNumber(0, "Jason", "0", "0", 1));
        assertEquals(1, trie.size());
        trie.put(new ContactNumber(1, "Mary", "0", "1", 2));
        assertEquals(2, trie.size());
        trie.put(new ContactNumber(2, "John", "0", "2", 3));
        assertEquals(3, trie.size());
    }

    public void testPutForFullName() {
        final SmartDialTrie trie = new SmartDialTrie();
        final ContactNumber jasonsmith = new ContactNumber(0, "Jason Smith", "0", "0", 1);
        final ContactNumber jasonsmitt = new ContactNumber(1, "Jason Smitt", "0", "1", 2);
        trie.put(jasonsmith);
        trie.put(jasonsmitt);
        assertTrue(trie.getAllWithPrefix("5276676484").contains(jasonsmith));
        assertFalse(trie.getAllWithPrefix("5276676484").contains(jasonsmitt));

        assertFalse(trie.getAllWithPrefix("5276676488").contains(jasonsmith));
        assertTrue(trie.getAllWithPrefix("5276676488").contains(jasonsmitt));

    }

    public void testPutForPartialName() {
        final SmartDialTrie trie = new SmartDialTrie();
        final ContactNumber maryjane = new ContactNumber(0, "Mary Jane", "0", "0", 1);
        final ContactNumber sarahsmith = new ContactNumber(1, "Sarah Smith", "0", "1", 2);
        final ContactNumber jasonsmitt = new ContactNumber(2, "Jason Smitt", "0", "2", 3);
        trie.put(maryjane);
        trie.put(sarahsmith);
        trie.put(jasonsmitt);

        // 6279 corresponds to mary = "Mary Jane" but not "Jason Smitt"
        assertTrue(checkContains(trie, maryjane, "6279"));
        assertFalse(checkContains(trie, jasonsmitt, "6279"));

        // 72 corresponds to sa = "Sarah Smith" but not "Jason Smitt" or "Mary Jane"
        assertFalse(checkContains(trie, maryjane, "72"));
        assertTrue(checkContains(trie, sarahsmith, "72"));
        assertFalse(checkContains(trie, jasonsmitt, "72"));

        // 76 corresponds to sm = "Sarah Smith" and "Jason Smitt" but not "Mary Jane"
        assertFalse(checkContains(trie, maryjane, "76"));
        assertTrue(checkContains(trie, sarahsmith, "76"));
        assertTrue(checkContains(trie, jasonsmitt, "76"));
    }

    public void testPutForNameTokens() {
        final SmartDialTrie trie = new SmartDialTrie();
        final ContactNumber jasonfwilliams = new ContactNumber(0, "Jason F. Williams", "0", "0", 1);
        trie.put(jasonfwilliams);

        // 527 corresponds to jas = "Jason"
        assertTrue(checkContains(trie, jasonfwilliams, "527"));
        // 945 corresponds to wil = "Wil"
        assertTrue(checkContains(trie, jasonfwilliams, "945"));
        // 66 doesn't match
        assertFalse(checkContains(trie, jasonfwilliams, "66"));
    }

    public void testPutForInitialMatches() {
        final SmartDialTrie trie = new SmartDialTrie();
        final ContactNumber martinjuniorharry =
                new ContactNumber(0, "Martin Jr Harry", "0", "0", 1);
        trie.put(martinjuniorharry);
        // 654 corresponds to mjh = "(M)artin (J)r (H)arry"
        assertTrue(checkContains(trie, martinjuniorharry, "654"));
        // The reverse (456) does not match (for now)
        assertFalse(checkContains(trie, martinjuniorharry, "456"));
        // 6542 corresponds to mjha = "(M)artin (J)r (Ha)rry"
        assertTrue(checkContains(trie, martinjuniorharry, "6542"));
        // 542 corresponds to jha = "Martin (J)r (Ha)rry"
        assertTrue(checkContains(trie, martinjuniorharry, "542"));
        // 642 corresponds to mha = "(M)artin Jr (Ha)rry"
        assertTrue(checkContains(trie, martinjuniorharry, "642"));
        // 6542779 (M)artin (J)r (Harry)
        assertTrue(checkContains(trie, martinjuniorharry, "6542779"));
        // 65742779 (M)artin (Jr) (Harry)
        assertTrue(checkContains(trie, martinjuniorharry, "65742779"));
        // 542779 Martin (J)r (Harry)
        assertTrue(checkContains(trie, martinjuniorharry, "542779"));
        // 547 doesn't match
        assertFalse(checkContains(trie, martinjuniorharry, "547"));
        // 655 doesn't match
        assertFalse(checkContains(trie, martinjuniorharry, "655"));
        // 653 doesn't match
        assertFalse(checkContains(trie, martinjuniorharry, "653"));
        // 6543 doesn't match
        assertFalse(checkContains(trie, martinjuniorharry, "6543"));
        // 7(2^3 -1) entries for the name, and 1 for the number
        assertEquals(8, trie.numEntries());
    }

    public void testPutForInitialMatchesCombinations() {
        final SmartDialTrie trie = new SmartDialTrie();
        final ContactNumber alphabet = new ContactNumber(0, "abc def ghi jkl mno pqrs tuv wxyz",
                "1", "1", 2);
        trie.put(alphabet);
        // 255 (2^8 - 1) combinations for the name, and 1 for the number
        assertEquals(256, trie.numEntries());

        // Test every single combination of the leading initials of each name token by generating
        // strings consisting of all combinations of the digits 2-9.
        final StringBuilder sb = new StringBuilder();

        // Create an array of bit positions 0b10000000, 0b01000000, 0b00100000, ...
        final int[] pos = new int[8];
        for (int i = 2; i <= 9; i++) {
            pos[i - 2] = 1 << (9 - i);
        }
        for (int i = 1; i < 256; i++) {
            sb.setLength(0);
            // If the bit at nth position is set to true, then add the nth initial to the target
            // string
            for (int j = 2; j <= 9; j++) {
                if ((i & pos[j - 2]) > 0) {
                    sb.append(j);
                }
            }
            assertTrue(checkContains(trie, alphabet, sb.toString()));
        }

    }

    public void testSeparators() {
        SmartDialTrie trie = new SmartDialTrie();
        String name = "Mcdonald Jamie-Cullum";
        byte[] bytes = trie.toByteArray(name);
        // Make sure the dash is correctly converted to a separator character
        for (int i = 0; i < name.length(); i++) {
            // separators at position 8 and 12
            if (i == 8 || i == 14) {
                assertTrue(bytes[i] == -1);
            } else {
                assertFalse(bytes[i] == -1);
            }
        }
    }

    public void testAccentedCharacters() {
        final SmartDialTrie trie = new SmartDialTrie();
        final ContactNumber reenee = new ContactNumber(0, "Reenée", "0", "0", 1);
        final ContactNumber bronte = new ContactNumber(2, "Brontë", "0", "1", 2);
        trie.put(reenee);
        trie.put(bronte);
        assertTrue(checkContains(trie, reenee, "733633"));
        assertTrue(checkContains(trie, bronte, "276683"));
    }

    public void testNumbersInName() {
        final SmartDialTrie trie = new SmartDialTrie();
        final ContactNumber contact = new ContactNumber(0, "12345678", "0", "0", 1);
        final ContactNumber teacher = new ContactNumber(1, "1st Grade Teacher", "0", "1", 2);
        trie.put(contact);
        trie.put(teacher);
        assertTrue(checkContains(trie, contact, "12345678"));
        // (1st Grade) Teacher
        assertTrue(checkContains(trie, teacher, "17847233"));
        // (1)st (G)rade (Tea)cher
        assertTrue(checkContains(trie, teacher, "14832"));
    }

    public void testPutForNumbers() {
        final SmartDialTrie trie = new SmartDialTrie();
        final ContactNumber contactno1 = new ContactNumber(0, "James", "510-527-2357", "0", 1);
        trie.put(contactno1);
        final ContactNumber contactno2 = new ContactNumber(0, "James", "77212862357", "0", 1);
        trie.put(contactno2);
        final ContactNumber contactno3 = new ContactNumber(0, "James", "+13684976334", "0", 1);
        trie.put(contactno3);
        // all phone numbers belonging to the contact should correspond to it
        assertTrue(checkContains(trie, contactno1, "510"));
        assertFalse(checkContains(trie, contactno1, "511"));
        assertTrue(checkContains(trie, contactno2, "77212862357"));
        assertFalse(checkContains(trie, contactno2, "77212862356"));
        assertTrue(checkContains(trie, contactno3, "1368"));
        assertFalse(checkContains(trie, contactno3, "1367"));

    }

    public void testPutNumbersCountryCode() {
        final SmartDialTrie trie = new SmartDialTrie();
        final ContactNumber contactno1 = new ContactNumber(0, "James", "+13684976334", "0", 1);
        trie.put(contactno1);

        // all phone numbers belonging to the contact should correspond to it
        assertTrue(checkContains(trie, contactno1, "1368"));
        assertTrue(checkContains(trie, contactno1, "368497"));
        assertFalse(checkContains(trie, contactno1, "2368497"));

        final ContactNumber contactno2 = new ContactNumber(0, "Jason", "+65 9177-6930", "0", 1);
        trie.put(contactno2);

        assertTrue(checkContains(trie, contactno2, "6591776930"));
        assertTrue(checkContains(trie, contactno2, "91776930"));
        assertFalse(checkContains(trie, contactno2, "591776930"));

        final ContactNumber contactno3 = new ContactNumber(0, "Mike", "+85212345678", "0", 1);
        trie.put(contactno3);
        assertTrue(checkContains(trie, contactno3, "85212345678"));
        assertTrue(checkContains(trie, contactno3, "12345678"));
        assertFalse(checkContains(trie, contactno2, "5212345678"));

        // Invalid country code, don't try to parse it
        final ContactNumber contactno4 = new ContactNumber(0, "Invalid", "+85112345678", "0", 1);
        trie.put(contactno4);
        assertTrue(checkContains(trie, contactno4, "85112345678"));
        assertFalse(checkContains(trie, contactno4, "12345678"));

        final ContactNumber contactno5 = new ContactNumber(0, "Invalid", "+852", "0", 1);
        // Shouldn't crash
        trie.put(contactno5);
    }

    // Tests special case handling for NANP numbers
    public void testPutNumbersNANP() {

        final SmartDialTrie trie = new SmartDialTrie(true /* formatNanp */);
        // Unformatted number with 1 prefix
        final ContactNumber contactno1 = new ContactNumber(0, "James", "16503337596", "0", 1);
        trie.put(contactno1);

        assertTrue(checkContains(trie, contactno1, "16503337596"));
        assertTrue(checkContains(trie, contactno1, "6503337596"));
        assertTrue(checkContains(trie, contactno1, "3337596"));

        // Number with seperators
        final ContactNumber contactno2 = new ContactNumber(0, "Michael", "5109921234", "0", 1);
        trie.put(contactno2);
        assertTrue(checkContains(trie, contactno2, "5109921234"));
        assertTrue(checkContains(trie, contactno2, "9921234"));

        // Number with area code only + separators
        final ContactNumber contactno3 = new ContactNumber(0, "Jason", "(415)-123-4567", "0", 1);
        trie.put(contactno3);
        assertTrue(checkContains(trie, contactno3, "4151234567"));
        assertTrue(checkContains(trie, contactno3, "1234567"));

        // Number without +1 prefix but is a NANP number
        final ContactNumber contactno4 = new ContactNumber(0, "Mike", "1 510-284-9170", "0", 1);
        trie.put(contactno4);
        assertTrue(checkContains(trie, contactno4, "15102849170"));
        assertTrue(checkContains(trie, contactno4, "5102849170"));
        assertTrue(checkContains(trie, contactno4, "2849170"));

        // Invalid number(has 1 prefix, but is only 10 characters long)
        final ContactNumber contactno5 = new ContactNumber(0, "Invalid", "1-415-123-123", "0", 1);
        trie.put(contactno5);
        // It should still be inserted as is
        assertTrue(checkContains(trie, contactno5, "1415123123"));
        // But the NANP special case handling should not work
        assertFalse(checkContains(trie, contactno5, "415123123"));
        assertFalse(checkContains(trie, contactno5, "123123"));

        // Invalid number(only 9 characters long)
        final ContactNumber contactno6 = new ContactNumber(0, "Invalid2", "415-123-123", "0", 1);
        trie.put(contactno6);
        // It should still be inserted as is
        assertTrue(checkContains(trie, contactno6, "415123123"));
        // But the NANP special case handling should not work
        assertFalse(checkContains(trie, contactno6, "123123"));

        // If user's region is determined to be not in North America, then the NANP number
        // workarounds should not be applied
        final SmartDialTrie trieNonNANP = new SmartDialTrie();

        trieNonNANP.put(contactno3);
        assertTrue(checkContains(trieNonNANP, contactno3, "4151234567"));
        assertFalse(checkContains(trieNonNANP, contactno3, "1234567"));

        trieNonNANP.put(contactno4);
        assertTrue(checkContains(trieNonNANP, contactno4, "15102849170"));
        assertFalse(checkContains(trieNonNANP, contactno4, "5102849170"));
        assertFalse(checkContains(trieNonNANP, contactno4, "2849170"));
    }

    public void testNodeConstructor() {
        final Node n = new Node();
        // Node member variables should not be initialized by default at construction to reduce
        // unnecessary memory usage
        assertEquals(-1, n.getChildrenSize());
        assertNull(n.getChild(5, false));
        assertNull(n.getChild(0, false));
    }

    public void testNodeGetChild() {
        final Node n = new Node();
        // A node shouldn't contain children until getChild(index, true) is called
        assertEquals(-1, n.getChildrenSize());
        final Node child = n.getChild(1, true);
        // A node should always have 10 children once the child array is created
        assertEquals(10, n.getChildrenSize());
        // getChild(index, true) should never return null
        assertNotNull(child);
    }

    public void testNodeAddContact() {
        final Node n = new Node();
        assertNull(n.getContents());
        final ContactNumber contact = new ContactNumber(0, "James", "510-527-2357", "0", 1);
        final ContactNumber contactNotIn = new ContactNumber(2, "Jason Smitt", "0", "2", 3);
        n.add(contact);
        assertTrue(n.getContents().contains(contact));
        assertFalse(n.getContents().contains(contactNotIn));
    }

    private boolean checkContains(SmartDialTrie trie, ContactNumber contact, CharSequence prefix) {
        return trie.getAllWithPrefix(prefix).contains(contact);
    }
}