a616e79764
bug: 354209068 Test: presubmit locally Flag: NONE writing test for floatingmaskview Change-Id: I90cbed18a908279365af185330fb2dc1e747ebff
67 lines
2.5 KiB
Kotlin
67 lines
2.5 KiB
Kotlin
/*
|
|
* 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.allapps
|
|
|
|
import android.content.Context
|
|
import android.view.ViewGroup
|
|
import android.view.ViewGroup.MarginLayoutParams
|
|
import android.widget.ImageView
|
|
import androidx.test.core.app.ApplicationProvider
|
|
import com.android.launcher3.util.ActivityContextWrapper
|
|
import com.google.common.truth.Truth
|
|
import org.junit.Before
|
|
import org.junit.Test
|
|
import org.mockito.Mock
|
|
import org.mockito.Mockito
|
|
import org.mockito.MockitoAnnotations
|
|
|
|
class FloatingMaskViewTest {
|
|
@Mock
|
|
private val mockAllAppsRecyclerView: AllAppsRecyclerView? = null
|
|
|
|
@Mock
|
|
private val mockBottomBox: ImageView? = null
|
|
private var mVut: FloatingMaskView? = null
|
|
@Before
|
|
fun setUp() {
|
|
MockitoAnnotations.initMocks(this)
|
|
val context: Context = ActivityContextWrapper(ApplicationProvider.getApplicationContext())
|
|
mVut = FloatingMaskView(context)
|
|
mVut!!.layoutParams = MarginLayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,
|
|
ViewGroup.LayoutParams.WRAP_CONTENT)
|
|
}
|
|
|
|
@Test
|
|
fun setParameters_paramsMarginEqualRecyclerViewPadding() {
|
|
val floatingMaskView = Mockito.spy(mVut)
|
|
Mockito.`when`(mockAllAppsRecyclerView!!.paddingLeft).thenReturn(PADDING_PX)
|
|
Mockito.`when`(mockAllAppsRecyclerView.paddingRight).thenReturn(PADDING_PX)
|
|
Mockito.`when`(mockAllAppsRecyclerView.paddingBottom).thenReturn(PADDING_PX)
|
|
Mockito.`when`(floatingMaskView!!.bottomBox).thenReturn(mockBottomBox)
|
|
val lp = floatingMaskView.layoutParams as MarginLayoutParams
|
|
|
|
floatingMaskView.setParameters(lp, mockAllAppsRecyclerView)
|
|
|
|
Truth.assertThat(lp.leftMargin).isEqualTo(PADDING_PX)
|
|
Truth.assertThat(lp.rightMargin).isEqualTo(PADDING_PX)
|
|
Mockito.verify(mockBottomBox)?.minimumHeight = PADDING_PX
|
|
}
|
|
|
|
companion object {
|
|
private const val PADDING_PX = 15
|
|
}
|
|
}
|