mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-04 18:06:48 +00:00
Refactoring the cellSize spec of responsive grid to divide the remainder space in code instead of dividing by cols/rows in the spec definition. For example, instead of using 0.2 in the spec for 5x5 grid (1 / number of rows), it is going to use 1 (100% of the remainder space) and divide the percentage by the number of cols or rows in code. Fix: 313621277 Flag: ACONFIG com.android.launcher3.enable_responsive_workspace TEAMFOOD Test: NexusLauncherImageTests Test: CalculatedWorkspaceSpecTest Test: DeviceProfileDumpTest Test: DeviceProfileAlternativeDisplaysDumpTest Change-Id: Ifaec838ac9751562ecedc1fe39b966ee3d092de3
201 lines
8.1 KiB
Kotlin
201 lines
8.1 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.responsive
|
|
|
|
import android.content.Context
|
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
|
import androidx.test.filters.SmallTest
|
|
import androidx.test.platform.app.InstrumentationRegistry
|
|
import com.android.launcher3.AbstractDeviceProfileTest
|
|
import com.android.launcher3.responsive.ResponsiveSpec.Companion.ResponsiveSpecType
|
|
import com.android.launcher3.tests.R as TestR
|
|
import com.android.launcher3.util.TestResourceHelper
|
|
import com.google.common.truth.Truth.assertThat
|
|
import org.junit.Before
|
|
import org.junit.Test
|
|
import org.junit.runner.RunWith
|
|
|
|
@SmallTest
|
|
@RunWith(AndroidJUnit4::class)
|
|
class WorkspaceSpecsTest : AbstractDeviceProfileTest() {
|
|
override val runningContext: Context = InstrumentationRegistry.getInstrumentation().context
|
|
val deviceSpec = deviceSpecs["phone"]!!
|
|
val aspectRatio = deviceSpec.naturalSize.first.toFloat() / deviceSpec.naturalSize.second
|
|
|
|
@Before
|
|
fun setup() {
|
|
initializeVarsForPhone(deviceSpec)
|
|
}
|
|
|
|
@Test
|
|
fun parseValidFile() {
|
|
val workspaceSpecs =
|
|
ResponsiveSpecsProvider.create(
|
|
TestResourceHelper(context, TestR.xml.valid_workspace_file),
|
|
ResponsiveSpecType.Workspace
|
|
)
|
|
|
|
val specs = workspaceSpecs.getSpecsByAspectRatio(aspectRatio)
|
|
assertThat(specs.heightSpecs.size).isEqualTo(3)
|
|
assertThat(specs.heightSpecs[0].toString())
|
|
.isEqualTo(
|
|
"ResponsiveSpec(" +
|
|
"maxAvailableSize=1533, " +
|
|
"dimensionType=HEIGHT, " +
|
|
"specType=Workspace, " +
|
|
"startPadding=SizeSpec(fixedSize=0.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=0.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647), " +
|
|
"endPadding=SizeSpec(fixedSize=84.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=0.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647), " +
|
|
"gutter=SizeSpec(fixedSize=42.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=0.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647), " +
|
|
"cellSize=SizeSpec(fixedSize=0.0, " +
|
|
"ofAvailableSpace=0.15808, " +
|
|
"ofRemainderSpace=0.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647)" +
|
|
")"
|
|
)
|
|
assertThat(specs.heightSpecs[1].toString())
|
|
.isEqualTo(
|
|
"ResponsiveSpec(" +
|
|
"maxAvailableSize=1607, " +
|
|
"dimensionType=HEIGHT, " +
|
|
"specType=Workspace, " +
|
|
"startPadding=SizeSpec(fixedSize=0.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=0.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647), " +
|
|
"endPadding=SizeSpec(fixedSize=0.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=1.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647), " +
|
|
"gutter=SizeSpec(fixedSize=42.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=0.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647), " +
|
|
"cellSize=SizeSpec(fixedSize=273.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=0.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647)" +
|
|
")"
|
|
)
|
|
assertThat(specs.heightSpecs[2].toString())
|
|
.isEqualTo(
|
|
"ResponsiveSpec(" +
|
|
"maxAvailableSize=26247, " +
|
|
"dimensionType=HEIGHT, " +
|
|
"specType=Workspace, " +
|
|
"startPadding=SizeSpec(fixedSize=21.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=0.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647), " +
|
|
"endPadding=SizeSpec(fixedSize=0.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=1.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647), " +
|
|
"gutter=SizeSpec(fixedSize=42.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=0.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647), " +
|
|
"cellSize=SizeSpec(fixedSize=273.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=0.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647)" +
|
|
")"
|
|
)
|
|
assertThat(specs.widthSpecs.size).isEqualTo(1)
|
|
assertThat(specs.widthSpecs[0].toString())
|
|
.isEqualTo(
|
|
"ResponsiveSpec(" +
|
|
"maxAvailableSize=26247, " +
|
|
"dimensionType=WIDTH, " +
|
|
"specType=Workspace, " +
|
|
"startPadding=SizeSpec(fixedSize=58.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=0.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647), " +
|
|
"endPadding=SizeSpec(fixedSize=58.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=0.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647), " +
|
|
"gutter=SizeSpec(fixedSize=42.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=0.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647), " +
|
|
"cellSize=SizeSpec(fixedSize=0.0, " +
|
|
"ofAvailableSpace=0.0, " +
|
|
"ofRemainderSpace=1.0, " +
|
|
"matchWorkspace=false, " +
|
|
"maxSize=2147483647)" +
|
|
")"
|
|
)
|
|
}
|
|
|
|
@Test(expected = IllegalStateException::class)
|
|
fun parseInvalidFile_missingTag_throwsError() {
|
|
ResponsiveSpecsProvider.create(
|
|
TestResourceHelper(context, TestR.xml.invalid_workspace_file_case_1),
|
|
ResponsiveSpecType.Workspace
|
|
)
|
|
}
|
|
|
|
@Test(expected = IllegalStateException::class)
|
|
fun parseInvalidFile_moreThanOneValuePerTag_throwsError() {
|
|
ResponsiveSpecsProvider.create(
|
|
TestResourceHelper(context, TestR.xml.invalid_workspace_file_case_2),
|
|
ResponsiveSpecType.Workspace
|
|
)
|
|
}
|
|
|
|
@Test(expected = IllegalStateException::class)
|
|
fun parseInvalidFile_valueBiggerThan1_throwsError() {
|
|
ResponsiveSpecsProvider.create(
|
|
TestResourceHelper(context, TestR.xml.invalid_workspace_file_case_3),
|
|
ResponsiveSpecType.Workspace
|
|
)
|
|
}
|
|
|
|
@Test(expected = IllegalStateException::class)
|
|
fun parseInvalidFile_matchWorkspace_true_throwsError() {
|
|
ResponsiveSpecsProvider.create(
|
|
TestResourceHelper(context, TestR.xml.invalid_workspace_file_case_4),
|
|
ResponsiveSpecType.Workspace
|
|
)
|
|
}
|
|
}
|