mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-02 00:36:49 +00:00
Fix: 227344807 Fix: 231283023 Test: manual Change-Id: Iad0f38c2323be6d9752a8e509fc7e1164edbcf4e
136 lines
4.4 KiB
Kotlin
136 lines
4.4 KiB
Kotlin
/*
|
|
* Copyright (C) 2022 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
|
|
|
|
import android.content.Context
|
|
import android.graphics.PointF
|
|
import androidx.test.core.app.ApplicationProvider
|
|
import com.android.launcher3.util.DisplayController.Info
|
|
import com.android.launcher3.util.WindowBounds
|
|
import org.junit.Before
|
|
import org.mockito.ArgumentMatchers.any
|
|
import org.mockito.Mockito.mock
|
|
import org.mockito.Mockito.`when` as whenever
|
|
|
|
abstract class DeviceProfileBaseTest {
|
|
|
|
protected var context: Context? = null
|
|
protected var inv: InvariantDeviceProfile? = null
|
|
protected var info: Info = mock(Info::class.java)
|
|
protected var windowBounds: WindowBounds? = null
|
|
protected var isMultiWindowMode: Boolean = false
|
|
protected var transposeLayoutWithOrientation: Boolean = false
|
|
protected var useTwoPanels: Boolean = false
|
|
protected var isGestureMode: Boolean = true
|
|
|
|
@Before
|
|
fun setUp() {
|
|
context = ApplicationProvider.getApplicationContext()
|
|
// make sure to reset values
|
|
useTwoPanels = false
|
|
isGestureMode = true
|
|
}
|
|
|
|
protected fun newDP(): DeviceProfile = DeviceProfile(
|
|
context,
|
|
inv,
|
|
info,
|
|
windowBounds,
|
|
isMultiWindowMode,
|
|
transposeLayoutWithOrientation,
|
|
useTwoPanels,
|
|
isGestureMode
|
|
)
|
|
|
|
protected fun initializeVarsForPhone(isLandscape: Boolean = false) {
|
|
val (x, y) = if (isLandscape)
|
|
Pair(3120, 1440)
|
|
else
|
|
Pair(1440, 3120)
|
|
|
|
windowBounds = WindowBounds(x, y, x, y - 100, 0)
|
|
|
|
whenever(info.isTablet(any())).thenReturn(false)
|
|
whenever(info.getDensityDpi()).thenReturn(560)
|
|
|
|
inv = newScalableInvariantDeviceProfile()
|
|
}
|
|
|
|
protected fun initializeVarsForTablet(isLandscape: Boolean = false) {
|
|
val (x, y) = if (isLandscape)
|
|
Pair(2560, 1600)
|
|
else
|
|
Pair(1600, 2560)
|
|
|
|
windowBounds = WindowBounds(x, y, x, y - 100, 0)
|
|
|
|
whenever(info.isTablet(any())).thenReturn(true)
|
|
whenever(info.getDensityDpi()).thenReturn(320)
|
|
|
|
inv = newScalableInvariantDeviceProfile()
|
|
}
|
|
|
|
/**
|
|
* A very generic grid, just to make qsb tests work. For real calculations, make sure to use
|
|
* values that better represent a real grid.
|
|
*/
|
|
protected fun newScalableInvariantDeviceProfile(): InvariantDeviceProfile =
|
|
InvariantDeviceProfile().apply {
|
|
isScalable = true
|
|
numColumns = 4
|
|
numRows = 4
|
|
numShownHotseatIcons = 4
|
|
numDatabaseHotseatIcons = 6
|
|
numShrunkenHotseatIcons = 5
|
|
horizontalMargin = FloatArray(4) { 22f }
|
|
borderSpaces = listOf(
|
|
PointF(16f, 16f),
|
|
PointF(16f, 16f),
|
|
PointF(16f, 16f),
|
|
PointF(16f, 16f)
|
|
).toTypedArray()
|
|
allAppsBorderSpaces = listOf(
|
|
PointF(16f, 16f),
|
|
PointF(16f, 16f),
|
|
PointF(16f, 16f),
|
|
PointF(16f, 16f)
|
|
).toTypedArray()
|
|
hotseatBorderSpaces = FloatArray(4) { 16f }
|
|
hotseatColumnSpan = IntArray(4) { 4 }
|
|
iconSize = FloatArray(4) { 56f }
|
|
allAppsIconSize = FloatArray(4) { 56f }
|
|
iconTextSize = FloatArray(4) { 14f }
|
|
allAppsIconTextSize = FloatArray(4) { 14f }
|
|
minCellSize = listOf(
|
|
PointF(64f, 83f),
|
|
PointF(64f, 83f),
|
|
PointF(64f, 83f),
|
|
PointF(64f, 83f)
|
|
).toTypedArray()
|
|
allAppsCellSize = listOf(
|
|
PointF(64f, 83f),
|
|
PointF(64f, 83f),
|
|
PointF(64f, 83f),
|
|
PointF(64f, 83f)
|
|
).toTypedArray()
|
|
inlineQsb = booleanArrayOf(
|
|
false,
|
|
false,
|
|
false,
|
|
false
|
|
)
|
|
}
|
|
} |