From 6fe35bb03114e020658f6b8315754c1e9ff9c9d1 Mon Sep 17 00:00:00 2001 From: Matthew Fritze Date: Thu, 11 May 2017 12:39:32 -0700 Subject: [PATCH] Remove Backup and Reset duplicates from Settings search Bug: 33701673 Test: make RunSettingsRoboTests Change-Id: I3539f9581939255d94ccf04134278414fbe9c72b --- res/xml/reset_dashboard_fragment.xml | 3 +- .../system/SystemDashboardFragment.java | 11 ++++ .../system/SystemDashboardFragmentTest.java | 56 +++++++++++++++++++ 3 files changed, 69 insertions(+), 1 deletion(-) create mode 100644 tests/robotests/src/com/android/settings/system/SystemDashboardFragmentTest.java diff --git a/res/xml/reset_dashboard_fragment.xml b/res/xml/reset_dashboard_fragment.xml index c769d5d0e13..1fd45db23c8 100644 --- a/res/xml/reset_dashboard_fragment.xml +++ b/res/xml/reset_dashboard_fragment.xml @@ -18,7 +18,8 @@ + android:title="@string/reset_dashboard_title" + android:key="reset_dashboard_fragment_screen"> getPreferenceControllers(Context context) { return buildPreferenceControllers(context); } + + @Override + public List getNonIndexableKeys(Context context) { + List keys = super.getNonIndexableKeys(context); + keys.add((new BackupSettingsActivityPreferenceController(context) + .getPreferenceKey())); + keys.add(KEY_RESET); + return keys; + } }; } diff --git a/tests/robotests/src/com/android/settings/system/SystemDashboardFragmentTest.java b/tests/robotests/src/com/android/settings/system/SystemDashboardFragmentTest.java new file mode 100644 index 00000000000..65b39e6facc --- /dev/null +++ b/tests/robotests/src/com/android/settings/system/SystemDashboardFragmentTest.java @@ -0,0 +1,56 @@ +/* + * 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.system; + +import android.content.Context; + +import android.os.UserManager; +import com.android.settings.SettingsRobolectricTestRunner; +import com.android.settings.TestConfig; +import com.android.settings.testutils.XmlTestUtils; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.robolectric.RuntimeEnvironment; +import org.robolectric.annotation.Config; + +import java.util.List; + +import static com.google.common.truth.Truth.assertThat; +import static org.mockito.Mockito.doReturn; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.spy; +import static org.mockito.Mockito.when; + +@RunWith(SettingsRobolectricTestRunner.class) +@Config(manifest = TestConfig.MANIFEST_PATH, sdk = TestConfig.SDK_VERSION) +public class SystemDashboardFragmentTest { + + @Test + public void testNonIndexableKeys_existInXmlLayout() { + final Context context = spy(RuntimeEnvironment.application); + UserManager manager = mock(UserManager.class); + when(manager.isAdminUser()).thenReturn(false); + doReturn(manager).when(context).getSystemService(Context.USER_SERVICE); + final List niks = SystemDashboardFragment.SEARCH_INDEX_DATA_PROVIDER + .getNonIndexableKeys(context); + final int xmlId = (new SystemDashboardFragment()).getPreferenceScreenResId(); + + final List keys = XmlTestUtils.getKeysFromPreferenceXml(context, xmlId); + + assertThat(keys).containsAllIn(niks); + } +}