[Physical Keyboard] Add Repeat key toggle
Add repeat key toggle under Physical keybaord setting. Bug: 345399212 Test: atest SettingsRoboTests Flag: com.android.input.flags.keyboard_repeat_keys Change-Id: Ib986301d108b1ad30d96d7309189e9507d38c25a
This commit is contained in:
@@ -0,0 +1,83 @@
|
||||
/*
|
||||
* 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 KeyboardRepeatKeysControllerTest {
|
||||
@Rule
|
||||
public final SetFlagsRule mSetFlagsRule = new SetFlagsRule();
|
||||
private Context mContext;
|
||||
|
||||
private KeyboardRepeatKeysController mKeyboardRepeatKeysController;
|
||||
|
||||
@Before
|
||||
public void setUp() {
|
||||
mContext = RuntimeEnvironment.application;
|
||||
mKeyboardRepeatKeysController = new KeyboardRepeatKeysController(mContext,
|
||||
"physical_keyboard_repeat_key");
|
||||
}
|
||||
|
||||
@Test
|
||||
@EnableFlags(FLAG_KEYBOARD_REPEAT_KEYS)
|
||||
public void getAvailabilityStatus_flagIsEnabled_isAvailable() {
|
||||
assertThat(mKeyboardRepeatKeysController.getAvailabilityStatus())
|
||||
.isEqualTo(BasePreferenceController.AVAILABLE);
|
||||
}
|
||||
|
||||
@Test
|
||||
@DisableFlags(FLAG_KEYBOARD_REPEAT_KEYS)
|
||||
public void getAvailabilityStatus_flagIsDisabled_notSupport() {
|
||||
assertThat(mKeyboardRepeatKeysController.getAvailabilityStatus())
|
||||
.isEqualTo(BasePreferenceController.UNSUPPORTED_ON_DEVICE);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void isChecked_sameWithInputSettingValue() {
|
||||
boolean isRepeatKeysEnabled = InputSettings.isRepeatKeysEnabled(mContext);
|
||||
assertThat(mKeyboardRepeatKeysController.isChecked()).isEqualTo(isRepeatKeysEnabled);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void setChecked_updatesInputSettingValue() {
|
||||
mKeyboardRepeatKeysController.setChecked(false);
|
||||
|
||||
assertThat(InputSettings.isRepeatKeysEnabled(mContext)).isEqualTo(false);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user