summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDavid Su <dysu@google.com>2019-11-21 23:32:49 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2019-11-21 23:32:49 +0000
commit2d574117086afb9dbf2303c99f15f7e4b92f5068 (patch)
tree74f7044a48a59b9c5fd34cd92f5a0a83f4206d39 /tests
parentd868dc640012bcc174fd075b59f5584519193af4 (diff)
parentf11468f2884b7c3b809654126c84a0360e93ca54 (diff)
Merge "Remove WifiManager.notifyUserOfApBandConversion()"
Diffstat (limited to 'tests')
-rw-r--r--tests/wifitests/src/com/android/server/wifi/WifiApConfigStoreTest.java63
-rw-r--r--tests/wifitests/src/com/android/server/wifi/WifiServiceImplTest.java27
2 files changed, 2 insertions, 88 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/WifiApConfigStoreTest.java b/tests/wifitests/src/com/android/server/wifi/WifiApConfigStoreTest.java
index 71b034a2e..851289c0d 100644
--- a/tests/wifitests/src/com/android/server/wifi/WifiApConfigStoreTest.java
+++ b/tests/wifitests/src/com/android/server/wifi/WifiApConfigStoreTest.java
@@ -23,17 +23,12 @@ import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.mockito.Mockito.any;
-import static org.mockito.Mockito.eq;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
-import android.app.Notification;
-import android.app.NotificationManager;
-import android.content.BroadcastReceiver;
import android.content.Context;
-import android.content.Intent;
import android.content.pm.ApplicationInfo;
import android.net.MacAddress;
import android.net.wifi.SoftApConfiguration;
@@ -45,7 +40,6 @@ import android.os.test.TestLooper;
import androidx.test.filters.SmallTest;
-import com.android.internal.messages.nano.SystemMessageProto.SystemMessage;
import com.android.wifi.R;
import org.junit.Before;
@@ -74,13 +68,8 @@ public class WifiApConfigStoreTest extends WifiBaseTest {
private static final String TEST_AP_CONFIG_FILE_PREFIX = "APConfig_";
private static final String TEST_DEFAULT_2G_CHANNEL_LIST = "1,2,3,4,5,6";
private static final String TEST_DEFAULT_AP_SSID = "TestAP";
- private static final String TEST_CONFIGURED_AP_SSID = "ConfiguredAP";
private static final String TEST_DEFAULT_HOTSPOT_SSID = "TestShare";
private static final String TEST_DEFAULT_HOTSPOT_PSK = "TestPassword";
- private static final String TEST_APCONFIG_CHANGE_NOTIFICATION_TITLE = "Notification title";
- private static final String TEST_APCONFIG_CHANGE_NOTIFICATION_SUMMARY = "Notification summary";
- private static final String TEST_APCONFIG_CHANGE_NOTIFICATION_DETAILED =
- "Notification detailed";
private static final int RAND_SSID_INT_MIN = 1000;
private static final int RAND_SSID_INT_MAX = 9999;
private static final String TEST_CHAR_SET_AS_STRING = "abcdefghijklmnopqrstuvwxyz0123456789";
@@ -96,15 +85,12 @@ public class WifiApConfigStoreTest extends WifiBaseTest {
private TestLooper mLooper;
private Handler mHandler;
@Mock private BackupManagerProxy mBackupManagerProxy;
- @Mock private FrameworkFacade mFrameworkFacade;
@Mock private WifiConfigStore mWifiConfigStore;
@Mock private WifiConfigManager mWifiConfigManager;
private File mLegacyApConfigFile;
private Random mRandom;
private MockResources mResources;
@Mock private ApplicationInfo mMockApplInfo;
- private BroadcastReceiver mBroadcastReceiver;
- @Mock private NotificationManager mNotificationManager;
@Mock private MacAddressUtil mMacAddressUtil;
private SoftApStoreData.DataSource mDataStoreSource;
private ArrayList<Integer> mKnownGood2GChannelList;
@@ -114,8 +100,6 @@ public class WifiApConfigStoreTest extends WifiBaseTest {
mLooper = new TestLooper();
mHandler = new Handler(mLooper.getLooper());
MockitoAnnotations.initMocks(this);
- when(mContext.getSystemService(Context.NOTIFICATION_SERVICE))
- .thenReturn(mNotificationManager);
mMockApplInfo.targetSdkVersion = Build.VERSION_CODES.P;
when(mContext.getApplicationInfo()).thenReturn(mMockApplInfo);
@@ -129,12 +113,6 @@ public class WifiApConfigStoreTest extends WifiBaseTest {
TEST_DEFAULT_HOTSPOT_SSID);
/* Default to device that does not require ap band conversion */
mResources.setBoolean(R.bool.config_wifi_convert_apband_5ghz_to_any, false);
- mResources.setText(R.string.wifi_softap_config_change,
- TEST_APCONFIG_CHANGE_NOTIFICATION_TITLE);
- mResources.setText(R.string.wifi_softap_config_change_summary,
- TEST_APCONFIG_CHANGE_NOTIFICATION_SUMMARY);
- mResources.setText(R.string.wifi_softap_config_change_detailed,
- TEST_APCONFIG_CHANGE_NOTIFICATION_DETAILED);
when(mContext.getResources()).thenReturn(mResources);
// build the known good 2G channel list: TEST_DEFAULT_2G_CHANNEL_LIST
@@ -152,19 +130,14 @@ public class WifiApConfigStoreTest extends WifiBaseTest {
WifiApConfigStore store;
if (legacyFilePath == null) {
store = new WifiApConfigStore(
- mContext, mWifiInjector, mHandler, mBackupManagerProxy, mFrameworkFacade,
+ mContext, mWifiInjector, mHandler, mBackupManagerProxy,
mWifiConfigStore, mWifiConfigManager);
} else {
store = new WifiApConfigStore(
- mContext, mWifiInjector, mHandler, mBackupManagerProxy, mFrameworkFacade,
+ mContext, mWifiInjector, mHandler, mBackupManagerProxy,
mWifiConfigStore, mWifiConfigManager, legacyFilePath);
}
- ArgumentCaptor<BroadcastReceiver> broadcastReceiverCaptor =
- ArgumentCaptor.forClass(BroadcastReceiver.class);
- verify(mContext).registerReceiver(broadcastReceiverCaptor.capture(), any(), any(), any());
- mBroadcastReceiver = broadcastReceiverCaptor.getValue();
-
verify(mWifiConfigStore).registerStoreData(any());
ArgumentCaptor<SoftApStoreData.DataSource> dataStoreSourceArgumentCaptor =
ArgumentCaptor.forClass(SoftApStoreData.DataSource.class);
@@ -840,36 +813,4 @@ public class WifiApConfigStoreTest extends WifiBaseTest {
assertTrue(mKnownGood2GChannelList.contains(channel));
}
}
-
- /**
- * Verify a notification is posted when triggered when the ap config was converted.
- */
- @Test
- public void testNotifyUserOfApBandConversion() throws Exception {
- WifiApConfigStore store = createWifiApConfigStore();
- store.notifyUserOfApBandConversion(TAG);
- // verify the notification is posted
- ArgumentCaptor<Notification> notificationCaptor =
- ArgumentCaptor.forClass(Notification.class);
- verify(mNotificationManager).notify(eq(SystemMessage.NOTE_SOFTAP_CONFIG_CHANGED),
- notificationCaptor.capture());
- Notification notification = notificationCaptor.getValue();
- assertEquals(TEST_APCONFIG_CHANGE_NOTIFICATION_TITLE,
- notification.extras.getCharSequence(Notification.EXTRA_TITLE));
- assertEquals(TEST_APCONFIG_CHANGE_NOTIFICATION_DETAILED,
- notification.extras.getCharSequence(Notification.EXTRA_BIG_TEXT));
- assertEquals(TEST_APCONFIG_CHANGE_NOTIFICATION_SUMMARY,
- notification.extras.getCharSequence(Notification.EXTRA_SUMMARY_TEXT));
- }
-
- /**
- * Verify the posted notification is cleared when the user interacts with it.
- */
- @Test
- public void testNotificationClearedWhenContentIsTapped() throws Exception {
- WifiApConfigStore store = createWifiApConfigStore();
- Intent intent = new Intent(WifiApConfigStore.ACTION_HOTSPOT_CONFIG_USER_TAPPED_CONTENT);
- mBroadcastReceiver.onReceive(mContext, intent);
- verify(mNotificationManager).cancel(eq(SystemMessage.NOTE_SOFTAP_CONFIG_CHANGED));
- }
}
diff --git a/tests/wifitests/src/com/android/server/wifi/WifiServiceImplTest.java b/tests/wifitests/src/com/android/server/wifi/WifiServiceImplTest.java
index 9224d69b5..ddb49f0b1 100644
--- a/tests/wifitests/src/com/android/server/wifi/WifiServiceImplTest.java
+++ b/tests/wifitests/src/com/android/server/wifi/WifiServiceImplTest.java
@@ -3335,33 +3335,6 @@ public class WifiServiceImplTest extends WifiBaseTest {
}
/**
- * Verify calls to notify users of a softap config change check the NETWORK_SETTINGS permission.
- */
- @Test
- public void testNotifyUserOfApBandConversionChecksNetworkSettingsPermission() {
- mWifiServiceImpl.notifyUserOfApBandConversion(TEST_PACKAGE_NAME);
- verify(mContext).enforceCallingOrSelfPermission(
- eq(android.Manifest.permission.NETWORK_SETTINGS),
- eq("WifiService"));
- verify(mWifiApConfigStore).notifyUserOfApBandConversion(eq(TEST_PACKAGE_NAME));
- }
-
- /**
- * Verify calls to notify users do not trigger a notification when NETWORK_SETTINGS is not held
- * by the caller.
- */
- @Test
- public void testNotifyUserOfApBandConversionThrowsExceptionWithoutNetworkSettingsPermission() {
- doThrow(new SecurityException()).when(mContext)
- .enforceCallingOrSelfPermission(eq(android.Manifest.permission.NETWORK_SETTINGS),
- eq("WifiService"));
- try {
- mWifiServiceImpl.notifyUserOfApBandConversion(TEST_PACKAGE_NAME);
- fail("Expected Security exception");
- } catch (SecurityException e) { }
- }
-
- /**
* Verify that a call to registerTrafficStateCallback throws a SecurityException if the caller
* does not have NETWORK_SETTINGS permission.
*/