Search in sources :

Example 11 with PartnerCustomizationLayout

use of com.google.android.setupcompat.PartnerCustomizationLayout in project Resurrection_packages_apps_Settings by ResurrectionRemix.

the class SetupChooseLockPasswordAppTest method clearIsShown_when_somethingEnteredToConfirm.

@Test
public void clearIsShown_when_somethingEnteredToConfirm() {
    SetupChooseLockPassword activity = mActivityTestRule.launchActivity(null);
    PartnerCustomizationLayout layout = activity.findViewById(R.id.setup_wizard_layout);
    onView(withId(R.id.password_entry)).perform(ViewActions.typeText("1234")).perform(pressKey(KeyEvent.KEYCODE_ENTER));
    mActivityTestRule.launchActivity(null);
    onView(withId(R.id.password_entry)).perform(ViewActions.typeText("1234")).perform(pressKey(KeyEvent.KEYCODE_ENTER)).perform(ViewActions.typeText("1"));
    // clear should be present if text field contains content
    assertThat(layout.getMixin(FooterBarMixin.class).getSecondaryButtonView().getVisibility()).isEqualTo(View.VISIBLE);
}
Also used : PartnerCustomizationLayout(com.google.android.setupcompat.PartnerCustomizationLayout) MediumTest(androidx.test.filters.MediumTest) Test(org.junit.Test)

Example 12 with PartnerCustomizationLayout

use of com.google.android.setupcompat.PartnerCustomizationLayout in project android_packages_apps_Settings by omnirom.

the class SetupChooseLockPasswordAppTest method clearIsNotShown_when_activityLaunchedInitially.

@Test
public void clearIsNotShown_when_activityLaunchedInitially() {
    SetupChooseLockPassword activity = mActivityTestRule.launchActivity(null);
    PartnerCustomizationLayout layout = activity.findViewById(R.id.setup_wizard_layout);
    assertThat(layout.getMixin(FooterBarMixin.class).getSecondaryButtonView().getText()).isEqualTo(mContext.getString(R.string.lockpassword_clear_label));
}
Also used : PartnerCustomizationLayout(com.google.android.setupcompat.PartnerCustomizationLayout) MediumTest(androidx.test.filters.MediumTest) Test(org.junit.Test)

Example 13 with PartnerCustomizationLayout

use of com.google.android.setupcompat.PartnerCustomizationLayout in project android_packages_apps_Settings by omnirom.

the class SetupChooseLockPasswordAppTest method testSkipDialogIsShown.

@Test
public void testSkipDialogIsShown() throws Throwable {
    SetupChooseLockPassword activity = mActivityTestRule.launchActivity(null);
    PartnerCustomizationLayout layout = activity.findViewById(R.id.setup_wizard_layout);
    final Button skipOrClearButton = layout.getMixin(FooterBarMixin.class).getSecondaryButtonView();
    assertThat(skipOrClearButton.getText()).isEqualTo(mContext.getString(R.string.skip_label));
    assertThat(skipOrClearButton.getVisibility()).isEqualTo(View.VISIBLE);
    skipOrClearButton.performClick();
    assertWithMessage("Is finishing").that(activity.isFinishing()).isTrue();
}
Also used : PartnerCustomizationLayout(com.google.android.setupcompat.PartnerCustomizationLayout) Button(android.widget.Button) FooterBarMixin(com.google.android.setupcompat.template.FooterBarMixin) MediumTest(androidx.test.filters.MediumTest) Test(org.junit.Test)

Example 14 with PartnerCustomizationLayout

use of com.google.android.setupcompat.PartnerCustomizationLayout in project android_packages_apps_Settings by omnirom.

the class SetupChooseLockPasswordAppTest method clearIsNotShown_when_nothingEntered.

@Test
public void clearIsNotShown_when_nothingEntered() throws Throwable {
    SetupChooseLockPassword activity = mActivityTestRule.launchActivity(null);
    PartnerCustomizationLayout layout = activity.findViewById(R.id.setup_wizard_layout);
    onView(withId(R.id.password_entry)).perform(ViewActions.typeText("1234")).perform(pressKey(KeyEvent.KEYCODE_ENTER));
    assertThat(layout.getMixin(FooterBarMixin.class).getSecondaryButtonView().getVisibility()).isEqualTo(View.GONE);
}
Also used : PartnerCustomizationLayout(com.google.android.setupcompat.PartnerCustomizationLayout) MediumTest(androidx.test.filters.MediumTest) Test(org.junit.Test)

Example 15 with PartnerCustomizationLayout

use of com.google.android.setupcompat.PartnerCustomizationLayout in project android_packages_apps_Settings by omnirom.

the class SetupFingerprintEnrollIntroductionTest method testLockPattern.

@Test
public void testLockPattern() {
    ShadowStorageManager.setIsFileEncryptedNativeOrEmulated(false);
    mController.create().postCreate(null).resume();
    SetupFingerprintEnrollIntroduction activity = mController.get();
    PartnerCustomizationLayout layout = activity.findViewById(R.id.setup_wizard_layout);
    layout.getMixin(FooterBarMixin.class).getPrimaryButtonView().performClick();
    ShadowActivity shadowActivity = Shadows.shadowOf(activity);
    IntentForResult startedActivity = shadowActivity.getNextStartedActivityForResult();
    assertThat(startedActivity).isNotNull();
    assertThat(startedActivity.intent.hasExtra(SetupChooseLockGenericFragment.EXTRA_PASSWORD_QUALITY)).isFalse();
}
Also used : PartnerCustomizationLayout(com.google.android.setupcompat.PartnerCustomizationLayout) ShadowActivity(org.robolectric.shadows.ShadowActivity) IntentForResult(org.robolectric.shadows.ShadowActivity.IntentForResult) Test(org.junit.Test)

Aggregations

PartnerCustomizationLayout (com.google.android.setupcompat.PartnerCustomizationLayout)40 Test (org.junit.Test)39 Button (android.widget.Button)23 FooterBarMixin (com.google.android.setupcompat.template.FooterBarMixin)23 ShadowActivity (org.robolectric.shadows.ShadowActivity)12 MediumTest (androidx.test.filters.MediumTest)8 AlertDialog (androidx.appcompat.app.AlertDialog)6 Intent (android.content.Intent)5 Activity (android.app.Activity)3 ActivityResult (android.app.Instrumentation.ActivityResult)2 ComponentName (android.content.ComponentName)2 SmallTest (androidx.test.filters.SmallTest)2 ChooseLockPatternFragment (com.android.settings.password.ChooseLockPattern.ChooseLockPatternFragment)2 SetupChooseLockPasswordFragment (com.android.settings.password.SetupChooseLockPassword.SetupChooseLockPasswordFragment)2 ShadowAlertDialogCompat (com.android.settings.testutils.shadow.ShadowAlertDialogCompat)2 ScrollToParentEditText (com.android.settings.widget.ScrollToParentEditText)2 IntentForResult (org.robolectric.shadows.ShadowActivity.IntentForResult)2 Fingerprint (android.hardware.fingerprint.Fingerprint)1 InputMethodManager (android.view.inputmethod.InputMethodManager)1 TextView (android.widget.TextView)1