blob: 772905b658169a21484bd117b040aa2f73fedf52 [file] [log] [blame]
/*
* Copyright (C) 2016 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.internal.telephony.dataconnection;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.ContentResolver;
import android.content.Context;
import android.content.Intent;
import android.database.Cursor;
import android.database.MatrixCursor;
import android.net.LinkProperties;
import android.net.NetworkCapabilities;
import android.net.NetworkRequest;
import android.net.Uri;
import android.os.HandlerThread;
import android.os.IBinder;
import android.os.Message;
import android.os.PersistableBundle;
import android.provider.Settings;
import android.provider.Telephony;
import android.telephony.CarrierConfigManager;
import android.telephony.ServiceState;
import android.telephony.SubscriptionInfo;
import android.telephony.SubscriptionManager;
import android.test.mock.MockContentProvider;
import android.test.mock.MockContentResolver;
import android.test.suitebuilder.annotation.MediumTest;
import android.util.LocalLog;
import com.android.internal.telephony.DctConstants;
import com.android.internal.telephony.ISub;
import com.android.internal.telephony.Phone;
import com.android.internal.telephony.PhoneConstants;
import com.android.internal.telephony.TelephonyTest;
import com.android.internal.telephony.TestApplication;
import com.android.internal.telephony.dataconnection.DcTracker.DataAllowFailReason;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.mockito.ArgumentCaptor;
import org.mockito.Mock;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.stubbing.Answer;
import java.lang.reflect.Method;
import java.util.Arrays;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import static com.android.internal.telephony.TelephonyTestUtils.waitForMs;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.mockito.Matchers.any;
import static org.mockito.Matchers.anyInt;
import static org.mockito.Matchers.anyLong;
import static org.mockito.Matchers.anyString;
import static org.mockito.Matchers.eq;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.doAnswer;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
public class DcTrackerTest extends TelephonyTest {
private final static String[] sNetworkAttributes = new String[]{
"mobile,0,0,0,-1,true", "mobile_mms,2,0,2,60000,true",
"mobile_supl,3,0,2,60000,true", "mobile_dun,4,0,2,60000,true",
"mobile_hipri,5,0,3,60000,true", "mobile_fota,10,0,2,60000,true",
"mobile_ims,11,0,2,60000,true", "mobile_cbs,12,0,2,60000,true",
"mobile_ia,14,0,2,-1,true", "mobile_emergency,15,0,2,-1,true"};
private final static List<String> sApnTypes = Arrays.asList(
"default", "mms", "cbs", "fota", "supl", "ia", "emergency", "dun", "hipri", "ims");
private static final String FAKE_APN1 = "FAKE APN 1";
private static final String FAKE_APN2 = "FAKE APN 2";
private static final String FAKE_APN3 = "FAKE APN 3";
private static final String FAKE_IFNAME = "FAKE IFNAME";
private static final String FAKE_PCSCF_ADDRESS = "22.33.44.55";
private static final String FAKE_GATEWAY = "11.22.33.44";
private static final String FAKE_DNS = "55.66.77.88";
private static final String FAKE_ADDRESS = "99.88.77.66";
@Mock
ISub mIsub;
@Mock
IBinder mBinder;
@Mock
NetworkRequest mNetworkRequest;
@Mock
SubscriptionInfo mSubscriptionInfo;
private DcTracker mDct;
private AlarmManager mAlarmManager;
private PersistableBundle mBundle;
private SubscriptionManager.OnSubscriptionsChangedListener mOnSubscriptionsChangedListener;
private final ApnSettingContentProvider mApnSettingContentProvider =
new ApnSettingContentProvider();
private class DcTrackerTestHandler extends HandlerThread {
private DcTrackerTestHandler(String name) {
super(name);
}
@Override
public void onLooperPrepared() {
mDct = new DcTracker(mPhone);
setReady(true);
}
}
private class ApnSettingContentProvider extends MockContentProvider {
@Override
public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
String sortOrder) {
logd("ApnSettingContentProvider: query");
logd(" uri = " + uri);
logd(" projection = " + Arrays.toString(projection));
logd(" selection = " + selection);
logd(" selectionArgs = " + Arrays.toString(selectionArgs));
logd(" sortOrder = " + sortOrder);
if (uri.compareTo(Telephony.Carriers.CONTENT_URI) == 0) {
if (projection == null && selectionArgs == null && selection != null) {
Pattern pattern = Pattern.compile("^numeric = '([0-9]*)'");
Matcher matcher = pattern.matcher(selection);
if (!matcher.find()) {
logd("Cannot find MCC/MNC from " + selection);
return null;
}
String plmn = matcher.group(1);
logd("Query '" + plmn + "' APN settings");
MatrixCursor mc = new MatrixCursor(
new String[]{Telephony.Carriers._ID, Telephony.Carriers.NUMERIC,
Telephony.Carriers.NAME, Telephony.Carriers.APN,
Telephony.Carriers.PROXY, Telephony.Carriers.PORT,
Telephony.Carriers.MMSC, Telephony.Carriers.MMSPROXY,
Telephony.Carriers.MMSPORT, Telephony.Carriers.USER,
Telephony.Carriers.PASSWORD, Telephony.Carriers.AUTH_TYPE,
Telephony.Carriers.TYPE,
Telephony.Carriers.PROTOCOL,
Telephony.Carriers.ROAMING_PROTOCOL,
Telephony.Carriers.CARRIER_ENABLED, Telephony.Carriers.BEARER,
Telephony.Carriers.BEARER_BITMASK,
Telephony.Carriers.PROFILE_ID,
Telephony.Carriers.MODEM_COGNITIVE,
Telephony.Carriers.MAX_CONNS, Telephony.Carriers.WAIT_TIME,
Telephony.Carriers.MAX_CONNS_TIME, Telephony.Carriers.MTU,
Telephony.Carriers.MVNO_TYPE,
Telephony.Carriers.MVNO_MATCH_DATA});
mc.addRow(new Object[]{
2163, // id
plmn, // numeric
"sp-mode", // name
FAKE_APN1, // apn
"", // proxy
"", // port
"", // mmsc
"", // mmsproxy
"", // mmsport
"", // user
"", // password
-1, // authtype
"default,supl", // types
"IP", // protocol
"IP", // roaming_protocol
1, // carrier_enabled
0, // bearer
0, // bearer_bitmask
0, // profile_id
0, // modem_cognitive
0, // max_conns
0, // wait_time
0, // max_conns_time
0, // mtu
"", // mvno_type
"" // mnvo_match_data
});
mc.addRow(new Object[]{
2164, // id
plmn, // numeric
"mopera U", // name
FAKE_APN2, // apn
"", // proxy
"", // port
"", // mmsc
"", // mmsproxy
"", // mmsport
"", // user
"", // password
-1, // authtype
"default,supl", // types
"IP", // protocol
"IP", // roaming_protocol
1, // carrier_enabled
0, // bearer
0, // bearer_bitmask
0, // profile_id
0, // modem_cognitive
0, // max_conns
0, // wait_time
0, // max_conns_time
0, // mtu
"", // mvno_type
"" // mnvo_match_data
});
mc.addRow(new Object[]{
2165, // id
plmn, // numeric
"b-mobile for Nexus", // name
FAKE_APN3, // apn
"", // proxy
"", // port
"", // mmsc
"", // mmsproxy
"", // mmsport
"", // user
"", // password
3, // authtype
"ims", // types
"IP", // protocol
"IP", // roaming_protocol
1, // carrier_enabled
0, // bearer
0, // bearer_bitmask
0, // profile_id
0, // modem_cognitive
0, // max_conns
0, // wait_time
0, // max_conns_time
0, // mtu
"", // mvno_type
"" // mnvo_match_data
});
return mc;
}
}
return null;
}
}
@Before
public void setUp() throws Exception {
// set the lazy cp to the real content provider in order to use the real settings
ContentResolver realContentResolver = TestApplication.getAppContext().getContentResolver();
Settings.Global.getInt(realContentResolver, Settings.Global.MOBILE_DATA, 1);
logd("DcTrackerTest +Setup!");
super.setUp(getClass().getSimpleName());
doReturn("fake.action_detached").when(mPhone).getActionDetached();
doReturn("fake.action_attached").when(mPhone).getActionAttached();
doReturn("44010").when(mSimRecords).getOperatorNumeric();
mContextFixture.putStringArrayResource(com.android.internal.R.array.networkAttributes,
sNetworkAttributes);
mContextFixture.putStringArrayResource(com.android.internal.R.array.
config_mobile_tcp_buffers, new String[]{
"umts:131072,262144,1452032,4096,16384,399360",
"hspa:131072,262144,2441216,4096,16384,399360",
"hsupa:131072,262144,2441216,4096,16384,399360",
"hsdpa:131072,262144,2441216,4096,16384,399360",
"hspap:131072,262144,2441216,4096,16384,399360",
"edge:16384,32768,131072,4096,16384,65536",
"gprs:4096,8192,24576,4096,8192,24576",
"1xrtt:16384,32768,131070,4096,16384,102400",
"evdo:131072,262144,1048576,4096,16384,524288",
"lte:524288,1048576,8388608,262144,524288,4194304"});
((MockContentResolver) mContext.getContentResolver()).addProvider(
Telephony.Carriers.CONTENT_URI.getAuthority(), mApnSettingContentProvider);
doReturn(true).when(mSimRecords).getRecordsLoaded();
doReturn(PhoneConstants.State.IDLE).when(mCT).getState();
doReturn(true).when(mSST).getDesiredPowerState();
doAnswer(
new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) throws Throwable {
mOnSubscriptionsChangedListener =
(SubscriptionManager.OnSubscriptionsChangedListener)
invocation.getArguments()[0];
return null;
}
}
).when(mSubscriptionManager).addOnSubscriptionsChangedListener(any());
doReturn(mSubscriptionInfo).when(mSubscriptionManager).getActiveSubscriptionInfo(anyInt());
doReturn(1).when(mIsub).getDefaultDataSubId();
doReturn(mIsub).when(mBinder).queryLocalInterface(anyString());
mServiceManagerMockedServices.put("isub", mBinder);
mContextFixture.putStringArrayResource(
com.android.internal.R.array.config_cell_retries_per_error_code,
new String[]{"36,2"});
mAlarmManager = (AlarmManager) mContext.getSystemService(Context.ALARM_SERVICE);
mBundle = mContextFixture.getCarrierConfigBundle();
new DcTrackerTestHandler(getClass().getSimpleName()).start();
waitUntilReady();
waitForMs(600);
logd("DcTrackerTest -Setup!");
}
@After
public void tearDown() throws Exception {
logd("DcTrackerTest -tearDown");
mDct.removeCallbacksAndMessages(null);
mDct = null;
super.tearDown();
}
// Create a successful data response
public static DataCallResponse createDataCallResponse() {
DataCallResponse dcResponse = new DataCallResponse();
dcResponse.version = 11;
dcResponse.status = 0;
dcResponse.suggestedRetryTime = -1; // No retry suggested by the modem
dcResponse.cid = 1;
dcResponse.active = 2;
dcResponse.type = "IP";
dcResponse.ifname = FAKE_IFNAME;
dcResponse.mtu = 1440;
dcResponse.addresses = new String[]{FAKE_ADDRESS};
dcResponse.dnses = new String[]{FAKE_DNS};
dcResponse.gateways = new String[]{FAKE_GATEWAY};
dcResponse.pcscf = new String[]{FAKE_PCSCF_ADDRESS};
return dcResponse;
}
private void verifyDataConnected(final String apnSetting) {
verify(mPhone, times(1)).notifyDataConnection(eq(Phone.REASON_CONNECTED),
eq(PhoneConstants.APN_TYPE_DEFAULT));
verify(mAlarmManager, times(1)).set(eq(AlarmManager.ELAPSED_REALTIME_WAKEUP), anyLong(),
any(PendingIntent.class));
assertEquals(apnSetting, mDct.getActiveApnString(PhoneConstants.APN_TYPE_DEFAULT));
assertArrayEquals(new String[]{PhoneConstants.APN_TYPE_DEFAULT}, mDct.getActiveApnTypes());
assertTrue(mDct.getAnyDataEnabled());
assertEquals(DctConstants.State.CONNECTED, mDct.getOverallState());
assertEquals(DctConstants.State.CONNECTED, mDct.getState(PhoneConstants.APN_TYPE_DEFAULT));
LinkProperties linkProperties = mDct.getLinkProperties(PhoneConstants.APN_TYPE_DEFAULT);
assertEquals(FAKE_IFNAME, linkProperties.getInterfaceName());
assertEquals(1, linkProperties.getAddresses().size());
assertEquals(FAKE_ADDRESS, linkProperties.getAddresses().get(0).getHostAddress());
assertEquals(1, linkProperties.getDnsServers().size());
assertEquals(FAKE_DNS, linkProperties.getDnsServers().get(0).getHostAddress());
assertEquals(FAKE_GATEWAY, linkProperties.getRoutes().get(0).getGateway().getHostAddress());
}
private boolean isDataAllowed(DataAllowFailReason dataAllowFailReasons) {
try {
Method method = DcTracker.class.getDeclaredMethod("isDataAllowed",
DataAllowFailReason.class);
method.setAccessible(true);
return (boolean) method.invoke(mDct, dataAllowFailReasons);
} catch (Exception e) {
fail(e.toString());
return false;
}
}
// Test the normal data call setup scenario.
@Test
@MediumTest
public void testDataSetup() {
mDct.setDataEnabled(true);
mSimulatedCommands.setDataCallResponse(true, createDataCallResponse());
DataAllowFailReason failureReason = new DataAllowFailReason();
boolean allowed = isDataAllowed(failureReason);
assertFalse(failureReason.getDataAllowFailReason(), allowed);
logd("Sending EVENT_RECORDS_LOADED");
mDct.sendMessage(mDct.obtainMessage(DctConstants.EVENT_RECORDS_LOADED, null));
waitForMs(200);
ArgumentCaptor<String> apnTypeArgumentCaptor = ArgumentCaptor.forClass(String.class);
verify(mPhone, times(sNetworkAttributes.length)).notifyDataConnection(
eq(Phone.REASON_SIM_LOADED), apnTypeArgumentCaptor.capture(),
eq(PhoneConstants.DataState.DISCONNECTED));
assertEquals(sApnTypes, apnTypeArgumentCaptor.getAllValues());
logd("Sending EVENT_DATA_CONNECTION_ATTACHED");
mDct.sendMessage(mDct.obtainMessage(DctConstants.EVENT_DATA_CONNECTION_ATTACHED, null));
waitForMs(200);
apnTypeArgumentCaptor = ArgumentCaptor.forClass(String.class);
verify(mPhone, times(sNetworkAttributes.length)).notifyDataConnection(
eq(Phone.REASON_DATA_ATTACHED), apnTypeArgumentCaptor.capture(),
eq(PhoneConstants.DataState.DISCONNECTED));
assertEquals(sApnTypes, apnTypeArgumentCaptor.getAllValues());
apnTypeArgumentCaptor = ArgumentCaptor.forClass(String.class);
verify(mPhone, times(sNetworkAttributes.length)).notifyDataConnection(
eq(Phone.REASON_DATA_ENABLED), apnTypeArgumentCaptor.capture(),
eq(PhoneConstants.DataState.DISCONNECTED));
assertEquals(sApnTypes, apnTypeArgumentCaptor.getAllValues());
logd("Sending EVENT_ENABLE_NEW_APN");
// APN id 0 is APN_TYPE_DEFAULT
mDct.setEnabled(0, true);
waitForMs(200);
failureReason.clearAllReasons();
allowed = isDataAllowed(failureReason);
assertTrue(failureReason.getDataAllowFailReason(), allowed);
// Verify if RIL command was sent properly.
verify(mSimulatedCommandsVerifier, times(1)).setupDataCall(
eq(ServiceState.RIL_RADIO_TECHNOLOGY_UMTS), eq(0), eq(FAKE_APN1),
eq(""), eq(""), eq(0), eq("IP"), any(Message.class));
verifyDataConnected(FAKE_APN1);
}
// Test the scenario where the first data call setup is failed, and then retry the setup later.
@Test
@MediumTest
public void testDataRetry() {
mDct.setDataEnabled(true);
DataCallResponse dcResponse = createDataCallResponse();
// LOST_CONNECTION(0x10004) is a non-permanent failure, so we'll retry data setup later.
dcResponse.status = 0x10004;
// Simulate RIL fails the data call setup
mSimulatedCommands.setDataCallResponse(false, dcResponse);
DataAllowFailReason failureReason = new DataAllowFailReason();
boolean allowed = isDataAllowed(failureReason);
assertFalse(failureReason.getDataAllowFailReason(), allowed);
logd("Sending EVENT_RECORDS_LOADED");
mDct.sendMessage(mDct.obtainMessage(DctConstants.EVENT_RECORDS_LOADED, null));
waitForMs(200);
ArgumentCaptor<String> apnTypeArgumentCaptor = ArgumentCaptor.forClass(String.class);
verify(mPhone, times(sNetworkAttributes.length)).notifyDataConnection(
eq(Phone.REASON_SIM_LOADED), apnTypeArgumentCaptor.capture(),
eq(PhoneConstants.DataState.DISCONNECTED));
assertEquals(sApnTypes, apnTypeArgumentCaptor.getAllValues());
logd("Sending EVENT_DATA_CONNECTION_ATTACHED");
mDct.sendMessage(mDct.obtainMessage(DctConstants.EVENT_DATA_CONNECTION_ATTACHED, null));
waitForMs(200);
apnTypeArgumentCaptor = ArgumentCaptor.forClass(String.class);
verify(mPhone, times(sNetworkAttributes.length)).notifyDataConnection(
eq(Phone.REASON_DATA_ATTACHED), apnTypeArgumentCaptor.capture(),
eq(PhoneConstants.DataState.DISCONNECTED));
assertEquals(sApnTypes, apnTypeArgumentCaptor.getAllValues());
apnTypeArgumentCaptor = ArgumentCaptor.forClass(String.class);
verify(mPhone, times(sNetworkAttributes.length)).notifyDataConnection(
eq(Phone.REASON_DATA_ENABLED), apnTypeArgumentCaptor.capture(),
eq(PhoneConstants.DataState.DISCONNECTED));
assertEquals(sApnTypes, apnTypeArgumentCaptor.getAllValues());
logd("Sending EVENT_ENABLE_NEW_APN");
// APN id 0 is APN_TYPE_DEFAULT
mDct.setEnabled(0, true);
waitForMs(200);
failureReason.clearAllReasons();
allowed = isDataAllowed(failureReason);
assertTrue(failureReason.getDataAllowFailReason(), allowed);
// Verify if RIL command was sent properly.
verify(mSimulatedCommandsVerifier, times(1)).setupDataCall(
eq(ServiceState.RIL_RADIO_TECHNOLOGY_UMTS), eq(0), eq(FAKE_APN1),
eq(""), eq(""), eq(0), eq("IP"), any(Message.class));
// Make sure we never notify connected because the data call setup is supposed to fail.
verify(mPhone, never()).notifyDataConnection(eq(Phone.REASON_CONNECTED),
eq(PhoneConstants.APN_TYPE_DEFAULT));
// Verify the retry manger schedule another data call setup.
verify(mAlarmManager, times(1)).setExact(eq(AlarmManager.ELAPSED_REALTIME_WAKEUP),
anyLong(), any(PendingIntent.class));
// This time we'll let RIL command succeed.
mSimulatedCommands.setDataCallResponse(true, createDataCallResponse());
// Simulate the timer expires.
Intent intent = new Intent("com.android.internal.telephony.data-reconnect.default");
intent.putExtra("reconnect_alarm_extra_type", PhoneConstants.APN_TYPE_DEFAULT);
intent.putExtra(PhoneConstants.SUBSCRIPTION_KEY, 0);
intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
mContext.sendBroadcast(intent);
waitForMs(200);
// Verify if RIL command was sent properly.
verify(mSimulatedCommandsVerifier, times(1)).setupDataCall(
eq(ServiceState.RIL_RADIO_TECHNOLOGY_UMTS), eq(0), eq(FAKE_APN2),
eq(""), eq(""), eq(0), eq("IP"), any(Message.class));
// Verify connected with APN2 setting.
verifyDataConnected(FAKE_APN2);
}
@Test
@MediumTest
public void testUserDisableData() throws Exception {
//step 1: setup two DataCalls one for Metered: default, another one for Non-metered: IMS
//set Default and MMS to be metered in the CarrierConfigManager
boolean dataEnabled = mDct.getDataEnabled();
mBundle.putStringArray(CarrierConfigManager.KEY_CARRIER_METERED_APN_TYPES_STRINGS,
new String[]{PhoneConstants.APN_TYPE_DEFAULT, PhoneConstants.APN_TYPE_MMS});
mDct.setEnabled(5, true);
mDct.setEnabled(0, true);
logd("Sending EVENT_RECORDS_LOADED");
mDct.sendMessage(mDct.obtainMessage(DctConstants.EVENT_RECORDS_LOADED, null));
waitForMs(200);
logd("Sending EVENT_DATA_CONNECTION_ATTACHED");
mDct.sendMessage(mDct.obtainMessage(DctConstants.EVENT_DATA_CONNECTION_ATTACHED, null));
waitForMs(200);
logd("Sending DATA_ENABLED_CMD");
mDct.setDataEnabled(true);
waitForMs(200);
verify(mSimulatedCommandsVerifier, times(1)).setupDataCall(
eq(ServiceState.RIL_RADIO_TECHNOLOGY_UMTS), eq(0), eq(FAKE_APN1),
eq(""), eq(""), eq(0), eq("IP"), any(Message.class));
verify(mSimulatedCommandsVerifier, times(1)).setupDataCall(
eq(ServiceState.RIL_RADIO_TECHNOLOGY_UMTS), eq(2), eq(FAKE_APN3),
eq(""), eq(""), eq(3), eq("IP"), any(Message.class));
logd("Sending DATA_DISABLED_CMD");
mDct.setDataEnabled(false);
waitForMs(200);
// expected tear down all metered DataConnections
verify(mSimulatedCommandsVerifier, times(1)).deactivateDataCall(anyInt(), anyInt(),
any(Message.class));
assertEquals(DctConstants.State.CONNECTED, mDct.getOverallState());
assertEquals(DctConstants.State.IDLE, mDct.getState(PhoneConstants.APN_TYPE_DEFAULT));
assertEquals(DctConstants.State.CONNECTED, mDct.getState(PhoneConstants.APN_TYPE_IMS));
// reset the setting at the end of this test
mDct.setDataEnabled(dataEnabled);
waitForMs(200);
}
@Test
@MediumTest
public void testUserDisableRoaming() throws Exception {
//step 1: setup two DataCalls one for Metered: default, another one for Non-metered: IMS
//step 2: set roaming disabled, data is enabled
//step 3: under roaming service
//step 4: only tear down metered data connections.
//set Default and MMS to be metered in the CarrierConfigManager
boolean roamingEnabled = mDct.getDataOnRoamingEnabled();
boolean dataEnabled = mDct.getDataEnabled();
mBundle.putStringArray(CarrierConfigManager.KEY_CARRIER_METERED_ROAMING_APN_TYPES_STRINGS,
new String[]{PhoneConstants.APN_TYPE_DEFAULT, PhoneConstants.APN_TYPE_MMS});
mDct.setEnabled(5, true);
mDct.setEnabled(0, true);
logd("Sending EVENT_RECORDS_LOADED");
mDct.sendMessage(mDct.obtainMessage(DctConstants.EVENT_RECORDS_LOADED, null));
waitForMs(200);
logd("Sending EVENT_DATA_CONNECTION_ATTACHED");
mDct.sendMessage(mDct.obtainMessage(DctConstants.EVENT_DATA_CONNECTION_ATTACHED, null));
waitForMs(200);
logd("Sending DATA_ENABLED_CMD");
mDct.setDataEnabled(true);
waitForMs(200);
verify(mSimulatedCommandsVerifier, times(1)).setupDataCall(
eq(ServiceState.RIL_RADIO_TECHNOLOGY_UMTS), eq(0), eq(FAKE_APN1),
eq(""), eq(""), eq(0), eq("IP"), any(Message.class));
verify(mSimulatedCommandsVerifier, times(1)).setupDataCall(
eq(ServiceState.RIL_RADIO_TECHNOLOGY_UMTS), eq(2), eq(FAKE_APN3),
eq(""), eq(""), eq(3), eq("IP"), any(Message.class));
//user is in roaming
doReturn(true).when(mServiceState).getDataRoaming();
logd("Sending DISABLE_ROAMING_CMD");
mDct.setDataOnRoamingEnabled(false);
mDct.sendMessage(mDct.obtainMessage(DctConstants.EVENT_ROAMING_ON));
waitForMs(200);
// expected tear down all metered DataConnections
verify(mSimulatedCommandsVerifier, times(1)).deactivateDataCall(anyInt(), anyInt(),
any(Message.class));
assertEquals(DctConstants.State.CONNECTED, mDct.getOverallState());
assertEquals(DctConstants.State.IDLE, mDct.getState(PhoneConstants.APN_TYPE_DEFAULT));
assertEquals(DctConstants.State.CONNECTED, mDct.getState(PhoneConstants.APN_TYPE_IMS));
// reset roaming settings / data enabled settings at end of this test
mDct.setDataOnRoamingEnabled(roamingEnabled);
mDct.setDataEnabled(dataEnabled);
waitForMs(200);
}
@Test
@MediumTest
public void testDataCallOnUserDisableRoaming() throws Exception {
//step 1: mock under roaming service and user disabled roaming from settings.
//step 2: user toggled data settings on
//step 3: only non-metered data call is established
boolean roamingEnabled = mDct.getDataOnRoamingEnabled();
boolean dataEnabled = mDct.getDataEnabled();
//set Default and MMS to be metered in the CarrierConfigManager
mBundle.putStringArray(CarrierConfigManager.KEY_CARRIER_METERED_ROAMING_APN_TYPES_STRINGS,
new String[]{PhoneConstants.APN_TYPE_DEFAULT, PhoneConstants.APN_TYPE_MMS});
mDct.setEnabled(5, true);
mDct.setEnabled(0, true);
doReturn(true).when(mServiceState).getDataRoaming();
logd("Sending DISABLE_ROAMING_CMD");
mDct.setDataOnRoamingEnabled(false);
logd("Sending EVENT_RECORDS_LOADED");
mDct.sendMessage(mDct.obtainMessage(DctConstants.EVENT_RECORDS_LOADED, null));
waitForMs(200);
logd("Sending EVENT_DATA_CONNECTION_ATTACHED");
mDct.sendMessage(mDct.obtainMessage(DctConstants.EVENT_DATA_CONNECTION_ATTACHED, null));
waitForMs(200);
logd("Sending DATA_ENABLED_CMD");
mDct.setDataEnabled(true);
waitForMs(200);
verify(mSimulatedCommandsVerifier, times(0)).setupDataCall(
eq(ServiceState.RIL_RADIO_TECHNOLOGY_UMTS), eq(0), eq(FAKE_APN1),
eq(""), eq(""), eq(0), eq("IP"), any(Message.class));
verify(mSimulatedCommandsVerifier, times(1)).setupDataCall(
eq(ServiceState.RIL_RADIO_TECHNOLOGY_UMTS), eq(2), eq(FAKE_APN3),
eq(""), eq(""), eq(3), eq("IP"), any(Message.class));
assertEquals(DctConstants.State.CONNECTED, mDct.getOverallState());
assertEquals(DctConstants.State.IDLE, mDct.getState(PhoneConstants.APN_TYPE_DEFAULT));
assertEquals(DctConstants.State.CONNECTED, mDct.getState(PhoneConstants.APN_TYPE_IMS));
// reset roaming settings / data enabled settings at end of this test
mDct.setDataOnRoamingEnabled(roamingEnabled);
mDct.setDataEnabled(dataEnabled);
waitForMs(200);
}
// Test the default data switch scenario.
@Test
@MediumTest
public void testDDSResetAutoAttach() throws Exception {
mDct.setDataEnabled(true);
mContextFixture.putBooleanResource(
com.android.internal.R.bool.config_auto_attach_data_on_creation, true);
mSimulatedCommands.setDataCallResponse(true, createDataCallResponse());
DataAllowFailReason failureReason = new DataAllowFailReason();
boolean allowed = isDataAllowed(failureReason);
assertFalse(failureReason.getDataAllowFailReason(), allowed);
ArgumentCaptor<Integer> intArgumentCaptor = ArgumentCaptor.forClass(Integer.class);
verify(mUiccController, times(1)).registerForIccChanged(eq(mDct),
intArgumentCaptor.capture(), eq(null));
// Ideally this should send EVENT_ICC_CHANGED.
mDct.sendMessage(mDct.obtainMessage(intArgumentCaptor.getValue(), null));
waitForMs(100);
verify(mSimRecords, times(1)).registerForRecordsLoaded(eq(mDct),
intArgumentCaptor.capture(), eq(null));
// Ideally this should send EVENT_RECORDS_LOADED.
mDct.sendMessage(mDct.obtainMessage(intArgumentCaptor.getValue(), null));
waitForMs(100);
verify(mSST, times(1)).registerForDataConnectionAttached(eq(mDct),
intArgumentCaptor.capture(), eq(null));
// Ideally this should send EVENT_DATA_CONNECTION_ATTACHED");
mDct.sendMessage(mDct.obtainMessage(intArgumentCaptor.getValue(), null));
waitForMs(200);
NetworkCapabilities nc = new NetworkCapabilities();
nc.addCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET);
NetworkRequest nr = new NetworkRequest(nc, 0, 0);
LocalLog l = new LocalLog(100);
mDct.requestNetwork(nr, l);
waitForMs(200);
verifyDataConnected(FAKE_APN1);
assertTrue(mDct.getAutoAttachOnCreation());
mDct.update();
// The auto attach flag should be reset after update
assertFalse(mDct.getAutoAttachOnCreation());
verify(mSST, times(1)).registerForDataConnectionDetached(eq(mDct),
intArgumentCaptor.capture(), eq(null));
// Ideally this should send EVENT_DATA_CONNECTION_DETACHED
mDct.sendMessage(mDct.obtainMessage(intArgumentCaptor.getValue(), null));
waitForMs(200);
// Data should not be allowed since auto attach flag has been reset.
failureReason.clearAllReasons();
allowed = isDataAllowed(failureReason);
assertFalse(failureReason.getDataAllowFailReason(), allowed);
}
// Test for API carrierActionSetMeteredApnsEnabled.
@Test
@MediumTest
public void testCarrierActionSetMeteredApnsEnabled() throws Exception {
//step 1: setup two DataCalls one for Internet and IMS
//step 2: set data is enabled
//step 3: cold sim is detected
//step 4: all data connection is torn down
mBundle.putStringArray(CarrierConfigManager.KEY_CARRIER_METERED_APN_TYPES_STRINGS,
new String[]{PhoneConstants.APN_TYPE_DEFAULT, PhoneConstants.APN_TYPE_MMS});
boolean dataEnabled = mDct.getDataEnabled();
mDct.setDataEnabled(true);
mDct.setEnabled(5, true);
mDct.setEnabled(0, true);
logd("Sending EVENT_RECORDS_LOADED");
mDct.sendMessage(mDct.obtainMessage(DctConstants.EVENT_RECORDS_LOADED, null));
waitForMs(200);
logd("Sending EVENT_DATA_CONNECTION_ATTACHED");
mDct.sendMessage(mDct.obtainMessage(DctConstants.EVENT_DATA_CONNECTION_ATTACHED, null));
waitForMs(200);
verify(mSimulatedCommandsVerifier, times(1)).setupDataCall(
eq(ServiceState.RIL_RADIO_TECHNOLOGY_UMTS), eq(2), eq(FAKE_APN3),
eq(""), eq(""), eq(3), eq("IP"), any(Message.class));
verify(mSimulatedCommandsVerifier, times(1)).setupDataCall(
eq(ServiceState.RIL_RADIO_TECHNOLOGY_UMTS), eq(0), eq(FAKE_APN1),
eq(""), eq(""), eq(0), eq("IP"), any(Message.class));
assertEquals(DctConstants.State.CONNECTED, mDct.getOverallState());
mDct.carrierActionSetMeteredApnsEnabled(false);
waitForMs(100);
// Validate all metered data connections have been torn down
verify(mSimulatedCommandsVerifier, times(1)).deactivateDataCall(anyInt(), anyInt(),
any(Message.class));
assertEquals(DctConstants.State.CONNECTED, mDct.getOverallState());
assertEquals(DctConstants.State.IDLE, mDct.getState(PhoneConstants.APN_TYPE_DEFAULT));
// Reset settings at the end of test
mDct.setDataEnabled(dataEnabled);
waitForMs(200);
}
}