Change the keys in the Language and Input screen for the gesture and tts-output settings so they can be disabled in search. Then change the preference controllers to take a key as input to avoid crashes on the other screens with these settings. Test: make RunSettingsRoboTests Bug: 33701673 Change-Id: Ifeb2a2d34a3efded3f0a9ba02ac76fd6f8ffd087 Merged-In: I8bc0776131fcac5a6edf7e8271bc53252c2fc719
37 lines
1.3 KiB
Java
37 lines
1.3 KiB
Java
package com.android.settings;
|
|
|
|
import android.content.Context;
|
|
import com.android.settings.core.PreferenceController;
|
|
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.ArrayList;
|
|
import java.util.List;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
@RunWith(SettingsRobolectricTestRunner.class)
|
|
@Config(manifest = TestConfig.MANIFEST_PATH, sdk = TestConfig.SDK_VERSION)
|
|
public class DisplaySettingsTest {
|
|
|
|
@Test
|
|
public void testPreferenceControllers_getPreferenceKeys_existInPreferenceScreen() {
|
|
final Context context = RuntimeEnvironment.application;
|
|
final DisplaySettings fragment = new DisplaySettings();
|
|
final List<String> preferenceScreenKeys = XmlTestUtils.getKeysFromPreferenceXml(context,
|
|
fragment.getPreferenceScreenResId());
|
|
final List<String> preferenceKeys = new ArrayList<>();
|
|
|
|
for (PreferenceController controller : fragment.getPreferenceControllers(context)) {
|
|
preferenceKeys.add(controller.getPreferenceKey());
|
|
}
|
|
// Nightmode is currently hidden
|
|
preferenceKeys.remove("night_mode");
|
|
|
|
assertThat(preferenceScreenKeys).containsAllIn(preferenceKeys);
|
|
}
|
|
}
|