blob: c368ab33e255240db0a59655abbb61e56a5c2b34 [file] [log] [blame]
/*
* Copyright 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 androidx.biometric.integration.testapp
import android.content.Context
import android.os.Build
import androidx.test.core.app.ApplicationProvider
import androidx.test.espresso.Espresso.onView
import androidx.test.espresso.action.ViewActions.click
import androidx.test.espresso.assertion.ViewAssertions.matches
import androidx.test.espresso.matcher.ViewMatchers.withId
import androidx.test.espresso.matcher.ViewMatchers.withText
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.filters.LargeTest
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.uiautomator.UiDevice
import org.hamcrest.Matchers.containsString
import org.junit.After
import org.junit.Assume.assumeFalse
import org.junit.Assume.assumeTrue
import org.junit.Before
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
@LargeTest
@RunWith(AndroidJUnit4::class)
class BiometricPromptEnrolledTest {
@Suppress("DEPRECATION")
@get:Rule
val activityRule = androidx.test.rule.ActivityTestRule(BiometricPromptTestActivity::class.java)
private lateinit var context: Context
private lateinit var device: UiDevice
@Before
fun setUp() {
context = ApplicationProvider.getApplicationContext()
assumeTrue(hasEnrolledBiometric(context))
assumeFalse(isDeviceLocked(context))
device = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation())
}
@After
fun tearDown() {
if (::device.isInitialized) {
changeOrientation(activityRule.activity, device, landscape = false)
navigateToHomeScreen(device)
device.pressBack()
}
}
@Test
fun testBiometricOnlyAuth_SendsError_WhenBackPressed() {
onView(withId(R.id.authenticate_button)).perform(click())
device.pressBack()
onView(withId(R.id.log_text_view)).check(
matches(withText(containsString("onAuthenticationError")))
)
}
@Test
fun testBiometricOrCredentialAuth_SendsError_WhenBackPressed() {
onView(withId(R.id.allow_device_credential_checkbox)).perform(click())
testBiometricOnlyAuth_SendsError_WhenBackPressed()
}
@Test
fun testBiometricOnlyAuth_SendsError_WhenBackPressedAfterRotation() {
onView(withId(R.id.authenticate_button)).perform(click())
changeOrientation(activityRule.activity, device, landscape = true)
device.pressBack()
onView(withId(R.id.log_text_view)).check(
matches(withText(containsString("onAuthenticationError")))
)
}
@Test
fun testBiometricOrCredentialAuth_SendsError_WhenBackPressedAfterRotation() {
onView(withId(R.id.allow_device_credential_checkbox)).perform(click())
testBiometricOnlyAuth_SendsError_WhenBackPressedAfterRotation()
}
@Test
fun testBiometricOnlyAuth_SendsError_WhenBackPressedAfterRepeatedRotation() {
onView(withId(R.id.authenticate_button)).perform(click())
for (i in 1..3) {
changeOrientation(activityRule.activity, device, landscape = true)
changeOrientation(activityRule.activity, device, landscape = false)
}
device.pressBack()
onView(withId(R.id.log_text_view)).check(
matches(withText(containsString("onAuthenticationError")))
)
}
@Test
fun testBiometricOrCredentialAuth_SendsError_WhenBackPressedAfterRepeatedRotation() {
onView(withId(R.id.allow_device_credential_checkbox)).perform(click())
testBiometricOnlyAuth_SendsError_WhenBackPressedAfterRepeatedRotation()
}
@Test
fun testBiometricOnlyAuth_SendsError_WhenCanceledOnConfigurationChange() {
onView(withId(R.id.cancel_config_change_checkbox)).perform(click())
onView(withId(R.id.authenticate_button)).perform(click())
changeOrientation(activityRule.activity, device, landscape = true)
onView(withId(R.id.log_text_view)).check(
matches(withText(containsString("onAuthenticationError")))
)
}
@Test
fun testBiometricOrCredentialAuth_SendsError_WhenCanceledOnConfigurationChange() {
onView(withId(R.id.allow_device_credential_checkbox)).perform(click())
testBiometricOnlyAuth_SendsError_WhenCanceledOnConfigurationChange()
}
@Test
fun testBiometricOnlyAuth_SendsError_WhenActivityBackgrounded() {
onView(withId(R.id.authenticate_button)).perform(click())
navigateToHomeScreen(device)
bringToForeground(activityRule.activity)
onView(withId(R.id.log_text_view)).check(
matches(withText(containsString("onAuthenticationError")))
)
}
@Test
fun testBiometricOrCredentialAuth_SendsError_WhenActivityBackgrounded() {
// TODO(b/162022588): Fix this for Pixel devices on API 29.
assumeFalse(Build.VERSION.SDK_INT == Build.VERSION_CODES.Q)
onView(withId(R.id.allow_device_credential_checkbox)).perform(click())
testBiometricOnlyAuth_SendsError_WhenActivityBackgrounded()
}
}