8fc266d063
Test: SysUI studio Test: atest NexusLauncherRoboTests Flag: EXEMPT test migration Change-Id: Idd9e52f281d955e87f6db638ebfd8218a4dcb77f
81 lines
3.3 KiB
Kotlin
81 lines
3.3 KiB
Kotlin
/*
|
|
* Copyright (C) 2023 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.launcher3.taskbar
|
|
|
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
|
import com.android.launcher3.statemanager.StateManager
|
|
import com.android.quickstep.RecentsActivity
|
|
import com.android.quickstep.fallback.RecentsState
|
|
import org.junit.Before
|
|
import org.junit.Test
|
|
import org.junit.runner.RunWith
|
|
import org.mockito.kotlin.argumentCaptor
|
|
import org.mockito.kotlin.mock
|
|
import org.mockito.kotlin.times
|
|
import org.mockito.kotlin.verify
|
|
import org.mockito.kotlin.whenever
|
|
|
|
@RunWith(AndroidJUnit4::class)
|
|
class FallbackTaskbarUIControllerTest : TaskbarBaseTestCase() {
|
|
|
|
lateinit var fallbackTaskbarUIController: FallbackTaskbarUIController<RecentsActivity>
|
|
lateinit var stateListener: StateManager.StateListener<RecentsState>
|
|
|
|
private val recentsActivity: RecentsActivity = mock()
|
|
private val stateManager: StateManager<RecentsState, RecentsActivity> = mock()
|
|
|
|
@Before
|
|
override fun setup() {
|
|
super.setup()
|
|
whenever(recentsActivity.stateManager).thenReturn(stateManager)
|
|
fallbackTaskbarUIController = FallbackTaskbarUIController(recentsActivity)
|
|
|
|
// Capture registered state listener to send events to in our tests
|
|
val captor = argumentCaptor<StateManager.StateListener<RecentsState>>()
|
|
fallbackTaskbarUIController.init(taskbarControllers)
|
|
verify(stateManager).addStateListener(captor.capture())
|
|
stateListener = captor.lastValue
|
|
}
|
|
|
|
@Test
|
|
fun stateTransitionComplete_stateDefault() {
|
|
stateListener.onStateTransitionComplete(RecentsState.DEFAULT)
|
|
// verify dragging disabled
|
|
verify(taskbarDragController, times(1)).setDisallowGlobalDrag(true)
|
|
verify(taskbarAllAppsController, times(1)).setDisallowGlobalDrag(true)
|
|
// verify long click enabled
|
|
verify(taskbarDragController, times(1)).setDisallowLongClick(false)
|
|
verify(taskbarAllAppsController, times(1)).setDisallowLongClick(false)
|
|
// verify split selection enabled
|
|
verify(taskbarPopupController, times(1)).setAllowInitialSplitSelection(true)
|
|
}
|
|
|
|
@Test
|
|
fun stateTransitionComplete_stateSplitSelect() {
|
|
stateListener.onStateTransitionComplete(RecentsState.OVERVIEW_SPLIT_SELECT)
|
|
// verify dragging disabled
|
|
verify(taskbarDragController, times(1)).setDisallowGlobalDrag(false)
|
|
verify(taskbarAllAppsController, times(1)).setDisallowGlobalDrag(false)
|
|
// verify long click enabled
|
|
verify(taskbarDragController, times(1)).setDisallowLongClick(true)
|
|
verify(taskbarAllAppsController, times(1)).setDisallowLongClick(true)
|
|
// verify split selection enabled
|
|
verify(taskbarPopupController, times(1)).setAllowInitialSplitSelection(false)
|
|
}
|
|
}
|