Snap for 10566461 from 98df5bcde2
to udc-qpr1-release
Change-Id: I08873f0845c67346a8758259970103afdc02c7e0
This commit is contained in:
@@ -658,7 +658,6 @@
|
||||
<activity android:name="Settings$FaceSettingsActivity"
|
||||
android:label="@string/security_settings_face_preference_title"
|
||||
android:exported="true"
|
||||
android:configChanges="orientation|screenSize"
|
||||
android:icon="@drawable/ic_face_header">
|
||||
<intent-filter>
|
||||
<action android:name="android.settings.FACE_SETTINGS" />
|
||||
@@ -674,7 +673,6 @@
|
||||
android:label="@string/security_settings_face_preference_title"
|
||||
android:exported="false"
|
||||
android:icon="@drawable/ic_face_header"
|
||||
android:configChanges="orientation|screenSize"
|
||||
android:taskAffinity="com.android.settings.root">
|
||||
<meta-data android:name="com.android.settings.FRAGMENT_CLASS"
|
||||
android:value="com.android.settings.biometrics.face.FaceSettings" />
|
||||
|
@@ -52,26 +52,9 @@ public class Settings extends SettingsActivity {
|
||||
public static class AssistGestureSettingsActivity extends SettingsActivity { /* empty */}
|
||||
public static class BluetoothSettingsActivity extends SettingsActivity { /* empty */ }
|
||||
public static class CreateShortcutActivity extends SettingsActivity { /* empty */ }
|
||||
public static class FaceSettingsActivity extends SettingsActivity {
|
||||
@Override
|
||||
protected void onCreate(Bundle savedState) {
|
||||
setTheme(SetupWizardUtils.getTheme(this, getIntent()));
|
||||
setTheme(R.style.SettingsPreferenceTheme_SetupWizard);
|
||||
ThemeHelper.trySetDynamicColor(this);
|
||||
super.onCreate(savedState);
|
||||
}
|
||||
}
|
||||
public static class FaceSettingsActivity extends SettingsActivity { /* empty */ }
|
||||
/** Container for {@link FaceSettings} to use with a pre-defined task affinity. */
|
||||
public static class FaceSettingsInternalActivity extends SettingsActivity {
|
||||
@Override
|
||||
protected void onCreate(Bundle savedState) {
|
||||
setTheme(SetupWizardUtils.getTheme(this, getIntent()));
|
||||
setTheme(R.style.SettingsPreferenceTheme_SetupWizard);
|
||||
ThemeHelper.trySetDynamicColor(this);
|
||||
super.onCreate(savedState);
|
||||
}
|
||||
}
|
||||
|
||||
public static class FaceSettingsInternalActivity extends SettingsActivity { /* empty */ }
|
||||
public static class FingerprintSettingsActivity extends SettingsActivity { /* empty */ }
|
||||
public static class FingerprintSettingsActivityV2 extends SettingsActivity { /* empty */ }
|
||||
public static class CombinedBiometricSettingsActivity extends SettingsActivity { /* empty */ }
|
||||
|
@@ -25,6 +25,7 @@ import android.database.Cursor;
|
||||
import android.net.Uri;
|
||||
import android.os.Bundle;
|
||||
import android.os.PersistableBundle;
|
||||
import android.os.UserManager;
|
||||
import android.provider.Telephony;
|
||||
import android.telephony.CarrierConfigManager;
|
||||
import android.telephony.SubscriptionInfo;
|
||||
@@ -281,6 +282,11 @@ public class ApnEditor extends SettingsPreferenceFragment
|
||||
@Override
|
||||
public void onCreate(Bundle icicle) {
|
||||
super.onCreate(icicle);
|
||||
if (isUserRestricted()) {
|
||||
Log.e(TAG, "This setting isn't available due to user restriction.");
|
||||
finish();
|
||||
return;
|
||||
}
|
||||
|
||||
setLifecycleForAllControllers();
|
||||
|
||||
@@ -1453,6 +1459,23 @@ public class ApnEditor extends SettingsPreferenceFragment
|
||||
return apnData;
|
||||
}
|
||||
|
||||
@VisibleForTesting
|
||||
boolean isUserRestricted() {
|
||||
UserManager userManager = getContext().getSystemService(UserManager.class);
|
||||
if (userManager == null) {
|
||||
return false;
|
||||
}
|
||||
if (!userManager.isAdminUser()) {
|
||||
Log.e(TAG, "User is not an admin");
|
||||
return true;
|
||||
}
|
||||
if (userManager.hasUserRestriction(UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS)) {
|
||||
Log.e(TAG, "User is not allowed to configure mobile network");
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@VisibleForTesting
|
||||
static class ApnData {
|
||||
/**
|
||||
|
@@ -1628,7 +1628,7 @@ public class UserSettings extends SettingsPreferenceFragment
|
||||
mRemovingUserId = -1;
|
||||
updateUserList();
|
||||
if (mCreateUserDialogController.isActive()) {
|
||||
mCreateUserDialogController.clear();
|
||||
mCreateUserDialogController.finish();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -1,70 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2023 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.biometrics.face;
|
||||
|
||||
import static com.google.common.truth.Truth.assertThat;
|
||||
|
||||
import static org.mockito.Mockito.spy;
|
||||
|
||||
import android.content.res.Resources;
|
||||
import android.os.Bundle;
|
||||
|
||||
import com.android.settings.Settings;
|
||||
import com.android.settings.testutils.FakeFeatureFactory;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.robolectric.RobolectricTestRunner;
|
||||
import org.robolectric.android.controller.ActivityController;
|
||||
|
||||
@RunWith(RobolectricTestRunner.class)
|
||||
public class FaceSettingsActivityTest {
|
||||
|
||||
private static final String APPLIED_SETUP_WIZARD_THEME = "SettingsPreferenceTheme.SetupWizard";
|
||||
|
||||
private Settings.FaceSettingsActivity mActivity;
|
||||
private Resources.Theme mTheme;
|
||||
|
||||
@Before
|
||||
public void setUp() {
|
||||
FakeFeatureFactory.setupForTest();
|
||||
mActivity = spy(Settings.FaceSettingsActivity.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void verifyFaceSettingsActivity_shouldAppliedSetupWizardTheme() {
|
||||
createActivity();
|
||||
|
||||
assertThat(isThemeApplied(APPLIED_SETUP_WIZARD_THEME)).isTrue();
|
||||
}
|
||||
|
||||
private boolean isThemeApplied(String themeName) {
|
||||
final String [] appliedThemes = mTheme.getTheme();
|
||||
for (String theme : appliedThemes) {
|
||||
if (theme.contains(themeName)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private void createActivity() {
|
||||
ActivityController.of(mActivity).create(new Bundle());
|
||||
mTheme = mActivity.getTheme();
|
||||
}
|
||||
}
|
@@ -36,6 +36,7 @@ import android.content.res.Resources;
|
||||
import android.database.Cursor;
|
||||
import android.net.Uri;
|
||||
import android.os.PersistableBundle;
|
||||
import android.os.UserManager;
|
||||
import android.telephony.CarrierConfigManager;
|
||||
import android.view.KeyEvent;
|
||||
import android.view.Menu;
|
||||
@@ -102,6 +103,8 @@ public class ApnEditorTest {
|
||||
@Mock
|
||||
private FragmentActivity mActivity;
|
||||
@Mock
|
||||
private UserManager mUserManager;
|
||||
@Mock
|
||||
private ProxySubscriptionManager mProxySubscriptionMgr;
|
||||
@Mock
|
||||
private CarrierConfigManager mCarrierConfigManager;
|
||||
@@ -129,6 +132,10 @@ public class ApnEditorTest {
|
||||
doReturn(mContext.getTheme()).when(mActivity).getTheme();
|
||||
doReturn(mContext.getContentResolver()).when(mActivity).getContentResolver();
|
||||
|
||||
doReturn(mUserManager).when(mContext).getSystemService(UserManager.class);
|
||||
doReturn(true).when(mUserManager).isAdminUser();
|
||||
doReturn(false).when(mUserManager)
|
||||
.hasUserRestriction(UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS);
|
||||
doReturn(mCarrierConfigManager).when(mContext)
|
||||
.getSystemService(Context.CARRIER_CONFIG_SERVICE);
|
||||
doReturn(mBundle).when(mCarrierConfigManager).getConfigForSubId(anyInt());
|
||||
@@ -471,6 +478,27 @@ public class ApnEditorTest {
|
||||
assertThat(ApnEditor.formatInteger("not an int")).isEqualTo("not an int");
|
||||
}
|
||||
|
||||
@Test
|
||||
@Config(shadows = ShadowFragment.class)
|
||||
public void onCreate_notAdminUser_shouldFinish() {
|
||||
doReturn(false).when(mUserManager).isAdminUser();
|
||||
|
||||
mApnEditorUT.onCreate(null);
|
||||
|
||||
verify(mApnEditorUT).finish();
|
||||
}
|
||||
|
||||
@Test
|
||||
@Config(shadows = ShadowFragment.class)
|
||||
public void onCreate_hasUserRestriction_shouldFinish() {
|
||||
doReturn(true).when(mUserManager)
|
||||
.hasUserRestriction(UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS);
|
||||
|
||||
mApnEditorUT.onCreate(null);
|
||||
|
||||
verify(mApnEditorUT).finish();
|
||||
}
|
||||
|
||||
@Test
|
||||
@Config(shadows = ShadowFragment.class)
|
||||
public void onCreate_noAction_shouldFinishAndNoCrash() {
|
||||
|
Reference in New Issue
Block a user