/* * 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)); } }