summaryrefslogtreecommitdiff
path: root/tests/src/com/android/launcher3/util/DisplayControllerTest.kt
blob: 8670d40f4efc0036116fa361c2b623eb5da37f34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
 * 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.util

import android.content.Context
import android.content.res.Configuration
import android.content.res.Resources
import android.graphics.Point
import android.graphics.Rect
import android.hardware.display.DisplayManager
import android.util.ArrayMap
import android.util.DisplayMetrics
import android.view.Display
import android.view.Surface
import androidx.test.annotation.UiThreadTest
import androidx.test.core.app.ApplicationProvider
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.filters.SmallTest
import com.android.launcher3.LauncherPrefs
import com.android.launcher3.LauncherPrefs.Companion.TASKBAR_PINNING
import com.android.launcher3.util.DisplayController.CHANGE_DENSITY
import com.android.launcher3.util.DisplayController.CHANGE_ROTATION
import com.android.launcher3.util.DisplayController.CHANGE_TASKBAR_PINNING
import com.android.launcher3.util.DisplayController.DisplayInfoChangeListener
import com.android.launcher3.util.MainThreadInitializedObject.SandboxContext
import com.android.launcher3.util.window.CachedDisplayInfo
import com.android.launcher3.util.window.WindowManagerProxy
import kotlin.math.min
import org.junit.Before
import org.junit.Test
import org.junit.runner.RunWith
import org.mockito.kotlin.any
import org.mockito.kotlin.anyOrNull
import org.mockito.kotlin.doNothing
import org.mockito.kotlin.eq
import org.mockito.kotlin.mock
import org.mockito.kotlin.verify
import org.mockito.kotlin.whenever
import org.mockito.stubbing.Answer

/** Unit tests for {@link DisplayController} */
@SmallTest
@RunWith(AndroidJUnit4::class)
class DisplayControllerTest {

    private val appContext: Context = ApplicationProvider.getApplicationContext()

    private val context: SandboxContext = mock()
    private val windowManagerProxy: WindowManagerProxy = mock()
    private val launcherPrefs: LauncherPrefs = mock()
    private val displayManager: DisplayManager = mock()
    private val display: Display = mock()
    private val resources: Resources = mock()
    private val displayInfoChangeListener: DisplayInfoChangeListener = mock()

    private lateinit var displayController: DisplayController

    private val width = 2208
    private val height = 1840
    private val inset = 110
    private val densityDpi = 420
    private val density = densityDpi / DisplayMetrics.DENSITY_DEFAULT.toFloat()
    private val bounds =
        arrayOf(
            WindowBounds(Rect(0, 0, width, height), Rect(0, inset, 0, 0), Surface.ROTATION_0),
            WindowBounds(Rect(0, 0, height, width), Rect(0, inset, 0, 0), Surface.ROTATION_90),
            WindowBounds(Rect(0, 0, width, height), Rect(0, inset, 0, 0), Surface.ROTATION_180),
            WindowBounds(Rect(0, 0, height, width), Rect(0, inset, 0, 0), Surface.ROTATION_270)
        )
    private val configuration =
        Configuration(appContext.resources.configuration).apply {
            densityDpi = this@DisplayControllerTest.densityDpi
            screenWidthDp = (bounds[0].bounds.width() / density).toInt()
            screenHeightDp = (bounds[0].bounds.height() / density).toInt()
            smallestScreenWidthDp = min(screenWidthDp, screenHeightDp)
        }

    @Before
    fun setUp() {
        whenever(context.getObject(eq(WindowManagerProxy.INSTANCE))).thenReturn(windowManagerProxy)
        whenever(context.getObject(eq(LauncherPrefs.INSTANCE))).thenReturn(launcherPrefs)
        whenever(launcherPrefs.get(TASKBAR_PINNING)).thenReturn(false)

        // Mock WindowManagerProxy
        val displayInfo =
            CachedDisplayInfo(Point(width, height), Surface.ROTATION_0, Rect(0, 0, 0, 0))
        whenever(windowManagerProxy.getDisplayInfo(any())).thenReturn(displayInfo)
        whenever(windowManagerProxy.estimateInternalDisplayBounds(any()))
            .thenAnswer(
                Answer {
                    // Always create a new copy of bounds
                    val perDisplayBounds = ArrayMap<CachedDisplayInfo, List<WindowBounds>>()
                    perDisplayBounds[displayInfo] = bounds.toList()
                    return@Answer perDisplayBounds
                }
            )
        whenever(windowManagerProxy.getRealBounds(any(), any())).thenAnswer { i ->
            bounds[i.getArgument<CachedDisplayInfo>(1).rotation]
        }

        whenever(windowManagerProxy.getNavigationMode(any())).thenReturn(NavigationMode.NO_BUTTON)
        // Mock context
        whenever(context.createWindowContext(any(), any(), anyOrNull())).thenReturn(context)
        whenever(context.getSystemService(eq(DisplayManager::class.java)))
            .thenReturn(displayManager)
        doNothing().whenever(context).registerComponentCallbacks(any())

        // Mock display
        whenever(display.rotation).thenReturn(displayInfo.rotation)
        whenever(context.display).thenReturn(display)
        whenever(displayManager.getDisplay(any())).thenReturn(display)

        // Mock resources
        whenever(resources.configuration).thenReturn(configuration)
        whenever(context.resources).thenReturn(resources)

        // Initialize DisplayController
        displayController = DisplayController(context)
        displayController.addChangeListener(displayInfoChangeListener)
    }

    @Test
    @UiThreadTest
    fun testRotation() {
        val displayInfo =
            CachedDisplayInfo(Point(height, width), Surface.ROTATION_90, Rect(0, 0, 0, 0))
        whenever(windowManagerProxy.getDisplayInfo(any())).thenReturn(displayInfo)
        whenever(display.rotation).thenReturn(displayInfo.rotation)
        val configuration =
            Configuration(configuration).apply {
                screenWidthDp = configuration.screenHeightDp
                screenHeightDp = configuration.screenWidthDp
            }
        whenever(resources.configuration).thenReturn(configuration)

        displayController.onConfigurationChanged(configuration)

        verify(displayInfoChangeListener).onDisplayInfoChanged(any(), any(), eq(CHANGE_ROTATION))
    }

    @Test
    @UiThreadTest
    fun testFontScale() {
        val configuration = Configuration(configuration).apply { fontScale = 1.2f }
        whenever(resources.configuration).thenReturn(configuration)

        displayController.onConfigurationChanged(configuration)

        verify(displayInfoChangeListener).onDisplayInfoChanged(any(), any(), eq(CHANGE_DENSITY))
    }

    @Test
    @UiThreadTest
    fun testTaskbarPinning() {
        whenever(launcherPrefs.get(TASKBAR_PINNING)).thenReturn(true)
        displayController.handleInfoChange(display)
        verify(displayInfoChangeListener)
            .onDisplayInfoChanged(any(), any(), eq(CHANGE_TASKBAR_PINNING))
    }
}