Fix Apn network type tests

Bug: 347114536
Test: unit test
Change-Id: Ib5bd331e9a28e89e426bf423e6086d1c2d288961
This commit is contained in:
Chaohui Wang
2024-06-17 11:48:53 +08:00
parent 9bd19f4604
commit 288b40ee4f
2 changed files with 85 additions and 48 deletions

View File

@@ -58,7 +58,6 @@ class ApnEditPageProviderTest {
private val apnEnable = context.resources.getString(R.string.carrier_enabled)
private val apnProtocolOptions =
context.resources.getStringArray(R.array.apn_protocol_entries).toList()
private val networkType = context.resources.getString(R.string.network_type)
private val passwordTitle = context.resources.getString(R.string.apn_password)
private val apnInit = ApnData(
name = apnName,
@@ -167,48 +166,6 @@ class ApnEditPageProviderTest {
composeTestRule.onNodeWithText(apnEnable, true).assertIsOff()
}
@Test
fun network_type_displayed() {
composeTestRule.setContent {
ApnPage(apnInit, remember { apnData }, uri)
}
composeTestRule.onRoot().onChild().onChildAt(0)
.performScrollToNode(hasText(networkType, true))
composeTestRule.onNodeWithText(networkType, true).assertIsDisplayed()
}
@Test
fun network_type_changed() {
composeTestRule.setContent {
ApnPage(apnInit, remember { apnData }, uri)
}
composeTestRule.onRoot().onChild().onChildAt(0)
.performScrollToNode(hasText(networkType, true))
composeTestRule.onNodeWithText(networkType, true).performClick()
composeTestRule.onNodeWithText(NETWORK_TYPE_LTE, true).performClick()
composeTestRule.onNode(hasText(NETWORK_TYPE_UNSPECIFIED) and isFocused(), true)
.assertDoesNotExist()
composeTestRule.onNode(hasText(NETWORK_TYPE_LTE) and isFocused(), true).assertIsDisplayed()
}
@Test
fun network_type_changed_back2Default() {
composeTestRule.setContent {
ApnPage(apnInit, remember { apnData }, uri)
}
composeTestRule.onRoot().onChild().onChildAt(0)
.performScrollToNode(hasText(networkType, true))
composeTestRule.onNodeWithText(networkType, true).performClick()
composeTestRule.onNodeWithText(NETWORK_TYPE_LTE, true).performClick()
composeTestRule.onNode(hasText(NETWORK_TYPE_UNSPECIFIED) and isFocused(), true)
.assertDoesNotExist()
composeTestRule.onNode(hasText(NETWORK_TYPE_LTE) and isFocused(), true).assertIsDisplayed()
composeTestRule.onAllNodesWithText(NETWORK_TYPE_LTE, true).onLast().performClick()
composeTestRule.onNode(hasText(NETWORK_TYPE_UNSPECIFIED) and isFocused(), true)
.assertIsDisplayed()
composeTestRule.onNode(hasText(NETWORK_TYPE_LTE) and isFocused(), true).assertDoesNotExist()
}
@Test
fun password_displayed() {
composeTestRule.setContent {
@@ -218,9 +175,4 @@ class ApnEditPageProviderTest {
.performScrollToNode(hasText(passwordTitle, true))
composeTestRule.onNodeWithText(passwordTitle, true).assertIsDisplayed()
}
private companion object {
const val NETWORK_TYPE_UNSPECIFIED = "Unspecified"
const val NETWORK_TYPE_LTE = "LTE"
}
}

View File

@@ -0,0 +1,85 @@
/*
* Copyright (C) 2024 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.settings.network.apn
import android.content.Context
import android.telephony.TelephonyManager
import androidx.compose.ui.semantics.Role
import androidx.compose.ui.test.assertIsDisplayed
import androidx.compose.ui.test.hasText
import androidx.compose.ui.test.isToggleable
import androidx.compose.ui.test.junit4.ComposeTestRule
import androidx.compose.ui.test.junit4.createComposeRule
import androidx.compose.ui.test.onNodeWithText
import androidx.compose.ui.test.performClick
import androidx.test.core.app.ApplicationProvider
import androidx.test.ext.junit.runners.AndroidJUnit4
import com.android.settings.R
import com.android.settingslib.spa.testutils.hasRole
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
@RunWith(AndroidJUnit4::class)
class ApnNetworkTypeCheckBoxTest {
@get:Rule val composeTestRule = createComposeRule()
private val context: Context = ApplicationProvider.getApplicationContext()
private val apnData = ApnData()
@Test
fun networkType_displayed() {
composeTestRule.setContent { ApnNetworkTypeCheckBox(apnData) {} }
composeTestRule.onNodeWithText(context.getString(R.string.network_type)).assertIsDisplayed()
}
@Test
fun networkType_changed() {
composeTestRule.setContent { ApnNetworkTypeCheckBox(apnData) {} }
composeTestRule.onNodeWithText(context.getString(R.string.network_type)).performClick()
composeTestRule.onNode(hasText(LTE_TEXT) and isToggleable()).performClick()
composeTestRule
.onDropdownListWithText(context.getString(R.string.network_type_unspecified))
.assertDoesNotExist()
composeTestRule.onDropdownListWithText(LTE_TEXT).assertIsDisplayed()
}
@Test
fun networkType_changed_back2Default() {
composeTestRule.setContent { ApnNetworkTypeCheckBox(apnData) {} }
composeTestRule.onNodeWithText(context.getString(R.string.network_type)).performClick()
composeTestRule.onNode(hasText(LTE_TEXT) and isToggleable()).performClick()
composeTestRule.onNode(hasText(LTE_TEXT) and isToggleable()).performClick()
composeTestRule
.onDropdownListWithText(context.getString(R.string.network_type_unspecified))
.assertIsDisplayed()
composeTestRule.onDropdownListWithText(LTE_TEXT).assertDoesNotExist()
}
private fun ComposeTestRule.onDropdownListWithText(text: String) =
onNode(hasText(text) and hasRole(Role.DropdownList))
private companion object {
val LTE_TEXT = TelephonyManager.getNetworkTypeName(TelephonyManager.NETWORK_TYPE_LTE)
}
}