diff options
author | Roshan Pius <rpius@google.com> | 2017-03-14 15:37:56 -0700 |
---|---|---|
committer | Roshan Pius <rpius@google.com> | 2017-03-17 17:44:03 +0000 |
commit | a21bea22a9d442b5886207855ddf63ffee972f0b (patch) | |
tree | 832c91895dc75e8ee74c7eacb06b095c1331defe /tests | |
parent | 8923f3bd350a561916617b1dcc718a36ece586c0 (diff) |
WifiStateMachine: Fix WPS handling
Since wpa_supplicant is no longer our config store, we need to read the
network params out of it add it to WifiConfigManager after WPS network
addition.
Bug: 34714021
Test: Manual tests. Able to connect to wps networks now.
Test: Some unit tests. It can be better, but need to figure out how to
extract the message reply from WSM.
Change-Id: I41231698c7e99ec46d34a60a70c04a6ee25ebfe4
Diffstat (limited to 'tests')
-rw-r--r-- | tests/wifitests/src/com/android/server/wifi/WifiStateMachineTest.java | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/WifiStateMachineTest.java b/tests/wifitests/src/com/android/server/wifi/WifiStateMachineTest.java index 4ea233a31..4a331e3cb 100644 --- a/tests/wifitests/src/com/android/server/wifi/WifiStateMachineTest.java +++ b/tests/wifitests/src/com/android/server/wifi/WifiStateMachineTest.java @@ -44,6 +44,7 @@ import android.net.wifi.WifiInfo; import android.net.wifi.WifiManager; import android.net.wifi.WifiScanner; import android.net.wifi.WifiSsid; +import android.net.wifi.WpsInfo; import android.net.wifi.hotspot2.PasspointConfiguration; import android.net.wifi.hotspot2.pps.HomeSp; import android.net.wifi.p2p.IWifiP2pManager; @@ -70,6 +71,7 @@ import android.test.mock.MockContentProvider; import android.test.mock.MockContentResolver; import android.test.suitebuilder.annotation.SmallTest; import android.util.Log; +import android.util.SparseArray; import com.android.internal.R; import com.android.internal.app.IBatteryStats; @@ -96,6 +98,7 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.HashSet; import java.util.List; +import java.util.Map; import java.util.Set; import java.util.concurrent.CountDownLatch; @@ -1271,4 +1274,120 @@ public class WifiStateMachineTest { mLooper.stopAutoDispatch(); verify(mPasspointManager, never()).getMatchingWifiConfig(any(ScanResult.class)); } + + /** + * Verify successful Wps PBC network connection. + */ + @Test + public void wpsPbcConnectSuccess() throws Exception { + loadComponentsInStaMode(); + mWsm.setOperationalMode(WifiStateMachine.CONNECT_MODE); + mLooper.dispatchAll(); + + when(mWifiNative.startWpsPbc(anyString())).thenReturn(true); + WpsInfo wpsInfo = new WpsInfo(); + wpsInfo.setup = WpsInfo.PBC; + + mLooper.startAutoDispatch(); + mWsm.sendMessage(WifiManager.START_WPS, 0, 0, wpsInfo); + mLooper.stopAutoDispatch(); + verify(mWifiNative).startWpsPbc(anyString()); + + assertEquals("WpsRunningState", getCurrentState().getName()); + + setupMocksForWpsNetworkMigration(); + + mLooper.startAutoDispatch(); + mWsm.sendMessage(WifiMonitor.NETWORK_CONNECTION_EVENT, 0, 0, null); + mLooper.stopAutoDispatch(); + + assertEquals("DisconnectedState", getCurrentState().getName()); + } + + /** + * Verify failure in starting Wps PBC network connection. + */ + @Test + public void wpsPbcConnectFailure() throws Exception { + loadComponentsInStaMode(); + mWsm.setOperationalMode(WifiStateMachine.CONNECT_MODE); + mLooper.dispatchAll(); + + when(mWifiNative.startWpsPbc(anyString())).thenReturn(false); + WpsInfo wpsInfo = new WpsInfo(); + wpsInfo.setup = WpsInfo.PBC; + + mLooper.startAutoDispatch(); + mWsm.sendMessage(WifiManager.START_WPS, 0, 0, wpsInfo); + mLooper.stopAutoDispatch(); + verify(mWifiNative).startWpsPbc(anyString()); + + assertFalse("WpsRunningState".equals(getCurrentState().getName())); + } + + /** + * Verify successful Wps Pin Display network connection. + */ + @Test + public void wpsPinDisplayConnectSuccess() throws Exception { + loadComponentsInStaMode(); + mWsm.setOperationalMode(WifiStateMachine.CONNECT_MODE); + mLooper.dispatchAll(); + + when(mWifiNative.startWpsPinDisplay(anyString())).thenReturn("34545434"); + WpsInfo wpsInfo = new WpsInfo(); + wpsInfo.setup = WpsInfo.DISPLAY; + + mLooper.startAutoDispatch(); + mWsm.sendMessage(WifiManager.START_WPS, 0, 0, wpsInfo); + mLooper.stopAutoDispatch(); + verify(mWifiNative).startWpsPinDisplay(anyString()); + + assertEquals("WpsRunningState", getCurrentState().getName()); + + setupMocksForWpsNetworkMigration(); + + mLooper.startAutoDispatch(); + mWsm.sendMessage(WifiMonitor.NETWORK_CONNECTION_EVENT, 0, 0, null); + mLooper.stopAutoDispatch(); + + assertEquals("DisconnectedState", getCurrentState().getName()); + } + + /** + * Verify failure in Wps Pin Display network connection. + */ + @Test + public void wpsPinDisplayConnectFailure() throws Exception { + loadComponentsInStaMode(); + mWsm.setOperationalMode(WifiStateMachine.CONNECT_MODE); + mLooper.dispatchAll(); + + when(mWifiNative.startWpsPinDisplay(anyString())).thenReturn(null); + WpsInfo wpsInfo = new WpsInfo(); + wpsInfo.setup = WpsInfo.DISPLAY; + + mLooper.startAutoDispatch(); + mWsm.sendMessage(WifiManager.START_WPS, 0, 0, wpsInfo); + mLooper.stopAutoDispatch(); + verify(mWifiNative).startWpsPinDisplay(anyString()); + + assertFalse("WpsRunningState".equals(getCurrentState().getName())); + } + + private void setupMocksForWpsNetworkMigration() { + int newNetworkId = 5; + // Now trigger the network connection event for adding the WPS network. + doAnswer(new AnswerWithArguments() { + public boolean answer(Map<String, WifiConfiguration> configs, + SparseArray<Map<String, String>> networkExtras) throws Exception { + configs.put("dummy", new WifiConfiguration()); + return true; + } + }).when(mWifiNative).migrateNetworksFromSupplicant(any(Map.class), any(SparseArray.class)); + when(mWifiConfigManager.addOrUpdateNetwork(any(WifiConfiguration.class), anyInt())) + .thenReturn(new NetworkUpdateResult(newNetworkId)); + when(mWifiConfigManager.enableNetwork(eq(newNetworkId), anyBoolean(), anyInt())) + .thenReturn(true); + } } |