Search in sources :

Example 11 with IntentBuilder

use of com.android.settings.password.ChooseLockPattern.IntentBuilder in project android_packages_apps_Settings by SudaMod.

the class SetupChooseLockPatternTest method setUp.

@Before
public void setUp() {
    RuntimeEnvironment.getRobolectricPackageManager().setComponentEnabledSetting(new ComponentName(application, SetupRedactionInterstitial.class), PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
    mActivity = Robolectric.buildActivity(SetupChooseLockPattern.class, SetupChooseLockPattern.modifyIntentForSetup(application, new IntentBuilder(application).setUserId(UserHandle.myUserId()).build())).setup().get();
}
Also used : SetupChooseLockPattern(com.android.settings.password.SetupChooseLockPattern) IntentBuilder(com.android.settings.password.ChooseLockPattern.IntentBuilder) ComponentName(android.content.ComponentName) Before(org.junit.Before)

Example 12 with IntentBuilder

use of com.android.settings.password.ChooseLockPattern.IntentBuilder in project platform_packages_apps_Settings by BlissRoms.

the class SetupChooseLockPatternTest method setUp.

@Before
public void setUp() {
    RuntimeEnvironment.getRobolectricPackageManager().setComponentEnabledSetting(new ComponentName(application, SetupRedactionInterstitial.class), PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
    mActivity = Robolectric.buildActivity(SetupChooseLockPattern.class, SetupChooseLockPattern.modifyIntentForSetup(application, new IntentBuilder(application).setUserId(UserHandle.myUserId()).build())).setup().get();
}
Also used : SetupChooseLockPattern(com.android.settings.password.SetupChooseLockPattern) IntentBuilder(com.android.settings.password.ChooseLockPattern.IntentBuilder) ComponentName(android.content.ComponentName) Before(org.junit.Before)

Example 13 with IntentBuilder

use of com.android.settings.password.ChooseLockPattern.IntentBuilder in project Resurrection_packages_apps_Settings by ResurrectionRemix.

the class SetupChooseLockPatternTest method setUp.

@Before
public void setUp() {
    application.getPackageManager().setComponentEnabledSetting(new ComponentName(application, SetupRedactionInterstitial.class), PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
    final Intent intent = SetupChooseLockPattern.modifyIntentForSetup(application, new IntentBuilder(application).setUserId(UserHandle.myUserId()).build());
    mActivity = ActivityController.of(new SetupChooseLockPattern(), intent).setup().get();
}
Also used : IntentBuilder(com.android.settings.password.ChooseLockPattern.IntentBuilder) ComponentName(android.content.ComponentName) Intent(android.content.Intent) SetupRedactionInterstitial(com.android.settings.SetupRedactionInterstitial) Before(org.junit.Before)

Example 14 with IntentBuilder

use of com.android.settings.password.ChooseLockPattern.IntentBuilder in project android_packages_apps_Settings by DirtyUnicorns.

the class SetupChooseLockPatternTest method setUp.

@Before
public void setUp() {
    RuntimeEnvironment.getRobolectricPackageManager().setComponentEnabledSetting(new ComponentName(application, SetupRedactionInterstitial.class), PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
    mActivity = Robolectric.buildActivity(SetupChooseLockPattern.class, SetupChooseLockPattern.modifyIntentForSetup(application, new IntentBuilder(application).setUserId(UserHandle.myUserId()).build())).setup().get();
}
Also used : SetupChooseLockPattern(com.android.settings.password.SetupChooseLockPattern) IntentBuilder(com.android.settings.password.ChooseLockPattern.IntentBuilder) ComponentName(android.content.ComponentName) Before(org.junit.Before)

Example 15 with IntentBuilder

use of com.android.settings.password.ChooseLockPattern.IntentBuilder in project android_packages_apps_Settings by DirtyUnicorns.

the class ChooseLockPatternTest method intentBuilder_setChallenge_shouldAddExtras.

@Test
public void intentBuilder_setChallenge_shouldAddExtras() {
    Intent intent = new IntentBuilder(application).setChallenge(12345L).setUserId(123).build();
    assertThat(intent.getBooleanExtra(ChooseLockSettingsHelper.EXTRA_KEY_HAS_CHALLENGE, false)).named("EXTRA_KEY_HAS_CHALLENGE").isTrue();
    assertThat(intent.getLongExtra(ChooseLockSettingsHelper.EXTRA_KEY_CHALLENGE, 0L)).named("EXTRA_KEY_CHALLENGE").isEqualTo(12345L);
    assertThat(intent.getIntExtra(Intent.EXTRA_USER_ID, 0)).named("EXTRA_USER_ID").isEqualTo(123);
}
Also used : IntentBuilder(com.android.settings.password.ChooseLockPattern.IntentBuilder) Intent(android.content.Intent) Test(org.junit.Test)

Aggregations

IntentBuilder (com.android.settings.password.ChooseLockPattern.IntentBuilder)24 Intent (android.content.Intent)18 Test (org.junit.Test)16 ComponentName (android.content.ComponentName)8 Before (org.junit.Before)8 SetupChooseLockPattern (com.android.settings.password.SetupChooseLockPattern)6 LockscreenCredential (com.android.internal.widget.LockscreenCredential)2 SetupRedactionInterstitial (com.android.settings.SetupRedactionInterstitial)2