Merge "Add a dependency test for getFrequency" am: 7b965d116d

Original change: https://android-review.googlesource.com/c/platform/cts/+/1398411

Change-Id: Icf8f6f4c61fb435137649ccf3f4bd91224707ea7
This commit is contained in:
Treehugger Robot
2020-08-14 04:21:49 +00:00
committed by Automerger Merge Worker

View File

@@ -0,0 +1,53 @@
/*
* Copyright (C) 2020 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 android.net.cts
import android.content.pm.PackageManager
import android.net.cts.util.CtsNetUtils
import android.net.wifi.WifiManager
import android.os.Build
import androidx.test.filters.SdkSuppress
import androidx.test.platform.app.InstrumentationRegistry
import org.junit.Assume.assumeTrue
import org.junit.Test
import kotlin.test.assertNotNull
import kotlin.test.assertTrue
/**
* Basic tests for APIs used by the network stack module.
*/
class NetworkStackDependenciesTest {
@Test
@SdkSuppress(maxSdkVersion = Build.VERSION_CODES.Q)
fun testGetFrequency() {
// WifiInfo#getFrequency was missing a CTS test in Q: this test is run as part of MTS on Q
// devices to ensure it behaves correctly.
val context = InstrumentationRegistry.getInstrumentation().getContext()
assumeTrue("This test only applies to devices that support wifi",
context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_WIFI))
val wifiManager = context.getSystemService(WifiManager::class.java)
assertNotNull(wifiManager, "Device supports wifi but there is no WifiManager")
CtsNetUtils(context).ensureWifiConnected()
val wifiInfo = wifiManager.getConnectionInfo()
// The NetworkStack can handle any value of getFrequency; unknown frequencies will not be
// classified in metrics, but this is expected behavior. It is only important that the
// method does not crash. Still verify that the frequency is positive
val frequency = wifiInfo.getFrequency()
assertTrue(frequency > 0, "Frequency must be > 0")
}
}