summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMichael Plass <mplass@google.com>2017-03-13 16:31:43 -0700
committerMichael Plass <mplass@google.com>2017-03-14 14:07:35 -0700
commit6ba8a37de432d957e10dd9cc74798758870d02e6 (patch)
tree6b195212ef103b489b5988b2f8fbeb15deebca1e /tests
parenteb26485dd36b83676b4931e415f20b284abd7dfc (diff)
BgScan rename for wifi vendor background scan
Also clean up some stale todos Test: Unit tests pass Bug: 35806209 Bug: 34900537 stale todo fixed by b/35101185 Bug: 34901818 removed todo Bug: 34901744 retarget todo to b/35138520 Change-Id: I90a77a1aad7ff55c26ee70b383bcdbd16cac32cf
Diffstat (limited to 'tests')
-rw-r--r--tests/wifitests/src/com/android/server/wifi/WifiVendorHalTest.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/WifiVendorHalTest.java b/tests/wifitests/src/com/android/server/wifi/WifiVendorHalTest.java
index 000f5866e..6f1d69c69 100644
--- a/tests/wifitests/src/com/android/server/wifi/WifiVendorHalTest.java
+++ b/tests/wifitests/src/com/android/server/wifi/WifiVendorHalTest.java
@@ -449,19 +449,19 @@ public class WifiVendorHalTest {
mWifiLog = spy(mWifiLog);
mWifiVendorHal.mLog = mWifiLog;
mWifiVendorHal.mVerboseLog = mWifiLog;
- assertFalse(mWifiVendorHal.getScanCapabilities(new WifiNative.ScanCapabilities()));
+ assertFalse(mWifiVendorHal.getBgScanCapabilities(new WifiNative.ScanCapabilities()));
verify(mWifiLog).err("% returns %");
}
/**
- * Test that getApfCapabilities is hooked up to the HAL correctly
+ * Test that getBgScanCapabilities is hooked up to the HAL correctly
*
* A call before the vendor HAL is started should return a non-null result with version 0
*
* A call after the HAL is started should return the mocked values.
*/
@Test
- public void testGetScanCapabilities() throws Exception {
+ public void testGetBgScanCapabilities() throws Exception {
StaBackgroundScanCapabilities capabilities = new StaBackgroundScanCapabilities();
capabilities.maxCacheSize = 12;
capabilities.maxBuckets = 34;
@@ -478,9 +478,9 @@ public class WifiVendorHalTest {
WifiNative.ScanCapabilities result = new WifiNative.ScanCapabilities();
- assertFalse(mWifiVendorHal.getScanCapabilities(result)); // should fail - not started
+ assertFalse(mWifiVendorHal.getBgScanCapabilities(result)); // should fail - not started
assertTrue(mWifiVendorHal.startVendorHalSta()); // Start the vendor hal
- assertTrue(mWifiVendorHal.getScanCapabilities(result)); // should succeed
+ assertTrue(mWifiVendorHal.getBgScanCapabilities(result)); // should succeed
assertEquals(12, result.max_scan_cache_size);
assertEquals(34, result.max_scan_buckets);
@@ -1578,8 +1578,8 @@ public class WifiVendorHalTest {
int cmdId = mWifiVendorHal.mScan.cmdId;
- mWifiVendorHal.stopScan();
- mWifiVendorHal.stopScan(); // second call should not do anything
+ mWifiVendorHal.stopBgScan();
+ mWifiVendorHal.stopBgScan(); // second call should not do anything
verify(mIWifiStaIface).stopBackgroundScan(cmdId); // Should be called just once
}
@@ -1596,8 +1596,8 @@ public class WifiVendorHalTest {
int cmdId = mWifiVendorHal.mScan.cmdId;
- mWifiVendorHal.pauseScan();
- mWifiVendorHal.restartScan();
+ mWifiVendorHal.pauseBgScan();
+ mWifiVendorHal.restartBgScan();
verify(mIWifiStaIface).stopBackgroundScan(cmdId); // Should be called just once
verify(mIWifiStaIface, times(2)).startBackgroundScan(eq(cmdId), any());
}
@@ -1741,7 +1741,7 @@ public class WifiVendorHalTest {
bucketSettings.period_ms = 16000;
bucketSettings.report_events = WifiScanner.REPORT_EVENT_AFTER_EACH_SCAN;
settings.buckets = new WifiNative.BucketSettings[] {bucketSettings};
- assertTrue(mWifiVendorHal.startScan(settings, eventHandler));
+ assertTrue(mWifiVendorHal.startBgScan(settings, eventHandler));
}
// Create a pair of HIDL scan result and its corresponding framework scan result for