Merge "Add unit test for CustomAppWidgetProviderInfo" into main

This commit is contained in:
Sihua Ma
2024-07-18 15:47:32 +00:00
committed by Android (Google) Code Review
2 changed files with 63 additions and 0 deletions

View File

@@ -22,6 +22,8 @@ import android.content.pm.PackageManager;
import android.os.Parcel;
import android.os.Parcelable;
import androidx.annotation.VisibleForTesting;
import com.android.launcher3.InvariantDeviceProfile;
import com.android.launcher3.Utilities;
import com.android.launcher3.widget.LauncherAppWidgetProviderInfo;
@@ -52,6 +54,9 @@ public class CustomAppWidgetProviderInfo extends LauncherAppWidgetProviderInfo
}
}
@VisibleForTesting
CustomAppWidgetProviderInfo() {}
@Override
public void initSpans(Context context, InvariantDeviceProfile idp) {
mIsMinSizeFulfilled = Math.min(spanX, minSpanX) <= idp.numColumns

View File

@@ -0,0 +1,58 @@
/*
* Copyright (C) 2024 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.widget.custom
import android.content.ComponentName
import android.content.pm.PackageManager
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.filters.MediumTest
import androidx.test.platform.app.InstrumentationRegistry.getInstrumentation
import org.junit.Assert.assertEquals
import org.junit.Before
import org.junit.Test
import org.junit.runner.RunWith
import org.mockito.Mockito.mock
@MediumTest
@RunWith(AndroidJUnit4::class)
class CustomAppWidgetProviderInfoTest {
private lateinit var underTest: CustomAppWidgetProviderInfo
@Before
fun setup() {
underTest = CustomAppWidgetProviderInfo()
underTest.provider = PROVIDER_NAME
}
@Test
fun info_to_string() {
assertEquals("WidgetProviderInfo($PROVIDER_NAME)", underTest.toString())
}
@Test
fun get_label() {
underTest.label = " TEST_LABEL"
assertEquals(LABEL_NAME, underTest.getLabel(mock(PackageManager::class.java)))
}
companion object {
private val PROVIDER_NAME =
ComponentName(getInstrumentation().targetContext.packageName, "TEST_PACKAGE")
private const val LABEL_NAME = "TEST_LABEL"
}
}