- when launching the app data usage from the data usage list, pass the info about the current cycle that the user is looking at, and select the same cycle by default when the page is first launched to match the data on the previous page. Change-Id: Ic91bd8ee78db4d76551dff4b132c1b74d4b3c19d Fixes: 123192721 Test: make RunSettingsRoboTests
438 lines
20 KiB
Java
438 lines
20 KiB
Java
/*
|
|
* Copyright (C) 2017 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.settings.datausage;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import static org.mockito.ArgumentMatchers.any;
|
|
import static org.mockito.ArgumentMatchers.anyBoolean;
|
|
import static org.mockito.ArgumentMatchers.anyInt;
|
|
import static org.mockito.ArgumentMatchers.anyString;
|
|
import static org.mockito.Matchers.eq;
|
|
import static org.mockito.Mockito.RETURNS_DEEP_STUBS;
|
|
import static org.mockito.Mockito.doNothing;
|
|
import static org.mockito.Mockito.doReturn;
|
|
import static org.mockito.Mockito.mock;
|
|
import static org.mockito.Mockito.spy;
|
|
import static org.mockito.Mockito.verify;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
import android.content.Context;
|
|
import android.content.pm.ApplicationInfo;
|
|
import android.content.pm.PackageManager;
|
|
import android.content.pm.PackageManager.NameNotFoundException;
|
|
import android.net.NetworkPolicyManager;
|
|
import android.net.NetworkTemplate;
|
|
import android.os.Bundle;
|
|
import android.os.Process;
|
|
import android.telephony.SubscriptionManager;
|
|
import android.text.format.DateUtils;
|
|
import android.util.ArraySet;
|
|
import android.view.View;
|
|
|
|
import androidx.fragment.app.FragmentActivity;
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceManager;
|
|
import androidx.preference.PreferenceScreen;
|
|
|
|
import com.android.settings.applications.AppInfoBase;
|
|
import com.android.settings.testutils.FakeFeatureFactory;
|
|
import com.android.settings.testutils.shadow.ShadowDataUsageUtils;
|
|
import com.android.settings.testutils.shadow.ShadowEntityHeaderController;
|
|
import com.android.settings.testutils.shadow.ShadowRestrictedLockUtilsInternal;
|
|
import com.android.settings.widget.EntityHeaderController;
|
|
import com.android.settingslib.AppItem;
|
|
import com.android.settingslib.RestrictedLockUtils.EnforcedAdmin;
|
|
import com.android.settingslib.RestrictedSwitchPreference;
|
|
import com.android.settingslib.net.NetworkCycleDataForUid;
|
|
import com.android.settingslib.net.NetworkCycleDataForUidLoader;
|
|
import com.android.settingslib.net.UidDetail;
|
|
import com.android.settingslib.net.UidDetailProvider;
|
|
|
|
import org.junit.After;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.Answers;
|
|
import org.mockito.Mock;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.robolectric.Robolectric;
|
|
import org.robolectric.RobolectricTestRunner;
|
|
import org.robolectric.RuntimeEnvironment;
|
|
import org.robolectric.annotation.Config;
|
|
import org.robolectric.shadows.ShadowSubscriptionManager;
|
|
import org.robolectric.util.ReflectionHelpers;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
@RunWith(RobolectricTestRunner.class)
|
|
@Config(shadows = {ShadowEntityHeaderController.class, ShadowRestrictedLockUtilsInternal.class})
|
|
public class AppDataUsageTest {
|
|
|
|
@Mock(answer = Answers.RETURNS_DEEP_STUBS)
|
|
private EntityHeaderController mHeaderController;
|
|
@Mock
|
|
private PackageManager mPackageManager;
|
|
|
|
private AppDataUsage mFragment;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
}
|
|
|
|
@After
|
|
public void tearDown() {
|
|
ShadowEntityHeaderController.reset();
|
|
}
|
|
|
|
@Test
|
|
public void onCreate_appUid_shouldGetAppLabelFromAppInfo() throws NameNotFoundException {
|
|
mFragment = spy(new AppDataUsage());
|
|
final FragmentActivity activity = spy(Robolectric.setupActivity(FragmentActivity.class));
|
|
doReturn(mPackageManager).when(activity).getPackageManager();
|
|
doReturn(activity).when(mFragment).getActivity();
|
|
doReturn(RuntimeEnvironment.application).when(mFragment).getContext();
|
|
ReflectionHelpers.setField(mFragment, "mDashboardFeatureProvider",
|
|
FakeFeatureFactory.setupForTest().dashboardFeatureProvider);
|
|
final String packageName = "testPackage";
|
|
final int uid = (Process.FIRST_APPLICATION_UID + Process.LAST_APPLICATION_UID) / 2;
|
|
doReturn(new String[] {packageName}).when(mPackageManager).getPackagesForUid(uid);
|
|
final String label = "testLabel";
|
|
final AppItem appItem = new AppItem(uid);
|
|
appItem.uids.put(uid, true);
|
|
final ApplicationInfo info = spy(new ApplicationInfo());
|
|
doReturn(label).when(info).loadLabel(mPackageManager);
|
|
when(mPackageManager.getApplicationInfoAsUser(
|
|
eq(packageName), anyInt() /* flags */, anyInt() /* userId */)).thenReturn(info);
|
|
final Bundle args = new Bundle();
|
|
args.putParcelable(AppDataUsage.ARG_APP_ITEM, appItem);
|
|
args.putInt(AppInfoBase.ARG_PACKAGE_UID, uid);
|
|
mFragment.setArguments(args);
|
|
|
|
mFragment.onCreate(Bundle.EMPTY);
|
|
|
|
assertThat(mFragment.mLabel).isEqualTo(label);
|
|
}
|
|
|
|
@Test
|
|
public void onCreate_notAppUid_shouldGetAppLabelFromUidDetailProvider() {
|
|
mFragment = spy(new AppDataUsage());
|
|
ReflectionHelpers.setField(mFragment, "mDashboardFeatureProvider",
|
|
FakeFeatureFactory.setupForTest().dashboardFeatureProvider);
|
|
doReturn(Robolectric.setupActivity(FragmentActivity.class)).when(mFragment).getActivity();
|
|
doReturn(RuntimeEnvironment.application).when(mFragment).getContext();
|
|
final UidDetailProvider uidDetailProvider = mock(UidDetailProvider.class);
|
|
doReturn(uidDetailProvider).when(mFragment).getUidDetailProvider();
|
|
final String label = "testLabel";
|
|
final int uid = Process.SYSTEM_UID;
|
|
final UidDetail uidDetail = new UidDetail();
|
|
uidDetail.label = label;
|
|
when(uidDetailProvider.getUidDetail(eq(uid), anyBoolean() /* blocking */)).
|
|
thenReturn(uidDetail);
|
|
final AppItem appItem = new AppItem(uid);
|
|
appItem.uids.put(uid, true);
|
|
final Bundle args = new Bundle();
|
|
args.putParcelable(AppDataUsage.ARG_APP_ITEM, appItem);
|
|
args.putInt(AppInfoBase.ARG_PACKAGE_UID, uid);
|
|
mFragment.setArguments(args);
|
|
|
|
mFragment.onCreate(Bundle.EMPTY);
|
|
|
|
assertThat(mFragment.mLabel).isEqualTo(label);
|
|
}
|
|
|
|
@Test
|
|
public void bindAppHeader_allWorkApps_shouldNotShowAppInfoLink() {
|
|
ShadowEntityHeaderController.setUseMock(mHeaderController);
|
|
when(mHeaderController.setRecyclerView(any(), any())).thenReturn(mHeaderController);
|
|
when(mHeaderController.setUid(anyInt())).thenReturn(mHeaderController);
|
|
|
|
mFragment = spy(new AppDataUsage());
|
|
|
|
when(mFragment.getPreferenceManager())
|
|
.thenReturn(mock(PreferenceManager.class, RETURNS_DEEP_STUBS));
|
|
doReturn(mock(PreferenceScreen.class)).when(mFragment).getPreferenceScreen();
|
|
ReflectionHelpers.setField(mFragment, "mAppItem", mock(AppItem.class));
|
|
|
|
mFragment.onViewCreated(new View(RuntimeEnvironment.application), new Bundle());
|
|
|
|
verify(mHeaderController).setHasAppInfoLink(false);
|
|
}
|
|
|
|
@Test
|
|
public void bindAppHeader_workApp_shouldSetWorkAppUid()
|
|
throws PackageManager.NameNotFoundException {
|
|
final int fakeUserId = 100;
|
|
|
|
mFragment = spy(new AppDataUsage());
|
|
final ArraySet<String> packages = new ArraySet<>();
|
|
packages.add("pkg");
|
|
final AppItem appItem = new AppItem(123456789);
|
|
|
|
ReflectionHelpers.setField(mFragment, "mPackageManager", mPackageManager);
|
|
ReflectionHelpers.setField(mFragment, "mAppItem", appItem);
|
|
ReflectionHelpers.setField(mFragment, "mPackages", packages);
|
|
|
|
when(mPackageManager.getPackageUidAsUser(anyString(), anyInt()))
|
|
.thenReturn(fakeUserId);
|
|
|
|
ShadowEntityHeaderController.setUseMock(mHeaderController);
|
|
when(mHeaderController.setRecyclerView(any(), any())).thenReturn(mHeaderController);
|
|
when(mHeaderController.setUid(fakeUserId)).thenReturn(mHeaderController);
|
|
when(mHeaderController.setHasAppInfoLink(anyBoolean())).thenReturn(mHeaderController);
|
|
|
|
when(mFragment.getPreferenceManager())
|
|
.thenReturn(mock(PreferenceManager.class, RETURNS_DEEP_STUBS));
|
|
doReturn(mock(PreferenceScreen.class)).when(mFragment).getPreferenceScreen();
|
|
|
|
mFragment.onViewCreated(new View(RuntimeEnvironment.application), new Bundle());
|
|
|
|
verify(mHeaderController).setHasAppInfoLink(true);
|
|
verify(mHeaderController).setUid(fakeUserId);
|
|
}
|
|
|
|
@Test
|
|
public void changePreference_backgroundData_shouldUpdateUI() {
|
|
mFragment = spy(new AppDataUsage());
|
|
final AppItem appItem = new AppItem(123456789);
|
|
final RestrictedSwitchPreference pref = mock(RestrictedSwitchPreference.class);
|
|
final DataSaverBackend dataSaverBackend = mock(DataSaverBackend.class);
|
|
ReflectionHelpers.setField(mFragment, "mAppItem", appItem);
|
|
ReflectionHelpers.setField(mFragment, "mRestrictBackground", pref);
|
|
ReflectionHelpers.setField(mFragment, "mDataSaverBackend", dataSaverBackend);
|
|
|
|
doNothing().when(mFragment).updatePrefs();
|
|
|
|
mFragment.onPreferenceChange(pref, true /* value */);
|
|
|
|
verify(mFragment).updatePrefs();
|
|
}
|
|
|
|
@Test
|
|
public void updatePrefs_restrictedByAdmin_shouldDisablePreference() {
|
|
mFragment = spy(new AppDataUsage());
|
|
final int testUid = 123123;
|
|
final AppItem appItem = new AppItem(testUid);
|
|
final RestrictedSwitchPreference restrictBackgroundPref
|
|
= mock(RestrictedSwitchPreference.class);
|
|
final RestrictedSwitchPreference unrestrictedDataPref
|
|
= mock(RestrictedSwitchPreference.class);
|
|
final DataSaverBackend dataSaverBackend = mock(DataSaverBackend.class);
|
|
final NetworkPolicyManager networkPolicyManager = mock(NetworkPolicyManager.class);
|
|
ReflectionHelpers.setField(mFragment, "mAppItem", appItem);
|
|
ReflectionHelpers.setField(mFragment, "mRestrictBackground", restrictBackgroundPref);
|
|
ReflectionHelpers.setField(mFragment, "mUnrestrictedData", unrestrictedDataPref);
|
|
ReflectionHelpers.setField(mFragment, "mDataSaverBackend", dataSaverBackend);
|
|
ReflectionHelpers.setField(mFragment.services, "mPolicyManager", networkPolicyManager);
|
|
|
|
ShadowRestrictedLockUtilsInternal.setRestricted(true);
|
|
doReturn(NetworkPolicyManager.POLICY_NONE).when(networkPolicyManager)
|
|
.getUidPolicy(testUid);
|
|
|
|
mFragment.updatePrefs();
|
|
|
|
verify(restrictBackgroundPref).setDisabledByAdmin(any(EnforcedAdmin.class));
|
|
verify(unrestrictedDataPref).setDisabledByAdmin(any(EnforcedAdmin.class));
|
|
}
|
|
|
|
@Test
|
|
public void bindData_noAppUsageData_shouldHideCycleSpinner() {
|
|
mFragment = spy(new AppDataUsage());
|
|
final SpinnerPreference cycle = mock(SpinnerPreference.class);
|
|
ReflectionHelpers.setField(mFragment, "mCycle", cycle);
|
|
final Preference preference = mock(Preference.class);
|
|
ReflectionHelpers.setField(mFragment, "mBackgroundUsage", preference);
|
|
ReflectionHelpers.setField(mFragment, "mForegroundUsage", preference);
|
|
ReflectionHelpers.setField(mFragment, "mTotalUsage", preference);
|
|
ReflectionHelpers.setField(mFragment, "mContext", RuntimeEnvironment.application);
|
|
|
|
mFragment.bindData(0 /* position */);
|
|
|
|
verify(cycle).setVisible(false);
|
|
}
|
|
|
|
@Test
|
|
public void bindData_hasAppUsageData_shouldShowCycleSpinnerAndUpdateUsageSummary() {
|
|
mFragment = spy(new AppDataUsage());
|
|
final Context context = RuntimeEnvironment.application;
|
|
ReflectionHelpers.setField(mFragment, "mContext", context);
|
|
final long backgroundBytes = 1234L;
|
|
final long foregroundBytes = 5678L;
|
|
final List<NetworkCycleDataForUid> appUsage = new ArrayList<>();
|
|
appUsage.add(new NetworkCycleDataForUid.Builder()
|
|
.setBackgroundUsage(backgroundBytes).setForegroundUsage(foregroundBytes).build());
|
|
ReflectionHelpers.setField(mFragment, "mUsageData", appUsage);
|
|
final Preference backgroundPref = mock(Preference.class);
|
|
ReflectionHelpers.setField(mFragment, "mBackgroundUsage", backgroundPref);
|
|
final Preference foregroundPref = mock(Preference.class);
|
|
ReflectionHelpers.setField(mFragment, "mForegroundUsage", foregroundPref);
|
|
final Preference totalPref = mock(Preference.class);
|
|
ReflectionHelpers.setField(mFragment, "mTotalUsage", totalPref);
|
|
final SpinnerPreference cycle = mock(SpinnerPreference.class);
|
|
ReflectionHelpers.setField(mFragment, "mCycle", cycle);
|
|
|
|
mFragment.bindData(0 /* position */);
|
|
|
|
verify(cycle).setVisible(true);
|
|
verify(totalPref).setSummary(
|
|
DataUsageUtils.formatDataUsage(context, backgroundBytes + foregroundBytes));
|
|
verify(backgroundPref).setSummary(DataUsageUtils.formatDataUsage(context, backgroundBytes));
|
|
verify(foregroundPref).setSummary(DataUsageUtils.formatDataUsage(context, foregroundBytes));
|
|
}
|
|
|
|
@Test
|
|
public void onCreateLoader_categoryApp_shouldQueryDataUsageUsingAppKey() {
|
|
mFragment = new AppDataUsage();
|
|
final Context context = RuntimeEnvironment.application;
|
|
final int testUid = 123123;
|
|
final AppItem appItem = new AppItem(testUid);
|
|
appItem.category = AppItem.CATEGORY_APP;
|
|
ReflectionHelpers.setField(mFragment, "mContext", context);
|
|
ReflectionHelpers.setField(mFragment, "mAppItem", appItem);
|
|
ReflectionHelpers.setField(mFragment, "mTemplate",
|
|
NetworkTemplate.buildTemplateWifiWildcard());
|
|
final long end = System.currentTimeMillis();
|
|
final long start = end - (DateUtils.WEEK_IN_MILLIS * 4);
|
|
|
|
final NetworkCycleDataForUidLoader loader = (NetworkCycleDataForUidLoader)
|
|
mFragment.mUidDataCallbacks.onCreateLoader(0, Bundle.EMPTY);
|
|
|
|
final List<Integer> uids = loader.getUids();
|
|
assertThat(uids).hasSize(1);
|
|
assertThat(uids.get(0)).isEqualTo(testUid);
|
|
}
|
|
|
|
@Test
|
|
public void onCreateLoader_categoryUser_shouldQueryDataUsageUsingAssociatedUids() {
|
|
mFragment = new AppDataUsage();
|
|
final Context context = RuntimeEnvironment.application;
|
|
final int testUserId = 11;
|
|
final AppItem appItem = new AppItem(testUserId);
|
|
appItem.category = AppItem.CATEGORY_USER;
|
|
appItem.addUid(123);
|
|
appItem.addUid(456);
|
|
appItem.addUid(789);
|
|
ReflectionHelpers.setField(mFragment, "mContext", context);
|
|
ReflectionHelpers.setField(mFragment, "mAppItem", appItem);
|
|
ReflectionHelpers.setField(mFragment, "mTemplate",
|
|
NetworkTemplate.buildTemplateWifiWildcard());
|
|
final long end = System.currentTimeMillis();
|
|
final long start = end - (DateUtils.WEEK_IN_MILLIS * 4);
|
|
|
|
final NetworkCycleDataForUidLoader loader = (NetworkCycleDataForUidLoader)
|
|
mFragment.mUidDataCallbacks.onCreateLoader(0, Bundle.EMPTY);
|
|
|
|
final List<Integer> uids = loader.getUids();
|
|
assertThat(uids).hasSize(3);
|
|
assertThat(uids.get(0)).isEqualTo(123);
|
|
assertThat(uids.get(1)).isEqualTo(456);
|
|
assertThat(uids.get(2)).isEqualTo(789);
|
|
}
|
|
|
|
@Test
|
|
public void onCreateLoader_hasCyclesSpecified_shouldQueryDataUsageForSpecifiedCycles() {
|
|
final long startTime = 1521583200000L;
|
|
final long endTime = 1521676800000L;
|
|
ArrayList<Long> testCycles = new ArrayList<>();
|
|
testCycles.add(endTime);
|
|
testCycles.add(startTime);
|
|
final int uid = 123;
|
|
final AppItem appItem = new AppItem(uid);
|
|
appItem.category = AppItem.CATEGORY_APP;
|
|
appItem.addUid(uid);
|
|
|
|
mFragment = new AppDataUsage();
|
|
ReflectionHelpers.setField(mFragment, "mContext", RuntimeEnvironment.application);
|
|
ReflectionHelpers.setField(mFragment, "mCycles", testCycles);
|
|
ReflectionHelpers.setField(mFragment, "mAppItem", appItem);
|
|
ReflectionHelpers.setField(mFragment, "mTemplate",
|
|
NetworkTemplate.buildTemplateWifiWildcard());
|
|
|
|
final NetworkCycleDataForUidLoader loader = (NetworkCycleDataForUidLoader)
|
|
mFragment.mUidDataCallbacks.onCreateLoader(0 /* id */, Bundle.EMPTY /* args */);
|
|
|
|
final ArrayList<Long> cycles = loader.getCycles();
|
|
assertThat(cycles).hasSize(2);
|
|
assertThat(cycles.get(0)).isEqualTo(endTime);
|
|
assertThat(cycles.get(1)).isEqualTo(startTime);
|
|
}
|
|
|
|
@Test
|
|
public void onLoadFinished_hasSelectedCycleSpecified_shouldSelectSpecifiedCycle() {
|
|
final long now = System.currentTimeMillis();
|
|
final long tenDaysAgo = now - (DateUtils.DAY_IN_MILLIS * 10);
|
|
final long twentyDaysAgo = now - (DateUtils.DAY_IN_MILLIS * 20);
|
|
final long thirtyDaysAgo = now - (DateUtils.DAY_IN_MILLIS * 30);
|
|
final List<NetworkCycleDataForUid> data = new ArrayList<>();
|
|
NetworkCycleDataForUid.Builder builder = new NetworkCycleDataForUid.Builder();
|
|
builder.setStartTime(thirtyDaysAgo).setEndTime(twentyDaysAgo).setTotalUsage(9876L);
|
|
data.add(builder.build());
|
|
builder = new NetworkCycleDataForUid.Builder();
|
|
builder.setStartTime(twentyDaysAgo).setEndTime(tenDaysAgo).setTotalUsage(5678L);
|
|
data.add(builder.build());
|
|
builder = new NetworkCycleDataForUid.Builder();
|
|
builder.setStartTime(tenDaysAgo).setEndTime(now).setTotalUsage(1234L);
|
|
data.add(builder.build());
|
|
|
|
mFragment = new AppDataUsage();
|
|
ReflectionHelpers.setField(mFragment, "mContext", RuntimeEnvironment.application);
|
|
ReflectionHelpers.setField(mFragment, "mCycleAdapter", mock(CycleAdapter.class));
|
|
ReflectionHelpers.setField(mFragment, "mSelectedCycle", tenDaysAgo);
|
|
final Preference backgroundPref = mock(Preference.class);
|
|
ReflectionHelpers.setField(mFragment, "mBackgroundUsage", backgroundPref);
|
|
final Preference foregroundPref = mock(Preference.class);
|
|
ReflectionHelpers.setField(mFragment, "mForegroundUsage", foregroundPref);
|
|
final Preference totalPref = mock(Preference.class);
|
|
ReflectionHelpers.setField(mFragment, "mTotalUsage", totalPref);
|
|
final SpinnerPreference cycle = mock(SpinnerPreference.class);
|
|
ReflectionHelpers.setField(mFragment, "mCycle", cycle);
|
|
|
|
mFragment.mUidDataCallbacks.onLoadFinished(null /* loader */, data);
|
|
|
|
verify(cycle).setSelection(1);
|
|
}
|
|
|
|
@Test
|
|
@Config(shadows = {ShadowDataUsageUtils.class, ShadowSubscriptionManager.class})
|
|
public void onCreate_noNetworkTemplateAndInvalidDataSubscription_shouldUseWifiTemplate() {
|
|
ShadowDataUsageUtils.IS_MOBILE_DATA_SUPPORTED = true;
|
|
ShadowDataUsageUtils.IS_WIFI_SUPPORTED = true;
|
|
ShadowDataUsageUtils.HAS_SIM = false;
|
|
ShadowSubscriptionManager.setDefaultDataSubscriptionId(
|
|
SubscriptionManager.INVALID_SUBSCRIPTION_ID);
|
|
mFragment = spy(new AppDataUsage());
|
|
doReturn(Robolectric.setupActivity(FragmentActivity.class)).when(mFragment).getActivity();
|
|
doReturn(RuntimeEnvironment.application).when(mFragment).getContext();
|
|
final UidDetailProvider uidDetailProvider = mock(UidDetailProvider.class);
|
|
doReturn(uidDetailProvider).when(mFragment).getUidDetailProvider();
|
|
doReturn(new UidDetail()).when(uidDetailProvider).getUidDetail(anyInt(), anyBoolean());
|
|
|
|
ReflectionHelpers.setField(mFragment, "mDashboardFeatureProvider",
|
|
FakeFeatureFactory.setupForTest().dashboardFeatureProvider);
|
|
final Bundle args = new Bundle();
|
|
args.putInt(AppInfoBase.ARG_PACKAGE_UID, 123123);
|
|
mFragment.setArguments(args);
|
|
|
|
mFragment.onCreate(Bundle.EMPTY);
|
|
|
|
assertThat(mFragment.mTemplate.getMatchRule())
|
|
.isEqualTo(NetworkTemplate.MATCH_WIFI_WILDCARD);
|
|
}
|
|
}
|