mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-04 09:56:49 +00:00
Fix: 227344807 Fix: 231283023 Test: manual Change-Id: Iad0f38c2323be6d9752a8e509fc7e1164edbcf4e
103 lines
2.7 KiB
Kotlin
103 lines
2.7 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 androidx.test.ext.junit.runners.AndroidJUnit4
|
|
import androidx.test.filters.SmallTest
|
|
import com.google.common.truth.Truth.assertThat
|
|
import org.junit.Test
|
|
import org.junit.runner.RunWith
|
|
|
|
/**
|
|
* Test for [DeviceProfile]
|
|
*/
|
|
@SmallTest
|
|
@RunWith(AndroidJUnit4::class)
|
|
class InlineQsbTest : DeviceProfileBaseTest() {
|
|
|
|
@Test
|
|
fun qsb_is_not_inline_for_phones() {
|
|
initializeVarsForPhone()
|
|
|
|
val dp = newDP()
|
|
|
|
assertThat(dp.isQsbInline).isFalse()
|
|
}
|
|
|
|
@Test
|
|
fun qsb_is_inline_for_tablet_portrait() {
|
|
initializeVarsForTablet()
|
|
inv = newScalableInvariantDeviceProfile().apply {
|
|
inlineQsb = booleanArrayOf(
|
|
false,
|
|
true, // landscape
|
|
false,
|
|
false
|
|
)
|
|
}
|
|
|
|
val dp = DeviceProfile(
|
|
context,
|
|
inv,
|
|
info,
|
|
windowBounds,
|
|
isMultiWindowMode,
|
|
transposeLayoutWithOrientation,
|
|
useTwoPanels,
|
|
isGestureMode
|
|
)
|
|
|
|
assertThat(dp.isQsbInline).isFalse()
|
|
}
|
|
|
|
@Test
|
|
fun qsb_is_inline_for_tablet_landscape() {
|
|
initializeVarsForTablet(isLandscape = true)
|
|
inv = newScalableInvariantDeviceProfile().apply {
|
|
inlineQsb = booleanArrayOf(
|
|
false,
|
|
true, // landscape
|
|
false,
|
|
false
|
|
)
|
|
numColumns = 6
|
|
numRows = 5
|
|
numShownHotseatIcons = 6
|
|
}
|
|
|
|
val dp = newDP()
|
|
|
|
if (dp.hotseatQsbHeight > 0) {
|
|
assertThat(dp.isQsbInline).isTrue()
|
|
} else { // Launcher3 doesn't have QSB height
|
|
assertThat(dp.isQsbInline).isFalse()
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This test is to make sure that a tablet doesn't inline the QSB if the layout doesn't support
|
|
*/
|
|
@Test
|
|
fun qsb_is_not_inline_for_tablet_landscape_without_inline() {
|
|
initializeVarsForTablet(isLandscape = true)
|
|
useTwoPanels = true
|
|
|
|
val dp = newDP()
|
|
|
|
assertThat(dp.isQsbInline).isFalse()
|
|
}
|
|
|
|
} |