Properly integrating GESTURE into Settings, so that text pertaining to the gesture shortcut are displayed when appropriate. Heavy refactoring has been done to allow for easier cleanup and expansion Demo video: https://x20web.corp.google.com/users/jo/jonesriley/splitShortcut/a11ySettingsGestureCompat.mp4 NO_IFTTT=changes do not alter the order of the shortcuts. Bug: 365570709 Test: atest com.android.settings.accessibility Flag: android.provider.a11y_standalone_gesture_enabled Change-Id: If90719763a48e3b8bc35988a1de9a352a766953b
178 lines
6.2 KiB
Java
178 lines
6.2 KiB
Java
/*
|
|
* Copyright (C) 2021 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.accessibility;
|
|
|
|
import static android.view.WindowManagerPolicyConstants.NAV_BAR_MODE_2BUTTON;
|
|
import static android.view.WindowManagerPolicyConstants.NAV_BAR_MODE_GESTURAL;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import static org.mockito.Mockito.spy;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
import android.app.settings.SettingsEnums;
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import android.os.Bundle;
|
|
import android.platform.test.annotations.DisableFlags;
|
|
import android.platform.test.annotations.EnableFlags;
|
|
import android.platform.test.flag.junit.SetFlagsRule;
|
|
import android.provider.Flags;
|
|
import android.provider.Settings;
|
|
|
|
import androidx.fragment.app.FragmentActivity;
|
|
import androidx.preference.PreferenceManager;
|
|
import androidx.preference.PreferenceScreen;
|
|
import androidx.test.core.app.ApplicationProvider;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.testutils.XmlTestUtils;
|
|
import com.android.settings.testutils.shadow.ShadowFragment;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Rule;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.Spy;
|
|
import org.mockito.junit.MockitoJUnit;
|
|
import org.mockito.junit.MockitoRule;
|
|
import org.robolectric.Robolectric;
|
|
import org.robolectric.RobolectricTestRunner;
|
|
import org.robolectric.annotation.Config;
|
|
|
|
import java.util.List;
|
|
|
|
/** Tests for {@link AccessibilityButtonFragment}. */
|
|
@Config(shadows = ShadowFragment.class)
|
|
@RunWith(RobolectricTestRunner.class)
|
|
public class AccessibilityButtonFragmentTest {
|
|
|
|
@Rule
|
|
public final SetFlagsRule mSetFlagsRule = new SetFlagsRule();
|
|
@Rule
|
|
public MockitoRule mMockitoRule = MockitoJUnit.rule();
|
|
@Spy
|
|
private final Context mContext = ApplicationProvider.getApplicationContext();
|
|
@Spy
|
|
private Resources mResources = spy(mContext.getResources());
|
|
private AccessibilityButtonFragment mFragment;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
mFragment = spy(new TestAccessibilityButtonFragment(mContext));
|
|
when(mContext.getResources()).thenReturn(mResources);
|
|
when(mFragment.getResources()).thenReturn(mResources);
|
|
when(mFragment.getActivity()).thenReturn(Robolectric.setupActivity(FragmentActivity.class));
|
|
}
|
|
|
|
@Test
|
|
public void getMetricsCategory_returnsCorrectCategory() {
|
|
assertThat(mFragment.getMetricsCategory()).isEqualTo(
|
|
SettingsEnums.ACCESSIBILITY_BUTTON_SETTINGS);
|
|
}
|
|
|
|
@Test
|
|
public void getLogTag_returnsCorrectTag() {
|
|
assertThat(mFragment.getLogTag()).isEqualTo("AccessibilityButtonFragment");
|
|
}
|
|
|
|
@Test
|
|
@DisableFlags(Flags.FLAG_A11Y_STANDALONE_GESTURE_ENABLED)
|
|
public void onCreate_navigationGestureEnabled_setCorrectTitle() {
|
|
Settings.Secure.putIntForUser(
|
|
mContext.getContentResolver(), Settings.Secure.NAVIGATION_MODE,
|
|
NAV_BAR_MODE_GESTURAL, mContext.getUserId());
|
|
|
|
mFragment.onAttach(mContext);
|
|
mFragment.onCreate(Bundle.EMPTY);
|
|
|
|
assertThat(mFragment.getActivity().getTitle().toString()).isEqualTo(
|
|
mContext.getString(R.string.accessibility_button_gesture_title));
|
|
}
|
|
|
|
@Test
|
|
@EnableFlags(Flags.FLAG_A11Y_STANDALONE_GESTURE_ENABLED)
|
|
public void onCreate_navigationGestureEnabled_flag_setCorrectTitle() {
|
|
Settings.Secure.putIntForUser(
|
|
mContext.getContentResolver(), Settings.Secure.NAVIGATION_MODE,
|
|
NAV_BAR_MODE_GESTURAL, mContext.getUserId());
|
|
|
|
mFragment.onAttach(mContext);
|
|
mFragment.onCreate(Bundle.EMPTY);
|
|
|
|
assertThat(mFragment.getActivity().getTitle().toString()).isEqualTo(
|
|
mContext.getString(R.string.accessibility_button_title));
|
|
}
|
|
|
|
@Test
|
|
public void onCreate_navigationBarEnabled_setCorrectTitle() {
|
|
Settings.Secure.putIntForUser(
|
|
mContext.getContentResolver(), Settings.Secure.NAVIGATION_MODE,
|
|
NAV_BAR_MODE_2BUTTON, mContext.getUserId());
|
|
|
|
mFragment.onAttach(mContext);
|
|
mFragment.onCreate(Bundle.EMPTY);
|
|
|
|
assertThat(mFragment.getActivity().getTitle().toString()).isEqualTo(
|
|
mContext.getString(R.string.accessibility_button_title));
|
|
}
|
|
|
|
@Test
|
|
public void getNonIndexableKeys_existInXmlLayout() {
|
|
final List<String> niks = AccessibilityButtonFragment.SEARCH_INDEX_DATA_PROVIDER
|
|
.getNonIndexableKeys(mContext);
|
|
final List<String> keys =
|
|
XmlTestUtils.getKeysFromPreferenceXml(mContext,
|
|
R.xml.accessibility_button_settings);
|
|
|
|
assertThat(keys).containsAtLeastElementsIn(niks);
|
|
}
|
|
|
|
private static class TestAccessibilityButtonFragment extends AccessibilityButtonFragment {
|
|
|
|
private final Context mContext;
|
|
private final PreferenceManager mPreferenceManager;
|
|
|
|
TestAccessibilityButtonFragment(Context context) {
|
|
super();
|
|
mContext = context;
|
|
mPreferenceManager = new PreferenceManager(context);
|
|
mPreferenceManager.setPreferences(mPreferenceManager.createPreferenceScreen(context));
|
|
}
|
|
|
|
@Override
|
|
public int getPreferenceScreenResId() {
|
|
return R.xml.placeholder_prefs;
|
|
}
|
|
|
|
@Override
|
|
public PreferenceScreen getPreferenceScreen() {
|
|
return mPreferenceManager.getPreferenceScreen();
|
|
}
|
|
|
|
@Override
|
|
public PreferenceManager getPreferenceManager() {
|
|
return mPreferenceManager;
|
|
}
|
|
|
|
@Override
|
|
public Context getContext() {
|
|
return mContext;
|
|
}
|
|
}
|
|
}
|