blob: 0135efb0597d992f6c10b4ab2150c61c06af6e62 [file] [log] [blame]
/*
* 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.support.test.filters.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);
}
}