blob: 0b5fe618d4b0d840a63a339ae57366691e67e251 [file] [log] [blame]
/*
* Copyright (C) 2015 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.telecom.cts;
import static android.telecom.cts.TestUtils.shouldTestTelecom;
import android.telecom.cts.MockInCallService.InCallServiceCallbacks;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.telecom.Call;
import android.telecom.InCallService;
import android.test.InstrumentationTestCase;
import android.text.TextUtils;
import java.util.concurrent.TimeUnit;
/**
* Sanity test that adding a new call via the CALL intent works correctly.
*/
public class BasicInCallServiceTest extends InstrumentationTestCase {
private static final Uri TEST_NUMBER = Uri.fromParts("tel", "7", null);
private Context mContext;
private String mPreviousDefaultDialer = null;
@Override
protected void setUp() throws Exception {
super.setUp();
mContext = getInstrumentation().getContext();
mPreviousDefaultDialer = TestUtils.getDefaultDialer(getInstrumentation());
TestUtils.setDefaultDialer(getInstrumentation(), TestUtils.PACKAGE);
}
@Override
protected void tearDown() throws Exception {
if (!TextUtils.isEmpty(mPreviousDefaultDialer)) {
TestUtils.setDefaultDialer(getInstrumentation(), mPreviousDefaultDialer);
}
super.tearDown();
}
/**
* Tests that when sending a CALL intent via the Telecom -> Telephony stack, Telecom
* binds to the registered {@link InCallService}s and adds a new call. This test will
* actually place a phone call to the number 7. It should still pass even if there is no
* SIM card inserted.
*/
public void testTelephonyCall_bindsToInCallServiceAndAddsCall() {
if (!shouldTestTelecom(mContext)) {
return;
}
final Intent intent = new Intent(Intent.ACTION_CALL, TEST_NUMBER);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
final InCallServiceCallbacks callbacks = createCallbacks();
MockInCallService.setCallbacks(callbacks);
mContext.startActivity(intent);
try {
if (callbacks.lock.tryAcquire(3, TimeUnit.SECONDS)) {
return;
}
} catch (InterruptedException e) {
}
fail("No call added to InCallService.");
}
private MockInCallService.InCallServiceCallbacks createCallbacks() {
final InCallServiceCallbacks callbacks = new InCallServiceCallbacks() {
@Override
public void onCallAdded(Call call, int numCalls) {
assertEquals("InCallService should have 1 call after adding call", 1, numCalls);
call.disconnect();
lock.release();
}
};
return callbacks;
}
}