/* * Copyright (C) 2017 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.systemui.statusbar.policy import android.app.StatusBarManager import android.content.res.Configuration import android.testing.AndroidTestingRunner import android.testing.TestableLooper.RunWithLooper import androidx.test.filters.SmallTest import com.android.systemui.res.R import com.android.systemui.SysuiTestCase import com.android.systemui.statusbar.CommandQueue import com.google.common.truth.Truth.assertThat import org.junit.Before import org.junit.Test import org.junit.runner.RunWith import org.mockito.ArgumentMatchers.anyBoolean import org.mockito.ArgumentMatchers.anyInt import org.mockito.Mock import org.mockito.Mockito import org.mockito.Mockito.atLeastOnce import org.mockito.Mockito.verify import org.mockito.MockitoAnnotations @SmallTest @RunWith(AndroidTestingRunner::class) @RunWithLooper class RemoteInputQuickSettingsDisablerTest : SysuiTestCase() { @Mock lateinit var commandQueue: CommandQueue private lateinit var remoteInputQuickSettingsDisabler: RemoteInputQuickSettingsDisabler private lateinit var configuration: Configuration @Before fun setUp() { MockitoAnnotations.initMocks(this) remoteInputQuickSettingsDisabler = RemoteInputQuickSettingsDisabler( mContext, commandQueue, ResourcesSplitShadeStateController(), Mockito.mock(ConfigurationController::class.java), ) configuration = Configuration(mContext.resources.configuration) // Default these conditions to what they need to be to disable QS. mContext.orCreateTestableResources .addOverride(R.bool.config_use_split_notification_shade, /* value= */false) remoteInputQuickSettingsDisabler.setRemoteInputActive(true) configuration.orientation = Configuration.ORIENTATION_LANDSCAPE remoteInputQuickSettingsDisabler.onConfigChanged(configuration) } @Test fun whenRemoteInputActiveAndLandscapeAndNotSplitShade_shouldDisableQs() { assertThat( shouldDisableQs( remoteInputQuickSettingsDisabler.adjustDisableFlags(0) ) ) .isTrue() } @Test fun whenRemoteInputNotActive_shouldNotDisableQs() { remoteInputQuickSettingsDisabler.setRemoteInputActive(false) assertThat( shouldDisableQs( remoteInputQuickSettingsDisabler.adjustDisableFlags(0) ) ) .isFalse() } @Test fun whenSplitShadeEnabled_shouldNotDisableQs() { mContext.orCreateTestableResources .addOverride(R.bool.config_use_split_notification_shade, /* value= */true) remoteInputQuickSettingsDisabler.onConfigChanged(configuration) assertThat( shouldDisableQs( remoteInputQuickSettingsDisabler.adjustDisableFlags(0) ) ) .isFalse() } @Test fun whenPortrait_shouldNotDisableQs() { configuration.orientation = Configuration.ORIENTATION_PORTRAIT remoteInputQuickSettingsDisabler.onConfigChanged(configuration) assertThat( shouldDisableQs( remoteInputQuickSettingsDisabler.adjustDisableFlags(0) ) ) .isFalse() } @Test fun whenRemoteInputChanges_recomputeTriggered() { remoteInputQuickSettingsDisabler.setRemoteInputActive(false) verify(commandQueue, atLeastOnce()).recomputeDisableFlags( anyInt(), anyBoolean() ) } @Test fun whenConfigChanges_recomputeTriggered() { configuration.orientation = Configuration.ORIENTATION_PORTRAIT remoteInputQuickSettingsDisabler.onConfigChanged(configuration) verify(commandQueue, atLeastOnce()).recomputeDisableFlags( anyInt(), anyBoolean() ) } private fun shouldDisableQs(state: Int): Boolean { return state and StatusBarManager.DISABLE2_QUICK_SETTINGS != 0 } }