bug: 66239135 Test: Manually tested and verified, robo tests updated Change-Id: I42ae63661b5d5061fea848e2c1e8a0c8943864e4
110 lines
4.3 KiB
Java
110 lines
4.3 KiB
Java
/*
|
|
* Copyright (C) 2017 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 com.android.settings;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import static org.robolectric.RuntimeEnvironment.application;
|
|
|
|
import android.app.Activity;
|
|
import android.app.AlertDialog;
|
|
import android.content.ComponentName;
|
|
import android.content.pm.PackageManager;
|
|
import android.os.UserHandle;
|
|
import android.view.View;
|
|
import android.widget.Button;
|
|
|
|
import com.android.settings.password.ChooseLockPattern.ChooseLockPatternFragment;
|
|
import com.android.settings.password.ChooseLockPattern.IntentBuilder;
|
|
import com.android.settings.password.SetupChooseLockPattern;
|
|
import com.android.settings.testutils.SettingsRobolectricTestRunner;
|
|
import com.android.settings.testutils.shadow.SettingsShadowResources;
|
|
import com.android.settings.testutils.shadow.SettingsShadowResourcesImpl;
|
|
import com.android.settings.testutils.shadow.ShadowEventLogWriter;
|
|
import com.android.settings.testutils.shadow.ShadowUtils;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.robolectric.Robolectric;
|
|
import org.robolectric.Shadows;
|
|
import org.robolectric.annotation.Config;
|
|
import org.robolectric.shadows.ShadowAlertDialog;
|
|
import org.robolectric.shadows.ShadowPackageManager.ComponentState;
|
|
|
|
@RunWith(SettingsRobolectricTestRunner.class)
|
|
@Config(
|
|
manifest = TestConfig.MANIFEST_PATH,
|
|
sdk = TestConfig.SDK_VERSION,
|
|
shadows = {
|
|
SettingsShadowResources.class,
|
|
SettingsShadowResourcesImpl.class,
|
|
SettingsShadowResources.SettingsShadowTheme.class,
|
|
ShadowEventLogWriter.class,
|
|
ShadowUtils.class
|
|
})
|
|
public class SetupChooseLockPatternTest {
|
|
|
|
private SetupChooseLockPattern mActivity;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
Shadows.shadowOf(application.getPackageManager()).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();
|
|
}
|
|
|
|
@Test
|
|
public void chooseLockSaved_shouldEnableRedactionInterstitial() {
|
|
findFragment(mActivity).onChosenLockSaveFinished(false, null);
|
|
|
|
ComponentState redactionComponentState =
|
|
Shadows.shadowOf(application.getPackageManager()).getComponentState(
|
|
new ComponentName(application, SetupRedactionInterstitial.class));
|
|
assertThat(redactionComponentState.newState).named("Redaction component state")
|
|
.isEqualTo(PackageManager.COMPONENT_ENABLED_STATE_ENABLED);
|
|
}
|
|
|
|
@Test
|
|
public void screenLockOptions_shouldBeVisible() {
|
|
Button button = mActivity.findViewById(R.id.screen_lock_options);
|
|
assertThat(button).isNotNull();
|
|
assertThat(button.getVisibility()).isEqualTo(View.VISIBLE);
|
|
|
|
button.performClick();
|
|
AlertDialog chooserDialog = ShadowAlertDialog.getLatestAlertDialog();
|
|
assertThat(chooserDialog).isNotNull();
|
|
int count = Shadows.shadowOf(chooserDialog).getAdapter().getCount();
|
|
assertThat(count).named("List items shown").isEqualTo(3);
|
|
}
|
|
|
|
private ChooseLockPatternFragment findFragment(Activity activity) {
|
|
return (ChooseLockPatternFragment)
|
|
activity.getFragmentManager().findFragmentById(R.id.main_content);
|
|
}
|
|
}
|