Remove ability to set frequency from WifiAssociationTest
This is no longer a supported API. Bug: 31148223 Test: This code would no longer compile Change-Id: I2d8ee6a40eda7e0f1a266cb0579aff2e504f29a7
This commit is contained in:
@@ -63,11 +63,6 @@ public class WifiAssociationTest extends ConnectivityManagerTestBase {
|
||||
|
||||
String password = arguments.getString("password");
|
||||
|
||||
String freqStr = arguments.getString("frequency-band");
|
||||
if (freqStr != null) {
|
||||
setFrequencyBand(freqStr);
|
||||
}
|
||||
|
||||
assertTrue("enable Wifi failed", enableWifi());
|
||||
WifiInfo wi = mWifiManager.getConnectionInfo();
|
||||
logv("%s", wi);
|
||||
@@ -79,28 +74,6 @@ public class WifiAssociationTest extends ConnectivityManagerTestBase {
|
||||
connectToWifi(config);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the frequency band and verify that it has been set.
|
||||
*/
|
||||
private void setFrequencyBand(String frequencyBandStr) {
|
||||
int frequencyBand = -1;
|
||||
if ("2.4".equals(frequencyBandStr)) {
|
||||
frequencyBand = WifiManager.WIFI_FREQUENCY_BAND_2GHZ;
|
||||
} else if ("5.0".equals(frequencyBandStr)) {
|
||||
frequencyBand = WifiManager.WIFI_FREQUENCY_BAND_5GHZ;
|
||||
} else if ("auto".equals(frequencyBandStr)) {
|
||||
frequencyBand = WifiManager.WIFI_FREQUENCY_BAND_AUTO;
|
||||
} else {
|
||||
fail("Invalid frequency-band");
|
||||
}
|
||||
if (mWifiManager.getFrequencyBand() != frequencyBand) {
|
||||
logv("Set frequency band to %s", frequencyBandStr);
|
||||
mWifiManager.setFrequencyBand(frequencyBand, true);
|
||||
}
|
||||
assertEquals("Specified frequency band does not match operational band",
|
||||
frequencyBand, mWifiManager.getFrequencyBand());
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the {@link WifiConfiguration} based on ssid, security, and password.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user