1 /* 2 * Copyright (C) 2023 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.settings.ui 18 19 import android.nfc.NfcAdapter 20 import android.provider.Settings 21 import androidx.test.ext.junit.runners.AndroidJUnit4 22 import androidx.test.platform.app.InstrumentationRegistry 23 import androidx.test.uiautomator.UiDevice 24 import com.android.settings.ui.testutils.SettingsTestUtils.assertHasTexts 25 import com.android.settings.ui.testutils.SettingsTestUtils.startMainActivityFromHomeScreen 26 import com.google.common.truth.TruthJUnit.assume 27 import org.junit.Before 28 import org.junit.Test 29 import org.junit.runner.RunWith 30 31 @RunWith(AndroidJUnit4::class) 32 class NfcSettingsTest { 33 private val instrumentation = InstrumentationRegistry.getInstrumentation() 34 private val device = UiDevice.getInstance(instrumentation) 35 36 @Before setUpnull37 fun setUp() { 38 assume().that(NfcAdapter.getDefaultAdapter(instrumentation.context)).isNotNull() 39 device.startMainActivityFromHomeScreen(Settings.ACTION_NFC_SETTINGS) 40 } 41 42 @Test hasTextsnull43 fun hasTexts() { 44 device.assertHasTexts(ON_SCREEN_TEXTS) 45 } 46 47 private companion object { 48 val ON_SCREEN_TEXTS = listOf( 49 "Use NFC", 50 "Require device unlock for NFC", 51 "Contactless payments", 52 ) 53 } 54 } 55