blob: 88d5f1c22fac40fc28438ea96b1be42992428da8 [file] [log] [blame]
/*
* Copyright (C) 2009 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.Intent;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.test.AndroidTestCase;
import android.test.suitebuilder.annotation.SmallTest;
/**
* Verify Phone calling related methods without specific Phone/Call permissions.
*/
public class NoCallPermissionTest extends AndroidTestCase {
/**
* Verify that Intent.ACTION_CALL requires permissions.
* <p>Requires Permission:
* {@link android.Manifest.permission#CALL_PHONE}.
*/
@SmallTest
public void testActionCall() {
PackageManager packageManager = getContext().getPackageManager();
if (packageManager.hasSystemFeature(PackageManager.FEATURE_TELEPHONY)) {
Uri uri = Uri.parse("tel:123456");
Intent intent = new Intent(Intent.ACTION_CALL, uri);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
try {
mContext.startActivity(intent);
fail("startActivity(Intent.ACTION_CALL) did not throw SecurityException as expected");
} catch (SecurityException e) {
// expected
}
}
}
/**
* Verify that Intent.ACTION_CALL_PRIVILEGED requires permissions.
* <p>Requires Permission:
* {@link android.Manifest.permission#CALL_PRIVILEGED}.
*/
@SmallTest
public void testCallVoicemail() {
PackageManager packageManager = getContext().getPackageManager();
if (packageManager.hasSystemFeature(PackageManager.FEATURE_TELEPHONY)) {
try {
//Intent intent = new Intent(Intent.ACTION_CALL_PRIVILEGED,
Intent intent = new Intent("android.intent.action.CALL_PRIVILEGED",
Uri.fromParts("voicemail", "", null));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
mContext.startActivity(intent);
fail("startActivity(Intent.ACTION_CALL_PRIVILEGED) did not throw SecurityException as expected");
} catch (SecurityException e) {
// expected
}
}
}
/**
* Verify that Intent.ACTION_CALL_PRIVILEGED requires permissions.
* <p>Requires Permission:
* {@link android.Manifest.permission#CALL_PRIVILEGED}.
*/
@SmallTest
public void testCall911() {
PackageManager packageManager = getContext().getPackageManager();
if (packageManager.hasSystemFeature(PackageManager.FEATURE_TELEPHONY)) {
//Intent intent = new Intent(Intent.ACTION_CALL_PRIVILEGED, Uri.parse("tel:911"));
Intent intent = new Intent("android.intent.action.CALL_PRIVILEGED",
Uri.parse("tel:911"));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
try {
mContext.startActivity(intent);
fail("startActivity(Intent.ACTION_CALL_PRIVILEGED) did not throw " +
"SecurityException as expected");
} catch (SecurityException e) {
// expected
}
}
}
}