[Physical Keyboard] Add main page for Repeat keys
Page markup: https://screenshot.googleplex.com/5xCd2wVVyXajdCB.png Test: atest SettingsRoboTests Bug: 345399212 Flag: com.android.input.flags.keyboard_repeat_keys Change-Id: Ie60f4b6ea4de973644103c0aa0bcdfe9a1e758eb
This commit is contained in:
committed by
Shaowei Shen
parent
145bbb1638
commit
cbe75928d9
@@ -51,7 +51,7 @@ public class KeyboardRepeatKeysControllerTest {
|
||||
public void setUp() {
|
||||
mContext = RuntimeEnvironment.application;
|
||||
mKeyboardRepeatKeysController = new KeyboardRepeatKeysController(mContext,
|
||||
"physical_keyboard_repeat_key");
|
||||
"physical_keyboard_repeat_keys");
|
||||
}
|
||||
|
||||
@Test
|
||||
|
@@ -0,0 +1,86 @@
|
||||
/*
|
||||
* Copyright 2024 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.inputmethod;
|
||||
|
||||
import static com.android.input.flags.Flags.FLAG_KEYBOARD_REPEAT_KEYS;
|
||||
|
||||
import static com.google.common.truth.Truth.assertThat;
|
||||
|
||||
import android.content.Context;
|
||||
import android.hardware.input.InputSettings;
|
||||
import android.platform.test.annotations.DisableFlags;
|
||||
import android.platform.test.annotations.EnableFlags;
|
||||
import android.platform.test.flag.junit.SetFlagsRule;
|
||||
|
||||
import com.android.settings.core.BasePreferenceController;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.robolectric.RobolectricTestRunner;
|
||||
import org.robolectric.RuntimeEnvironment;
|
||||
import org.robolectric.annotation.Config;
|
||||
|
||||
@RunWith(RobolectricTestRunner.class)
|
||||
@Config(shadows = {
|
||||
com.android.settings.testutils.shadow.ShadowFragment.class,
|
||||
})
|
||||
public class KeyboardRepeatKeysDelayPreferenceControllerTest {
|
||||
@Rule
|
||||
public final SetFlagsRule mSetFlagsRule = new SetFlagsRule();
|
||||
private Context mContext;
|
||||
private KeyboardRepeatKeysDelayPreferenceController mRepeatKeysDelayPreferenceController;
|
||||
|
||||
@Before
|
||||
public void setUp() {
|
||||
mContext = RuntimeEnvironment.application;
|
||||
mRepeatKeysDelayPreferenceController = new KeyboardRepeatKeysDelayPreferenceController(
|
||||
mContext, "repeat_keys_delay_preference");
|
||||
}
|
||||
|
||||
@Test
|
||||
@EnableFlags(FLAG_KEYBOARD_REPEAT_KEYS)
|
||||
public void getAvailabilityStatus_flagIsEnabled_isAvailable() {
|
||||
assertThat(mRepeatKeysDelayPreferenceController.getAvailabilityStatus())
|
||||
.isEqualTo(BasePreferenceController.AVAILABLE);
|
||||
}
|
||||
|
||||
@Test
|
||||
@DisableFlags(FLAG_KEYBOARD_REPEAT_KEYS)
|
||||
public void getAvailabilityStatus_flagIsDisabled_notSupport() {
|
||||
assertThat(mRepeatKeysDelayPreferenceController.getAvailabilityStatus())
|
||||
.isEqualTo(BasePreferenceController.UNSUPPORTED_ON_DEVICE);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void setSliderPosition_updatesInputSettingValue() {
|
||||
int sliderPosition = 1;
|
||||
mRepeatKeysDelayPreferenceController.setSliderPosition(sliderPosition);
|
||||
assertThat(InputSettings.getRepeatKeysDelay(mContext)).isEqualTo(
|
||||
KeyboardRepeatKeysDelayPreferenceController.REPEAT_KEY_DELAY_VALUE_LIST.get(
|
||||
sliderPosition));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getSliderPosition_matchesWithDelayValue() {
|
||||
int timeout = InputSettings.getRepeatKeysDelay(mContext);
|
||||
assertThat(mRepeatKeysDelayPreferenceController.getSliderPosition()).isEqualTo(
|
||||
KeyboardRepeatKeysDelayPreferenceController.REPEAT_KEY_DELAY_VALUE_LIST.indexOf(
|
||||
timeout));
|
||||
}
|
||||
}
|
@@ -0,0 +1,88 @@
|
||||
/*
|
||||
* Copyright 2024 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.inputmethod;
|
||||
|
||||
import static com.android.input.flags.Flags.FLAG_KEYBOARD_REPEAT_KEYS;
|
||||
|
||||
import static com.google.common.truth.Truth.assertThat;
|
||||
|
||||
import android.content.Context;
|
||||
import android.hardware.input.InputSettings;
|
||||
import android.platform.test.annotations.DisableFlags;
|
||||
import android.platform.test.annotations.EnableFlags;
|
||||
import android.platform.test.flag.junit.SetFlagsRule;
|
||||
|
||||
import com.android.settings.core.BasePreferenceController;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.robolectric.RobolectricTestRunner;
|
||||
import org.robolectric.RuntimeEnvironment;
|
||||
import org.robolectric.annotation.Config;
|
||||
|
||||
@RunWith(RobolectricTestRunner.class)
|
||||
@Config(shadows = {
|
||||
com.android.settings.testutils.shadow.ShadowFragment.class,
|
||||
})
|
||||
public class KeyboardRepeatKeysTimeOutPreferenceControllerTest {
|
||||
@Rule
|
||||
public final SetFlagsRule mSetFlagsRule = new SetFlagsRule();
|
||||
private Context mContext;
|
||||
private KeyboardRepeatKeysTimeOutPreferenceController
|
||||
mKeyboardRepeatKeysTimeOutPreferenceController;
|
||||
|
||||
@Before
|
||||
public void setUp() {
|
||||
mContext = RuntimeEnvironment.application;
|
||||
mKeyboardRepeatKeysTimeOutPreferenceController =
|
||||
new KeyboardRepeatKeysTimeOutPreferenceController(mContext,
|
||||
"repeat_keys_timeout_preference");
|
||||
}
|
||||
|
||||
@Test
|
||||
@EnableFlags(FLAG_KEYBOARD_REPEAT_KEYS)
|
||||
public void getAvailabilityStatus_flagIsEnabled_isAvailable() {
|
||||
assertThat(mKeyboardRepeatKeysTimeOutPreferenceController.getAvailabilityStatus())
|
||||
.isEqualTo(BasePreferenceController.AVAILABLE);
|
||||
}
|
||||
|
||||
@Test
|
||||
@DisableFlags(FLAG_KEYBOARD_REPEAT_KEYS)
|
||||
public void getAvailabilityStatus_flagIsDisabled_notSupport() {
|
||||
assertThat(mKeyboardRepeatKeysTimeOutPreferenceController.getAvailabilityStatus())
|
||||
.isEqualTo(BasePreferenceController.UNSUPPORTED_ON_DEVICE);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void setSliderPosition_updatesInputSettingValue() {
|
||||
int sliderPosition = 1;
|
||||
mKeyboardRepeatKeysTimeOutPreferenceController.setSliderPosition(sliderPosition);
|
||||
assertThat(InputSettings.getRepeatKeysTimeout(mContext)).isEqualTo(
|
||||
KeyboardRepeatKeysTimeOutPreferenceController.REPEAT_KEY_TIMEOUT_VALUE_LIST.get(
|
||||
sliderPosition));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getSliderPosition_matchesWithTimeoutValue() {
|
||||
int timeout = InputSettings.getRepeatKeysTimeout(mContext);
|
||||
assertThat(mKeyboardRepeatKeysTimeOutPreferenceController.getSliderPosition()).isEqualTo(
|
||||
KeyboardRepeatKeysTimeOutPreferenceController.REPEAT_KEY_TIMEOUT_VALUE_LIST.indexOf(
|
||||
timeout));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user