summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDoris Ling <dling@google.com>2018-04-26 23:26:09 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2018-04-26 23:26:09 +0000
commit3a7d1334697959faee0d646f9ba22cdf38d592ba (patch)
treefa67f274afee1340888dca8f523e4b81d156f6f1 /tests
parenta0daf40587b185e4f65549964c465ba7489ad753 (diff)
parentbef13ac26de200570a6b5cfc1c679a54f5c436cb (diff)
Merge "Revert "WifiService: Return status from startScan()"" into pi-dev
Diffstat (limited to 'tests')
-rw-r--r--tests/wifitests/src/com/android/server/wifi/WifiServiceImplTest.java30
1 files changed, 3 insertions, 27 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/WifiServiceImplTest.java b/tests/wifitests/src/com/android/server/wifi/WifiServiceImplTest.java
index 4c633af59..597db6965 100644
--- a/tests/wifitests/src/com/android/server/wifi/WifiServiceImplTest.java
+++ b/tests/wifitests/src/com/android/server/wifi/WifiServiceImplTest.java
@@ -314,7 +314,6 @@ public class WifiServiceImplTest {
when(mContext.getOpPackageName()).thenReturn(TEST_PACKAGE_NAME);
when(mContext.checkPermission(eq(android.Manifest.permission.NETWORK_SETTINGS),
anyInt(), anyInt())).thenReturn(PackageManager.PERMISSION_DENIED);
- when(mScanRequestProxy.startScan(anyInt(), anyString())).thenReturn(true);
ArgumentCaptor<SoftApCallback> softApCallbackCaptor =
ArgumentCaptor.forClass(SoftApCallback.class);
@@ -1026,18 +1025,6 @@ public class WifiServiceImplTest {
}
/**
- * Ensure that we handle app ops check failure when handling scan request.
- */
- @Test
- public void testStartScanFailureAppOpsIgnored() {
- setupWifiStateMachineHandlerForRunWithScissors();
- doReturn(AppOpsManager.MODE_IGNORED).when(mAppOpsManager)
- .noteOp(AppOpsManager.OPSTR_CHANGE_WIFI_STATE, Process.myUid(), SCAN_PACKAGE_NAME);
- assertFalse(mWifiServiceImpl.startScan(SCAN_PACKAGE_NAME));
- verify(mScanRequestProxy, never()).startScan(Process.myUid(), SCAN_PACKAGE_NAME);
- }
-
- /**
* Ensure that we handle scan request failure when posting the runnable to handler fails.
*/
@Ignore
@@ -1046,21 +1033,10 @@ public class WifiServiceImplTest {
setupWifiStateMachineHandlerForRunWithScissors();
doReturn(false).when(mHandlerSpyForWsmRunWithScissors)
.runWithScissors(any(), anyLong());
- assertFalse(mWifiServiceImpl.startScan(SCAN_PACKAGE_NAME));
+ mWifiServiceImpl.startScan(SCAN_PACKAGE_NAME);
verify(mScanRequestProxy, never()).startScan(Process.myUid(), SCAN_PACKAGE_NAME);
}
- /**
- * Ensure that we handle scan request failure from ScanRequestProxy fails.
- */
- @Test
- public void testStartScanFailureFromScanRequestProxy() {
- setupWifiStateMachineHandlerForRunWithScissors();
- when(mScanRequestProxy.startScan(anyInt(), anyString())).thenReturn(false);
- assertFalse(mWifiServiceImpl.startScan(SCAN_PACKAGE_NAME));
- verify(mScanRequestProxy).startScan(Process.myUid(), SCAN_PACKAGE_NAME);
- }
-
static final String TEST_SSID = "Sid's Place";
static final String TEST_SSID_WITH_QUOTES = "\"" + TEST_SSID + "\"";
static final String TEST_BSSID = "01:02:03:04:05:06";
@@ -2552,7 +2528,7 @@ public class WifiServiceImplTest {
TestUtil.sendIdleModeChanged(mBroadcastReceiverCaptor.getValue(), mContext);
// Send a scan request while the device is idle.
- assertFalse(mWifiServiceImpl.startScan(SCAN_PACKAGE_NAME));
+ mWifiServiceImpl.startScan(SCAN_PACKAGE_NAME);
// No scans must be made yet as the device is idle.
verify(mScanRequestProxy, never()).startScan(Process.myUid(), SCAN_PACKAGE_NAME);
@@ -2569,7 +2545,7 @@ public class WifiServiceImplTest {
// Send another scan request. The device is not idle anymore, so it must be executed
// immediately.
- assertTrue(mWifiServiceImpl.startScan(SCAN_PACKAGE_NAME));
+ mWifiServiceImpl.startScan(SCAN_PACKAGE_NAME);
verify(mScanRequestProxy).startScan(Process.myUid(), SCAN_PACKAGE_NAME);
}