blob: 984fd6cfef42155862194230e41fd88a3c118938 [file] [log] [blame]
/*
* 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 android.permission.cts;
import android.content.ContentValues;
import android.provider.ContactsContract;
import android.test.AndroidTestCase;
import android.test.suitebuilder.annotation.SmallTest;
/**
* Verify permissions are enforced.
*/
public class ContactsProviderTest extends AndroidTestCase {
/**
* Verifies that query(ContactsContract.Contacts.CONTENT_URI) requires
* Permission.
* <p>
* Requires Permission: {@link android.Manifest.permission#READ_CONTACTS}.
*/
@SmallTest
public void testQueryContacts() {
try {
getContext().getContentResolver().query(ContactsContract.Contacts.CONTENT_URI,
null, null, null, null);
fail("query(ContactsContract.Contacts.CONTENT_URI) did not throw SecurityException"
+ " as expected");
} catch (SecurityException se) {
// Expected Exception
}
}
/**
* Verifies that insert(ContactsContract.Contacts.CONTENT_URI) requires
* Permission.
* <p>
* Requires Permission: {@link android.Manifest.permission#WRITE_CONTACTS}.
*/
@SmallTest
public void testInsertContacts() {
try {
getContext().getContentResolver().insert(ContactsContract.Contacts.CONTENT_URI,
new ContentValues());
fail("insert(ContactsContract.Contacts.CONTENT_URI) did not throw SecurityException"
+ " as expected");
} catch (SecurityException se) {
// Expected Exception
}
}
/**
* Verifies that query(ContactsContract.Profile.CONTENT_URI) requires
* Permission.
* <p>
* Requires Permission: {@link android.Manifest.permission#READ_CONTACTS}.
*/
@SmallTest
public void testQueryProfile() {
try {
getContext().getContentResolver().query(ContactsContract.Profile.CONTENT_URI,
null, null, null, null);
fail("query(ContactsContract.Profile.CONTENT_URI) did not throw SecurityException"
+ " as expected");
} catch (SecurityException se) {
// Expected Exception
}
}
/**
* Verifies that insert(ContactsContract.Profile.CONTENT_URI) requires
* Permission. The provider doesn't actually let you do this even if you have the
* permission, but trying to do it without the permission should throw a
* SecurityException anyway.
* <p>
* Requires Permission: {@link android.Manifest.permission#WRITE_CONTACTS}.
*/
@SmallTest
public void testInsertProfile() {
try {
getContext().getContentResolver().insert(ContactsContract.Profile.CONTENT_URI,
new ContentValues(0));
fail("insert(ContactsContract.Profile.CONTENT_URI) did not throw SecurityException "
+ "as expected");
} catch (SecurityException se) {
// Expected Exception
}
}
/**
* Verifies that update(ContactsContract.Profile.CONTENT_URI) requires
* Permission.
* <p>
* Requires Permission: {@link android.Manifest.permission#WRITE_CONTACTS}.
*/
@SmallTest
public void testUpdateProfile() {
try {
getContext().getContentResolver().update(ContactsContract.Profile.CONTENT_URI,
new ContentValues(0), null, null);
fail("update(ContactsContract.Profile.CONTENT_URI) did not throw SecurityException"
+ " as expected");
} catch (SecurityException se) {
// Expected Exception
}
}
/**
* Verifies that query(ContactsContract.CommonDataKinds.Phone.ENTERPRISE_CONTENT_URI) requires
* Permission.
* <p>
* Requires Permission: {@link android.Manifest.permission#INTERACT_ACROSS_USERS}.
*/
@SmallTest
public void testQueryPhoneEnterprise() {
try {
getContext().getContentResolver().query(
ContactsContract.CommonDataKinds.Phone.ENTERPRISE_CONTENT_URI,
null, null, null, null);
fail("query(ContactsContract.CommonDataKinds.Phone.ENTERPRISE_CONTENT_URI) did not"
+ " throw SecurityException as expected");
} catch (SecurityException se) {
// Expected Exception
}
}
/**
* Verifies that query(ContactsContract.RawContactsEntity.CORP_CONTENT_URI) requires
* Permission.
* <p>
* Requires Permission: {@link android.Manifest.permission#INTERACT_ACROSS_USERS}.
*/
@SmallTest
public void testRawContactsEntityCorp() {
try {
getContext().getContentResolver().query(
ContactsContract.RawContactsEntity.CORP_CONTENT_URI, null, null, null, null);
fail("query(ContactsContract.RawContactsEntity.CORP_CONTENT_URI) did not throw"
+ " SecurityException as expected");
} catch (SecurityException se) {
// Expected Exception
}
}
}