aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGrace Jia <xiaotonj@google.com>2020-09-27 17:03:59 -0700
committerGrace Jia <xiaotonj@google.com>2021-01-13 19:48:42 +0000
commitf757e180c1e8423460888ee6e170616c975c5126 (patch)
tree24eb9322733491e4fd267c130f3c40c8aec38927 /tests
parent2f1e244c7dee2231c29a14060cdaf526e6b276c8 (diff)
downloadContactsProvider-f757e180c1e8423460888ee6e170616c975c5126.tar.gz
Use new phone number match method in Java directly as a new filter in
ContactsProvider2. Change-Id: I4dceec842d624e3cd2a2dacbe3a69f5924fc30fc Bug: 174028667 Test: unit test
Diffstat (limited to 'tests')
-rw-r--r--tests/src/com/android/providers/contacts/ContactsProvider2Test.java32
1 files changed, 16 insertions, 16 deletions
diff --git a/tests/src/com/android/providers/contacts/ContactsProvider2Test.java b/tests/src/com/android/providers/contacts/ContactsProvider2Test.java
index d5643d25..7860b63d 100644
--- a/tests/src/com/android/providers/contacts/ContactsProvider2Test.java
+++ b/tests/src/com/android/providers/contacts/ContactsProvider2Test.java
@@ -1685,9 +1685,9 @@ public class ContactsProvider2Test extends BaseContactsProvider2Test {
assertStoredValues(lookupUri1, null, null, new ContentValues[] {values, values});
// In the context that 8004664411 is a valid number, "4664411" as a
- // call id should match to both "8004664411" and "+18004664411".
+ // call id should not match to either "8004664411" or "+18004664411".
Uri lookupUri2 = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, "4664411");
- assertEquals(2, getCount(lookupUri2, null, null));
+ assertEquals(0, getCount(lookupUri2, null, null));
// A wrong area code 799 vs 800 should not be matched
lookupUri2 = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, "7994664411");
@@ -1918,13 +1918,13 @@ public class ContactsProvider2Test extends BaseContactsProvider2Test {
values.clear();
- // match with international format
+ // No match with international format
lookupUri2 = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, "+1 650 861 0002");
- assertEquals(1, getCount(lookupUri2, null, null));
+ assertEquals(0, getCount(lookupUri2, null, null));
- // match with national format
+ // No match with national format
lookupUri2 = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, "650 861 0002");
- assertEquals(1, getCount(lookupUri2, null, null));
+ assertEquals(0, getCount(lookupUri2, null, null));
}
public void testIntlPhoneLookupUseCases() {
@@ -1943,20 +1943,20 @@ public class ContactsProvider2Test extends BaseContactsProvider2Test {
assertEquals(2, getCount(Uri.withAppendedPath(
PhoneLookup.CONTENT_FILTER_URI, fullNumber), null, null));
- // Shorter (local) number with 0 prefix should also match.
- assertEquals(2, getCount(Uri.withAppendedPath(
+ // Shorter (local) number with 0 prefix should not match.
+ assertEquals(0, getCount(Uri.withAppendedPath(
PhoneLookup.CONTENT_FILTER_URI, "097427289"), null, null));
// Number with international (+972) prefix should also match.
assertEquals(1, getCount(Uri.withAppendedPath(
PhoneLookup.CONTENT_FILTER_URI, "+97297427289"), null, null));
- // Same shorter number with dashes should match.
- assertEquals(2, getCount(Uri.withAppendedPath(
+ // Same shorter number with dashes should not match.
+ assertEquals(0, getCount(Uri.withAppendedPath(
PhoneLookup.CONTENT_FILTER_URI, "09-742-7289"), null, null));
- // Same shorter number with spaces should match.
- assertEquals(2, getCount(Uri.withAppendedPath(
+ // Same shorter number with spaces should not match.
+ assertEquals(0, getCount(Uri.withAppendedPath(
PhoneLookup.CONTENT_FILTER_URI, "09 742 7289"), null, null));
// Some other number should not match.
@@ -1978,16 +1978,16 @@ public class ContactsProvider2Test extends BaseContactsProvider2Test {
assertEquals(1, getCount(Uri.withAppendedPath(
PhoneLookup.CONTENT_FILTER_URI, "0796010101"), null, null));
- assertEquals(1, getCount(Uri.withAppendedPath(
+ assertEquals(0, getCount(Uri.withAppendedPath(
PhoneLookup.CONTENT_FILTER_URI, "+48796010101"), null, null));
- assertEquals(1, getCount(Uri.withAppendedPath(
+ assertEquals(0, getCount(Uri.withAppendedPath(
PhoneLookup.CONTENT_FILTER_URI, "48796010101"), null, null));
- assertEquals(1, getCount(Uri.withAppendedPath(
+ assertEquals(0, getCount(Uri.withAppendedPath(
PhoneLookup.CONTENT_FILTER_URI, "4-879-601-0101"), null, null));
- assertEquals(1, getCount(Uri.withAppendedPath(
+ assertEquals(0, getCount(Uri.withAppendedPath(
PhoneLookup.CONTENT_FILTER_URI, "4 879 601 0101"), null, null));
}