summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGlen Kuhne <kuh@google.com>2017-08-08 20:15:08 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-08-08 20:15:08 +0000
commitf7443e9d5cab764fbe57581c48e9df65e7790adb (patch)
tree2b06e0a596e9670381a3b8bce3dc80bd9c2296cd /tests
parent68eb30cc4e4d1af1dae499c7d865705c6528231d (diff)
parent60b2a0be06e7629ef48c6841ec5f5086d61001ba (diff)
Merge "Move ScanResultMatchInfo to its own class" into oc-dr1-dev
am: 60b2a0be06 Change-Id: Id54cbfda0f25d4df53ce575292d55ab3b61bbbb4
Diffstat (limited to 'tests')
-rw-r--r--tests/wifitests/src/com/android/server/wifi/ScanResultMatchInfoTest.java95
-rw-r--r--tests/wifitests/src/com/android/server/wifi/WifiConfigurationTestUtil.java6
2 files changed, 100 insertions, 1 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/ScanResultMatchInfoTest.java b/tests/wifitests/src/com/android/server/wifi/ScanResultMatchInfoTest.java
new file mode 100644
index 000000000..e2905a64f
--- /dev/null
+++ b/tests/wifitests/src/com/android/server/wifi/ScanResultMatchInfoTest.java
@@ -0,0 +1,95 @@
+/*
+ * Copyright (C) 2017 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.android.server.wifi;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+import static org.mockito.Mockito.*;
+
+import android.net.wifi.WifiConfiguration;
+import android.test.suitebuilder.annotation.SmallTest;
+
+import org.junit.Test;
+
+/**
+ * Unit tests for {@link com.android.server.wifi.ScanResultMatchInfoTest}.
+ */
+@SmallTest
+public class ScanResultMatchInfoTest {
+ /**
+ * Tests that equivalent ScanResultMatchInfo objects are created for WifiConfigurations and
+ * their associated ScanResult
+ */
+ @Test
+ public void testScanResultMatchesWifiConfiguration() {
+ WifiConfiguration conf =
+ WifiConfigurationTestUtil.createPskNetwork("\"PrettyFlyForAWifi\"");
+ ScanDetail scan = createScanDetailForNetwork(conf, "AA:AA:AA:AA:AA:AA");
+ assertEquals(ScanResultMatchInfo.fromWifiConfiguration(conf),
+ ScanResultMatchInfo.fromScanResult(scan.getScanResult()));
+
+ conf = WifiConfigurationTestUtil.createOpenNetwork("\"WIFIght the inevitable\"");
+ scan = createScanDetailForNetwork(conf, "BB:BB:BB:BB:BB:BB");
+ assertEquals(ScanResultMatchInfo.fromWifiConfiguration(conf),
+ ScanResultMatchInfo.fromScanResult(scan.getScanResult()));
+ }
+
+ /**
+ * Tests that multiple ScanResults with different BSSIDs will produce equivalent
+ * ScanResultMatchInfo objects to their associated WifiConfiguration
+ */
+ @Test
+ public void testDifferentBssidScanResultsMatch() {
+ WifiConfiguration conf =
+ WifiConfigurationTestUtil.createPskNetwork("\"PrettyFlyForAWifi-5G\"");
+ ScanDetail scan1 = createScanDetailForNetwork(conf, "AA:AA:AA:AA:AA:AA");
+ ScanDetail scan2 = createScanDetailForNetwork(conf, "BB:BB:BB:BB:BB:BB");
+ assertFalse(scan1.getScanResult().BSSID.equals(scan2.getScanResult().BSSID));
+ assertEquals(ScanResultMatchInfo.fromScanResult(scan1.getScanResult()),
+ ScanResultMatchInfo.fromScanResult(scan2.getScanResult()));
+ }
+
+ /**
+ * Tests that ScanResultMatchInfo objects created for different SSIDs or security types are not
+ * equivalent
+ */
+ @Test
+ public void testDifferentNetworkScanResultsDontMatch() {
+ WifiConfiguration psk =
+ WifiConfigurationTestUtil.createPskNetwork("\"Series Of Tubes\"");
+ WifiConfiguration open1 =
+ WifiConfigurationTestUtil.createOpenNetwork("\"Series Of Tubes\"");
+ WifiConfiguration open2 =
+ WifiConfigurationTestUtil.createOpenNetwork("\"Mom, Click Here For Internet\"");
+ ScanDetail scanOpen1 = createScanDetailForNetwork(open1, "AA:AA:AA:AA:AA:AA");
+ ScanDetail scanOpen2 = createScanDetailForNetwork(open2, "BB:BB:BB:BB:BB:BB");
+ ScanDetail scanPsk = createScanDetailForNetwork(psk, "CC:CC:CC:CC:CC:CC");
+ assertTrue(ScanResultMatchInfo.fromScanResult(scanOpen1.getScanResult())
+ != ScanResultMatchInfo.fromScanResult(scanOpen2.getScanResult()));
+ assertTrue(ScanResultMatchInfo.fromScanResult(scanOpen1.getScanResult())
+ != ScanResultMatchInfo.fromScanResult(scanPsk.getScanResult()));
+ }
+
+ /**
+ * Creates a scan detail corresponding to the provided network and given BSSID
+ */
+ private ScanDetail createScanDetailForNetwork(
+ WifiConfiguration configuration, String bssid) {
+ return WifiConfigurationTestUtil.createScanDetailForNetwork(configuration, bssid, -40,
+ 2402, 0, 0);
+ }
+}
diff --git a/tests/wifitests/src/com/android/server/wifi/WifiConfigurationTestUtil.java b/tests/wifitests/src/com/android/server/wifi/WifiConfigurationTestUtil.java
index 62a68d47b..16c9f300c 100644
--- a/tests/wifitests/src/com/android/server/wifi/WifiConfigurationTestUtil.java
+++ b/tests/wifitests/src/com/android/server/wifi/WifiConfigurationTestUtil.java
@@ -225,7 +225,11 @@ public class WifiConfigurationTestUtil {
* use a static index to avoid duplicate configurations.
*/
public static WifiConfiguration createOpenNetwork() {
- return generateWifiConfig(TEST_NETWORK_ID, TEST_UID, createNewSSID(), true, true, null,
+ return createOpenNetwork(createNewSSID());
+ }
+
+ public static WifiConfiguration createOpenNetwork(String ssid) {
+ return generateWifiConfig(TEST_NETWORK_ID, TEST_UID, ssid, true, true, null,
null, SECURITY_NONE);
}