blob: fbb270d7b2fa3c7cdf1df23c5fce71e4a4bbe4d0 [file] [log] [blame]
/*
* Copyright (C) 2020 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.services.telephony.rcs;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.fail;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyInt;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import android.telephony.AccessNetworkConstants;
import android.telephony.ims.ImsException;
import android.telephony.ims.ImsReasonInfo;
import android.telephony.ims.RegistrationManager;
import android.telephony.ims.aidl.IImsCapabilityCallback;
import android.telephony.ims.aidl.IImsRegistrationCallback;
import android.telephony.ims.feature.RcsFeature;
import android.telephony.ims.stub.ImsRegistrationImplBase;
import androidx.test.runner.AndroidJUnit4;
import com.android.TelephonyTestBase;
import com.android.ims.FeatureConnector;
import com.android.ims.RcsFeatureManager;
import com.android.internal.telephony.imsphone.ImsRegistrationCallbackHelper;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.ArgumentCaptor;
import org.mockito.Captor;
import org.mockito.Mock;
import java.util.concurrent.Executor;
@RunWith(AndroidJUnit4.class)
public class RcsFeatureControllerTest extends TelephonyTestBase {
private static final ImsReasonInfo REASON_DISCONNECTED = new ImsReasonInfo(
ImsReasonInfo.CODE_LOCAL_IMS_SERVICE_DOWN, 0, "test");
@Mock RcsFeatureManager mFeatureManager;
@Mock RcsFeatureController.FeatureConnectorFactory<RcsFeatureManager> mFeatureFactory;
@Mock ImsRegistrationCallbackHelper.ImsRegistrationUpdate mRegistrationCallback;
@Mock FeatureConnector<RcsFeatureManager> mFeatureConnector;
@Mock RcsFeatureController.Feature mMockFeature;
@Captor ArgumentCaptor<FeatureConnector.Listener<RcsFeatureManager>> mConnectorListener;
private RcsFeatureController.RegistrationHelperFactory mRegistrationFactory =
new RcsFeatureController.RegistrationHelperFactory() {
@Override
public ImsRegistrationCallbackHelper create(
ImsRegistrationCallbackHelper.ImsRegistrationUpdate cb, Executor executor) {
// Run on current thread for testing.
return new ImsRegistrationCallbackHelper(mRegistrationCallback, Runnable::run);
}
};
@Before
public void setUp() throws Exception {
super.setUp();
}
@After
public void tearDown() throws Exception {
super.tearDown();
}
@Test
public void testRcsFeatureManagerConnectDisconnect() throws Exception {
RcsFeatureController controller = createFeatureController();
controller.addFeature(mMockFeature, RcsFeatureController.Feature.class);
verify(mMockFeature).onRcsDisconnected();
// Connect the RcsFeatureManager
mConnectorListener.getValue().connectionReady(mFeatureManager);
verify(mFeatureManager).updateCapabilities();
verify(mFeatureManager).registerImsRegistrationCallback(any());
verify(mMockFeature).onRcsConnected(mFeatureManager);
// Disconnect
mConnectorListener.getValue().connectionUnavailable();
verify(mFeatureManager).unregisterImsRegistrationCallback(any());
verify(mMockFeature, times(2)).onRcsDisconnected();
}
@Test
public void testFeatureManagerConnectedAddRemoveFeature() throws Exception {
RcsFeatureController controller = createFeatureController();
// Connect the RcsFeatureManager
mConnectorListener.getValue().connectionReady(mFeatureManager);
controller.addFeature(mMockFeature, RcsFeatureController.Feature.class);
verify(mMockFeature).onRcsConnected(mFeatureManager);
assertEquals(mMockFeature, controller.getFeature(RcsFeatureController.Feature.class));
controller.removeFeature(RcsFeatureController.Feature.class);
verify(mMockFeature).onDestroy();
assertNull(controller.getFeature(RcsFeatureController.Feature.class));
}
@Test
public void testFeatureManagerConnectedRegister() throws Exception {
RcsFeatureController controller = createFeatureController();
IImsRegistrationCallback regCb = mock(IImsRegistrationCallback.class);
IImsCapabilityCallback capCb = mock(IImsCapabilityCallback.class);
// Connect the RcsFeatureManager
mConnectorListener.getValue().connectionReady(mFeatureManager);
try {
controller.registerImsRegistrationCallback(0 /*subId*/, regCb);
controller.registerRcsAvailabilityCallback(0 /*subId*/, capCb);
controller.isCapable(RcsFeature.RcsImsCapabilities.CAPABILITY_TYPE_PRESENCE_UCE,
ImsRegistrationImplBase.REGISTRATION_TECH_LTE);
controller.isAvailable(RcsFeature.RcsImsCapabilities.CAPABILITY_TYPE_PRESENCE_UCE);
controller.getRegistrationTech(integer -> {
});
verify(mFeatureManager).registerImsRegistrationCallback(0, regCb);
verify(mFeatureManager).registerRcsAvailabilityCallback(0, capCb);
verify(mFeatureManager).isCapable(
RcsFeature.RcsImsCapabilities.CAPABILITY_TYPE_PRESENCE_UCE,
ImsRegistrationImplBase.REGISTRATION_TECH_LTE);
verify(mFeatureManager).isAvailable(
RcsFeature.RcsImsCapabilities.CAPABILITY_TYPE_PRESENCE_UCE);
verify(mFeatureManager).getImsRegistrationTech(any());
} catch (ImsException e) {
fail("ImsException not expected.");
}
controller.unregisterImsRegistrationCallback(0, regCb);
controller.unregisterRcsAvailabilityCallback(0, capCb);
verify(mFeatureManager).unregisterImsRegistrationCallback(0, regCb);
verify(mFeatureManager).unregisterRcsAvailabilityCallback(0, capCb);
}
@Test
public void testFeatureManagerConnectedHelper() throws Exception {
RcsFeatureController controller = createFeatureController();
// Connect the RcsFeatureManager
mConnectorListener.getValue().connectionReady(mFeatureManager);
ArgumentCaptor<IImsRegistrationCallback> captor =
ArgumentCaptor.forClass(IImsRegistrationCallback.class);
verify(mFeatureManager).registerImsRegistrationCallback(captor.capture());
assertNotNull(captor.getValue());
captor.getValue().onDeregistered(REASON_DISCONNECTED);
controller.getRegistrationState(result -> {
assertNotNull(result);
assertEquals(RegistrationManager.REGISTRATION_STATE_NOT_REGISTERED, result.intValue());
});
verify(mRegistrationCallback).handleImsUnregistered(REASON_DISCONNECTED);
captor.getValue().onRegistering(ImsRegistrationImplBase.REGISTRATION_TECH_LTE);
controller.getRegistrationState(result -> {
assertNotNull(result);
assertEquals(RegistrationManager.REGISTRATION_STATE_REGISTERING, result.intValue());
});
verify(mRegistrationCallback).handleImsRegistering(
AccessNetworkConstants.TRANSPORT_TYPE_WWAN);
captor.getValue().onRegistered(ImsRegistrationImplBase.REGISTRATION_TECH_LTE);
controller.getRegistrationState(result -> {
assertNotNull(result);
assertEquals(RegistrationManager.REGISTRATION_STATE_REGISTERED, result.intValue());
});
verify(mRegistrationCallback).handleImsRegistered(
AccessNetworkConstants.TRANSPORT_TYPE_WWAN);
}
@Test
public void testFeatureManagerDisconnectedAddFeature() {
RcsFeatureController controller = createFeatureController();
// Disconnect the RcsFeatureManager
mConnectorListener.getValue().connectionUnavailable();
controller.addFeature(mMockFeature, RcsFeatureController.Feature.class);
verify(mMockFeature).onRcsDisconnected();
}
@Test
public void testFeatureManagerDisconnectedException() {
RcsFeatureController controller = createFeatureController();
IImsRegistrationCallback regCb = mock(IImsRegistrationCallback.class);
IImsCapabilityCallback capCb = mock(IImsCapabilityCallback.class);
// Disconnect the RcsFeatureManager
mConnectorListener.getValue().connectionUnavailable();
try {
controller.registerImsRegistrationCallback(0 /*subId*/, null /*callback*/);
fail("ImsException expected for IMS registration.");
} catch (ImsException e) {
//expected
}
try {
controller.registerRcsAvailabilityCallback(0 /*subId*/, null /*callback*/);
fail("ImsException expected for availability");
} catch (ImsException e) {
//expected
}
try {
controller.isCapable(RcsFeature.RcsImsCapabilities.CAPABILITY_TYPE_PRESENCE_UCE,
ImsRegistrationImplBase.REGISTRATION_TECH_LTE);
fail("ImsException expected for capability check");
} catch (ImsException e) {
//expected
}
try {
controller.isAvailable(RcsFeature.RcsImsCapabilities.CAPABILITY_TYPE_PRESENCE_UCE);
fail("ImsException expected for availability check");
} catch (ImsException e) {
//expected
}
controller.getRegistrationTech(integer -> {
assertNotNull(integer);
assertEquals(ImsRegistrationImplBase.REGISTRATION_TECH_NONE, integer.intValue());
});
controller.unregisterImsRegistrationCallback(0, regCb);
controller.unregisterRcsAvailabilityCallback(0, capCb);
verify(mFeatureManager, never()).unregisterImsRegistrationCallback(0, regCb);
verify(mFeatureManager, never()).unregisterRcsAvailabilityCallback(0, capCb);
}
@Test
public void testChangeSubId() throws Exception {
RcsFeatureController controller = createFeatureController();
// Connect the RcsFeatureManager
mConnectorListener.getValue().connectionReady(mFeatureManager);
verify(mFeatureManager).updateCapabilities();
controller.addFeature(mMockFeature, RcsFeatureController.Feature.class);
controller.updateAssociatedSubscription(1 /*new sub id*/);
verify(mFeatureManager, times(2)).updateCapabilities();
verify(mMockFeature).onAssociatedSubscriptionUpdated(1 /*new sub id*/);
}
@Test
public void testDestroy() throws Exception {
RcsFeatureController controller = createFeatureController();
// Connect the RcsFeatureManager
mConnectorListener.getValue().connectionReady(mFeatureManager);
controller.addFeature(mMockFeature, RcsFeatureController.Feature.class);
controller.destroy();
verify(mFeatureConnector).disconnect();
verify(mMockFeature).onRcsDisconnected();
verify(mMockFeature).onDestroy();
assertNull(controller.getFeature(RcsFeatureController.Feature.class));
}
private RcsFeatureController createFeatureController() {
RcsFeatureController controller = new RcsFeatureController(mContext, 0 /*slotId*/,
mRegistrationFactory);
controller.setFeatureConnectorFactory(mFeatureFactory);
doReturn(mFeatureConnector).when(mFeatureFactory).create(any(), anyInt(),
mConnectorListener.capture(), any(), any());
controller.connect();
assertNotNull(mConnectorListener.getValue());
return controller;
}
}