NO_IFTTT=Catalyst only Bug: 325144964 Flag: com.android.settings.flags.catalyst Test: atest Change-Id: I518b9c861eac6d515dfc7f0ac2d028f9395e06a1
78 lines
2.4 KiB
Kotlin
78 lines
2.4 KiB
Kotlin
/*
|
|
* Copyright (C) 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.accessibility
|
|
|
|
import android.content.Context
|
|
import android.provider.Settings.System.VIBRATE_ON
|
|
import androidx.test.core.app.ApplicationProvider
|
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
|
import com.android.settingslib.preference.createAndBindWidget
|
|
import com.android.settingslib.widget.MainSwitchPreference
|
|
import com.google.common.truth.Truth.assertThat
|
|
import org.junit.Test
|
|
import org.junit.runner.RunWith
|
|
|
|
// LINT.IfChange
|
|
@RunWith(AndroidJUnit4::class)
|
|
class VibrationMainSwitchPreferenceTest {
|
|
private val context: Context = ApplicationProvider.getApplicationContext()
|
|
private val preference = VibrationMainSwitchPreference()
|
|
|
|
@Test
|
|
fun checked_valueUnset_returnDefaultTrue() {
|
|
setVibrateOn(null)
|
|
|
|
assertThat(getMainSwitchPreference().isChecked).isTrue()
|
|
}
|
|
|
|
@Test
|
|
fun checked_valueEnabled_returnTrue() {
|
|
setVibrateOn(true)
|
|
|
|
assertThat(getMainSwitchPreference().isChecked).isTrue()
|
|
}
|
|
|
|
@Test
|
|
fun checked_valueDisabled_returnFalse() {
|
|
setVibrateOn(false)
|
|
|
|
assertThat(getMainSwitchPreference().isChecked).isFalse()
|
|
}
|
|
|
|
@Test
|
|
fun click_updatesCorrectly() {
|
|
setVibrateOn(null)
|
|
val widget = getMainSwitchPreference()
|
|
|
|
assertThat(widget.isChecked).isTrue()
|
|
|
|
widget.performClick()
|
|
|
|
assertThat(widget.isChecked).isFalse()
|
|
|
|
widget.performClick()
|
|
|
|
assertThat(widget.isChecked).isTrue()
|
|
}
|
|
|
|
private fun getMainSwitchPreference(): MainSwitchPreference =
|
|
preference.createAndBindWidget(context)
|
|
|
|
private fun setVibrateOn(enabled: Boolean?) =
|
|
preference.storage(context).setBoolean(VIBRATE_ON, enabled)
|
|
}
|
|
// LINT.ThenChange(VibrationMainSwitchPreferenceControllerTest.java)
|