diff options
author | Roshan Pius <rpius@google.com> | 2018-04-23 14:13:36 -0700 |
---|---|---|
committer | Roshan Pius <rpius@google.com> | 2018-05-07 11:26:24 -0700 |
commit | ee0920fb68d2f4447936301ce3192c345224e8e7 (patch) | |
tree | 4ffd608caa4889faee170470e7073779ede331f1 /tests | |
parent | 83b45d8dee3d3557e5aa6299a9c618d082b3a9d2 (diff) |
WifiNetworkSelector: Networks with no internet should not be sufficient
Bug: 72635747
Test: Unit tests
Change-Id: If0f1599a7ad5c3963b075624d60558a7e40da432
Diffstat (limited to 'tests')
-rw-r--r-- | tests/wifitests/src/com/android/server/wifi/WifiNetworkSelectorTest.java | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/WifiNetworkSelectorTest.java b/tests/wifitests/src/com/android/server/wifi/WifiNetworkSelectorTest.java index 6fab007b7..23003c2f0 100644 --- a/tests/wifitests/src/com/android/server/wifi/WifiNetworkSelectorTest.java +++ b/tests/wifitests/src/com/android/server/wifi/WifiNetworkSelectorTest.java @@ -427,6 +427,56 @@ public class WifiNetworkSelectorTest { } /** + * New network selection is performed if the currently connected network + * has no internet access and the user did not explicitly choose to stay connected. + * + * WifiStateMachine is connected to a network with no internet connectivity. + * scanDetails contains a valid networks. + * Perform a network selection after the first one. + * + * Expected behavior: the first network is recommended by Network Selector + */ + @Test + public void noInternetAccessNetworkIsNotSufficient() { + String[] ssids = {"\"test1\""}; + String[] bssids = {"6c:f3:7f:ae:8c:f3"}; + int[] freqs = {5180}; + String[] caps = {"[WPA2-EAP-CCMP][ESS]"}; + int[] levels = {mThresholdQualifiedRssi5G + 5}; + int[] securities = {SECURITY_PSK}; + + ScanDetailsAndWifiConfigs scanDetailsAndConfigs = + WifiNetworkSelectorTestUtil.setupScanDetailsAndConfigStore(ssids, bssids, + freqs, caps, levels, securities, mWifiConfigManager, mClock); + List<ScanDetail> scanDetails = scanDetailsAndConfigs.getScanDetails(); + HashSet<String> blacklist = new HashSet<String>(); + WifiConfiguration[] savedConfigs = scanDetailsAndConfigs.getWifiConfigs(); + + // connect to test1 + mWifiNetworkSelector.selectNetwork(scanDetails, blacklist, mWifiInfo, false, true, false); + when(mWifiInfo.getNetworkId()).thenReturn(0); + when(mWifiInfo.getBSSID()).thenReturn(bssids[0]); + when(mWifiInfo.is24GHz()).thenReturn(false); + when(mWifiInfo.is5GHz()).thenReturn(true); + when(mWifiInfo.getFrequency()).thenReturn(5000); + when(mWifiInfo.getRssi()).thenReturn(levels[0]); + + when(mClock.getElapsedSinceBootMillis()).thenReturn(SystemClock.elapsedRealtime() + + WifiNetworkSelector.MINIMUM_NETWORK_SELECTION_INTERVAL_MS + 2000); + + // Increment the network's no internet access reports. + savedConfigs[0].numNoInternetAccessReports = 5; + + // Do another network selection. + WifiConfiguration candidate = mWifiNetworkSelector.selectNetwork(scanDetails, + blacklist, mWifiInfo, true, false, false); + + ScanResult chosenScanResult = scanDetails.get(0).getScanResult(); + WifiNetworkSelectorTestUtil.verifySelectedScanResult(mWifiConfigManager, + chosenScanResult, candidate); + } + + /** * Blacklisted BSSID is filtered out for network selection. * * WifiStateMachine is disconnected. |