Loading src/com/android/settings/biometrics/face/FaceEnrollIntroduction.java +0 −5 Original line number Diff line number Diff line Loading @@ -182,16 +182,11 @@ public class FaceEnrollIntroduction extends BiometricEnrollIntroduction { boolean isFaceStrong = sensors.get(0).sensorStrength == SensorProperties.STRENGTH_STRONG; if (mIsFaceStrong == isFaceStrong) { return; } mIsFaceStrong = isFaceStrong; onFaceStrengthChanged(); } }); onFaceStrengthChanged(); // This path is an entry point for SetNewPasswordController, e.g. // adb shell am start -a android.app.action.SET_NEW_PASSWORD if (mToken == null && BiometricUtils.containsGatekeeperPasswordHandle(getIntent())) { Loading tests/robotests/src/com/android/settings/biometrics/face/FaceEnrollIntroductionTest.java +23 −9 Original line number Diff line number Diff line Loading @@ -32,7 +32,6 @@ import static com.google.common.truth.Truth.assertWithMessage; import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.anyInt; import static org.mockito.Mockito.doAnswer; import static org.mockito.Mockito.doReturn; import static org.mockito.Mockito.spy; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; Loading Loading @@ -61,6 +60,7 @@ import com.android.settings.biometrics.BiometricEnrollBase; import com.android.settings.biometrics.BiometricUtils; import com.android.settings.password.ChooseLockSettingsHelper; import com.android.settings.testutils.FakeFeatureFactory; import com.android.settings.testutils.shadow.SettingsShadowResources; import com.android.settings.testutils.shadow.ShadowDevicePolicyManager; import com.android.settings.testutils.shadow.ShadowLockPatternUtils; import com.android.settings.testutils.shadow.ShadowSensorPrivacyManager; Loading Loading @@ -98,7 +98,8 @@ import java.util.List; ShadowUserManager.class, ShadowUtils.class, ShadowDevicePolicyManager.class, ShadowSensorPrivacyManager.class ShadowSensorPrivacyManager.class, SettingsShadowResources.class }) public class FaceEnrollIntroductionTest { Loading Loading @@ -188,7 +189,6 @@ public class FaceEnrollIntroductionTest { mController = Robolectric.buildActivity( TestFaceEnrollIntroduction.class, testIntent); mActivity = (TestFaceEnrollIntroduction) spy(mController.get()); doReturn(mFaceManager).when(mActivity).getFaceManager(); when(mActivity.getPostureGuidanceIntent()).thenReturn(null); when(mContext.getApplicationContext()).thenReturn(mContext); when(mContext.getSystemService(Context.FACE_SERVICE)).thenReturn(mFaceManager); Loading Loading @@ -313,11 +313,15 @@ public class FaceEnrollIntroductionTest { @Test public void testFaceEnrollIntroduction_hasDescription_weakFace() throws Exception { setupActivity(); SettingsShadowResources.overrideResource( R.bool.config_face_intro_show_less_secure, true); verify(mFaceManager).addAuthenticatorsRegisteredCallback(mCaptor.capture()); CharSequence desc = getGlifLayout(mActivity).getDescriptionText(); assertThat(desc.toString()).isEqualTo( assertThat(getGlifLayout(mActivity).getDescriptionText().toString()).isEqualTo( mContext.getString(R.string.security_settings_face_enroll_introduction_message)); assertThat(mActivity.findViewById(R.id.info_row_less_secure).getVisibility()).isEqualTo( View.GONE); List<FaceSensorPropertiesInternal> props = List.of(new FaceSensorPropertiesInternal( 0 /* id */, Loading @@ -329,18 +333,27 @@ public class FaceEnrollIntroductionTest { true /* supportsSelfIllumination */, false /* resetLockoutRequiresChallenge */)); mCaptor.getValue().onAllAuthenticatorsRegistered(props); desc = getGlifLayout(mActivity).getDescriptionText(); assertThat(desc.toString()).isEqualTo( assertThat(getGlifLayout(mActivity).getDescriptionText().toString()).isEqualTo( mContext.getString(R.string.security_settings_face_enroll_introduction_message)); assertThat(mActivity.findViewById(R.id.info_row_less_secure).getVisibility()).isEqualTo( View.VISIBLE); } @Test public void testFaceEnrollIntroduction_hasDescriptionNoLessSecure_strongFace() throws Exception { setupActivity(); SettingsShadowResources.overrideResource( R.bool.config_face_intro_show_less_secure, true); verify(mFaceManager).addAuthenticatorsRegisteredCallback(mCaptor.capture()); assertThat(getGlifLayout(mActivity).getDescriptionText().toString()).isEqualTo( mContext.getString(R.string.security_settings_face_enroll_introduction_message)); assertThat(mActivity.findViewById(R.id.info_row_less_secure).getVisibility()).isEqualTo( View.GONE); List<FaceSensorPropertiesInternal> props = List.of(new FaceSensorPropertiesInternal( 0 /* id */, FaceSensorProperties.STRENGTH_STRONG, Loading @@ -351,11 +364,12 @@ public class FaceEnrollIntroductionTest { true /* supportsSelfIllumination */, false /* resetLockoutRequiresChallenge */)); mCaptor.getValue().onAllAuthenticatorsRegistered(props); CharSequence desc = getGlifLayout(mActivity).getDescriptionText(); assertThat(desc.toString()).isEqualTo( assertThat(getGlifLayout(mActivity).getDescriptionText().toString()).isEqualTo( mContext.getString( R.string.security_settings_face_enroll_introduction_message_class3)); assertThat(mActivity.findViewById(R.id.info_row_less_secure).getVisibility()).isEqualTo( View.GONE); } @Test Loading Loading
src/com/android/settings/biometrics/face/FaceEnrollIntroduction.java +0 −5 Original line number Diff line number Diff line Loading @@ -182,16 +182,11 @@ public class FaceEnrollIntroduction extends BiometricEnrollIntroduction { boolean isFaceStrong = sensors.get(0).sensorStrength == SensorProperties.STRENGTH_STRONG; if (mIsFaceStrong == isFaceStrong) { return; } mIsFaceStrong = isFaceStrong; onFaceStrengthChanged(); } }); onFaceStrengthChanged(); // This path is an entry point for SetNewPasswordController, e.g. // adb shell am start -a android.app.action.SET_NEW_PASSWORD if (mToken == null && BiometricUtils.containsGatekeeperPasswordHandle(getIntent())) { Loading
tests/robotests/src/com/android/settings/biometrics/face/FaceEnrollIntroductionTest.java +23 −9 Original line number Diff line number Diff line Loading @@ -32,7 +32,6 @@ import static com.google.common.truth.Truth.assertWithMessage; import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.anyInt; import static org.mockito.Mockito.doAnswer; import static org.mockito.Mockito.doReturn; import static org.mockito.Mockito.spy; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; Loading Loading @@ -61,6 +60,7 @@ import com.android.settings.biometrics.BiometricEnrollBase; import com.android.settings.biometrics.BiometricUtils; import com.android.settings.password.ChooseLockSettingsHelper; import com.android.settings.testutils.FakeFeatureFactory; import com.android.settings.testutils.shadow.SettingsShadowResources; import com.android.settings.testutils.shadow.ShadowDevicePolicyManager; import com.android.settings.testutils.shadow.ShadowLockPatternUtils; import com.android.settings.testutils.shadow.ShadowSensorPrivacyManager; Loading Loading @@ -98,7 +98,8 @@ import java.util.List; ShadowUserManager.class, ShadowUtils.class, ShadowDevicePolicyManager.class, ShadowSensorPrivacyManager.class ShadowSensorPrivacyManager.class, SettingsShadowResources.class }) public class FaceEnrollIntroductionTest { Loading Loading @@ -188,7 +189,6 @@ public class FaceEnrollIntroductionTest { mController = Robolectric.buildActivity( TestFaceEnrollIntroduction.class, testIntent); mActivity = (TestFaceEnrollIntroduction) spy(mController.get()); doReturn(mFaceManager).when(mActivity).getFaceManager(); when(mActivity.getPostureGuidanceIntent()).thenReturn(null); when(mContext.getApplicationContext()).thenReturn(mContext); when(mContext.getSystemService(Context.FACE_SERVICE)).thenReturn(mFaceManager); Loading Loading @@ -313,11 +313,15 @@ public class FaceEnrollIntroductionTest { @Test public void testFaceEnrollIntroduction_hasDescription_weakFace() throws Exception { setupActivity(); SettingsShadowResources.overrideResource( R.bool.config_face_intro_show_less_secure, true); verify(mFaceManager).addAuthenticatorsRegisteredCallback(mCaptor.capture()); CharSequence desc = getGlifLayout(mActivity).getDescriptionText(); assertThat(desc.toString()).isEqualTo( assertThat(getGlifLayout(mActivity).getDescriptionText().toString()).isEqualTo( mContext.getString(R.string.security_settings_face_enroll_introduction_message)); assertThat(mActivity.findViewById(R.id.info_row_less_secure).getVisibility()).isEqualTo( View.GONE); List<FaceSensorPropertiesInternal> props = List.of(new FaceSensorPropertiesInternal( 0 /* id */, Loading @@ -329,18 +333,27 @@ public class FaceEnrollIntroductionTest { true /* supportsSelfIllumination */, false /* resetLockoutRequiresChallenge */)); mCaptor.getValue().onAllAuthenticatorsRegistered(props); desc = getGlifLayout(mActivity).getDescriptionText(); assertThat(desc.toString()).isEqualTo( assertThat(getGlifLayout(mActivity).getDescriptionText().toString()).isEqualTo( mContext.getString(R.string.security_settings_face_enroll_introduction_message)); assertThat(mActivity.findViewById(R.id.info_row_less_secure).getVisibility()).isEqualTo( View.VISIBLE); } @Test public void testFaceEnrollIntroduction_hasDescriptionNoLessSecure_strongFace() throws Exception { setupActivity(); SettingsShadowResources.overrideResource( R.bool.config_face_intro_show_less_secure, true); verify(mFaceManager).addAuthenticatorsRegisteredCallback(mCaptor.capture()); assertThat(getGlifLayout(mActivity).getDescriptionText().toString()).isEqualTo( mContext.getString(R.string.security_settings_face_enroll_introduction_message)); assertThat(mActivity.findViewById(R.id.info_row_less_secure).getVisibility()).isEqualTo( View.GONE); List<FaceSensorPropertiesInternal> props = List.of(new FaceSensorPropertiesInternal( 0 /* id */, FaceSensorProperties.STRENGTH_STRONG, Loading @@ -351,11 +364,12 @@ public class FaceEnrollIntroductionTest { true /* supportsSelfIllumination */, false /* resetLockoutRequiresChallenge */)); mCaptor.getValue().onAllAuthenticatorsRegistered(props); CharSequence desc = getGlifLayout(mActivity).getDescriptionText(); assertThat(desc.toString()).isEqualTo( assertThat(getGlifLayout(mActivity).getDescriptionText().toString()).isEqualTo( mContext.getString( R.string.security_settings_face_enroll_introduction_message_class3)); assertThat(mActivity.findViewById(R.id.info_row_less_secure).getVisibility()).isEqualTo( View.GONE); } @Test Loading