Files
lawnchair/quickstep/tests/multivalentTests/src/com/android/quickstep/AllAppsActionManagerTest.kt

165 lines
6.1 KiB
Kotlin
Raw Normal View History

/*
* 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.quickstep
import android.app.PendingIntent
import android.content.IIntentSender
import android.provider.Settings
import android.provider.Settings.Secure.USER_SETUP_COMPLETE
import androidx.test.ext.junit.runners.AndroidJUnit4
import com.android.launcher3.dagger.LauncherAppComponent
import com.android.launcher3.dagger.LauncherAppSingleton
import com.android.launcher3.util.AllModulesForTest
import com.android.launcher3.util.Executors.UI_HELPER_EXECUTOR
import com.android.launcher3.util.SandboxApplication
import com.android.launcher3.util.SettingsCache
import com.android.launcher3.util.SettingsCacheSandbox
import com.android.launcher3.util.TestUtil
import com.google.common.truth.Truth.assertThat
import dagger.BindsInstance
import dagger.Component
import java.util.concurrent.Semaphore
import java.util.concurrent.TimeUnit.SECONDS
import org.junit.After
import org.junit.Before
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
private const val TIMEOUT = 5L
private val USER_SETUP_COMPLETE_URI = Settings.Secure.getUriFor(USER_SETUP_COMPLETE)
@RunWith(AndroidJUnit4::class)
class AllAppsActionManagerTest {
private val callbackSemaphore = Semaphore(0)
private val bgExecutor = UI_HELPER_EXECUTOR
@get:Rule val context = SandboxApplication()
private val settingsCacheSandbox =
SettingsCacheSandbox().also { it[USER_SETUP_COMPLETE_URI] = 1 }
private val allAppsActionManager by
lazy(LazyThreadSafetyMode.NONE) {
AllAppsActionManager(context, bgExecutor) {
callbackSemaphore.release()
PendingIntent(IIntentSender.Default())
}
}
@Before
fun initDaggerComponent() {
context.initDaggerComponent(
DaggerAllAppsActionManagerTestComponent.builder()
.bindSettingsCache(settingsCacheSandbox.cache)
)
}
@After fun destroyManager() = allAppsActionManager.onDestroy()
@Test
fun taskbarPresent_actionRegistered() {
allAppsActionManager.isTaskbarPresent = true
assertThat(callbackSemaphore.tryAcquire(TIMEOUT, SECONDS)).isTrue()
assertThat(allAppsActionManager.isActionRegistered).isTrue()
}
@Test
fun homeAndOverviewSame_actionRegistered() {
allAppsActionManager.isHomeAndOverviewSame = true
assertThat(callbackSemaphore.tryAcquire(TIMEOUT, SECONDS)).isTrue()
assertThat(allAppsActionManager.isActionRegistered).isTrue()
}
@Test
fun toggleTaskbar_destroyedAfterActionRegistered_actionUnregistered() {
allAppsActionManager.isTaskbarPresent = true
assertThat(callbackSemaphore.tryAcquire(TIMEOUT, SECONDS)).isTrue()
allAppsActionManager.isTaskbarPresent = false
TestUtil.runOnExecutorSync(bgExecutor) {} // Force system action to unregister.
assertThat(allAppsActionManager.isActionRegistered).isFalse()
}
@Test
fun toggleTaskbar_destroyedBeforeActionRegistered_pendingActionUnregistered() {
allAppsActionManager.isTaskbarPresent = true
allAppsActionManager.isTaskbarPresent = false
TestUtil.runOnExecutorSync(bgExecutor) {} // Force system action to unregister.
assertThat(callbackSemaphore.tryAcquire(TIMEOUT, SECONDS)).isTrue()
assertThat(allAppsActionManager.isActionRegistered).isFalse()
}
@Test
fun changeHome_sameAsOverviewBeforeActionUnregistered_actionRegisteredAgain() {
allAppsActionManager.isHomeAndOverviewSame = true // Initialize to same.
assertThat(callbackSemaphore.tryAcquire(TIMEOUT, SECONDS)).isTrue()
allAppsActionManager.isHomeAndOverviewSame = false
allAppsActionManager.isHomeAndOverviewSame = true
assertThat(callbackSemaphore.tryAcquire(TIMEOUT, SECONDS)).isTrue()
assertThat(allAppsActionManager.isActionRegistered).isTrue()
}
@Test
fun taskbarPresent_userSetupIncomplete_actionUnregistered() {
settingsCacheSandbox[USER_SETUP_COMPLETE_URI] = 0
allAppsActionManager.isTaskbarPresent = true
assertThat(allAppsActionManager.isActionRegistered).isFalse()
}
@Test
fun taskbarPresent_setupUiVisible_actionUnregistered() {
allAppsActionManager.isSetupUiVisible = true
allAppsActionManager.isTaskbarPresent = true
assertThat(allAppsActionManager.isActionRegistered).isFalse()
}
@Test
fun taskbarPresent_userSetupCompleted_actionRegistered() {
settingsCacheSandbox[USER_SETUP_COMPLETE_URI] = 0
allAppsActionManager.isTaskbarPresent = true
settingsCacheSandbox[USER_SETUP_COMPLETE_URI] = 1
assertThat(callbackSemaphore.tryAcquire(TIMEOUT, SECONDS)).isTrue()
assertThat(allAppsActionManager.isActionRegistered).isTrue()
}
@Test
fun taskbarPresent_setupUiDismissed_actionRegistered() {
allAppsActionManager.isSetupUiVisible = true
allAppsActionManager.isTaskbarPresent = true
allAppsActionManager.isSetupUiVisible = false
assertThat(callbackSemaphore.tryAcquire(TIMEOUT, SECONDS)).isTrue()
assertThat(allAppsActionManager.isActionRegistered).isTrue()
}
}
@LauncherAppSingleton
@Component(modules = [AllModulesForTest::class])
interface AllAppsActionManagerTestComponent : LauncherAppComponent {
@Component.Builder
interface Builder : LauncherAppComponent.Builder {
@BindsInstance fun bindSettingsCache(settingsCache: SettingsCache): Builder
override fun build(): AllAppsActionManagerTestComponent
}
}