diff options
| author | 2023-01-18 04:09:31 +0000 | |
|---|---|---|
| committer | 2023-01-18 04:09:31 +0000 | |
| commit | 5bdad5d5478fbea406cafcaf9613dd7e95718a8f (patch) | |
| tree | b2fe724faef7536848676683042ac69fbb040e01 | |
| parent | d7f0da6718b173997b0da590e9e0ed2145430fce (diff) | |
| parent | 0d1fc26c7ca218bf0fd00e97714aff02308a4ef1 (diff) | |
Merge "Fixes updateOverlayVisibility and updates SideFpsControllerTest for natural orientation shift" into tm-qpr-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/biometrics/SideFpsController.kt | 12 | ||||
| -rw-r--r-- | packages/SystemUI/tests/src/com/android/systemui/biometrics/SideFpsControllerTest.kt | 344 |
2 files changed, 287 insertions, 69 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/biometrics/SideFpsController.kt b/packages/SystemUI/src/com/android/systemui/biometrics/SideFpsController.kt index 1afa9b26ce98..6f594d5eb0e2 100644 --- a/packages/SystemUI/src/com/android/systemui/biometrics/SideFpsController.kt +++ b/packages/SystemUI/src/com/android/systemui/biometrics/SideFpsController.kt @@ -111,7 +111,7 @@ constructor( context.resources.getInteger(android.R.integer.config_mediumAnimTime).toLong() private val isReverseDefaultRotation = - context.getResources().getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation) + context.resources.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation) private var overlayHideAnimator: ViewPropertyAnimator? = null @@ -268,10 +268,12 @@ constructor( val isDefaultOrientation = if (isReverseDefaultRotation) !isNaturalOrientation else isNaturalOrientation val size = windowManager.maximumWindowMetrics.bounds + val displayWidth = if (isDefaultOrientation) size.width() else size.height() val displayHeight = if (isDefaultOrientation) size.height() else size.width() val boundsWidth = if (isDefaultOrientation) bounds.width() else bounds.height() val boundsHeight = if (isDefaultOrientation) bounds.height() else bounds.width() + val sensorBounds = if (overlayOffsets.isYAligned()) { Rect( @@ -297,6 +299,7 @@ constructor( overlayViewParams.x = sensorBounds.left overlayViewParams.y = sensorBounds.top + windowManager.updateViewLayout(overlayView, overlayViewParams) } @@ -306,7 +309,12 @@ constructor( } // hide after a few seconds if the sensor is oriented down and there are // large overlapping system bars - val rotation = context.display?.rotation + var rotation = context.display?.rotation + + if (rotation != null) { + rotation = getRotationFromDefault(rotation) + } + if ( windowManager.currentWindowMetrics.windowInsets.hasBigNavigationBar() && ((rotation == Surface.ROTATION_270 && overlayOffsets.isYAligned()) || diff --git a/packages/SystemUI/tests/src/com/android/systemui/biometrics/SideFpsControllerTest.kt b/packages/SystemUI/tests/src/com/android/systemui/biometrics/SideFpsControllerTest.kt index 3c40835fe59d..b92c5d039d45 100644 --- a/packages/SystemUI/tests/src/com/android/systemui/biometrics/SideFpsControllerTest.kt +++ b/packages/SystemUI/tests/src/com/android/systemui/biometrics/SideFpsControllerTest.kt @@ -53,6 +53,7 @@ import androidx.test.filters.SmallTest import com.airbnb.lottie.LottieAnimationView import com.android.systemui.R import com.android.systemui.SysuiTestCase +import com.android.systemui.SysuiTestableContext import com.android.systemui.dump.DumpManager import com.android.systemui.recents.OverviewProxyService import com.android.systemui.util.concurrency.FakeExecutor @@ -106,8 +107,7 @@ class SideFpsControllerTest : SysuiTestCase() { enum class DeviceConfig { X_ALIGNED, - Y_ALIGNED_UNFOLDED, - Y_ALIGNED_FOLDED + Y_ALIGNED, } private lateinit var deviceConfig: DeviceConfig @@ -143,6 +143,7 @@ class SideFpsControllerTest : SysuiTestCase() { private fun testWithDisplay( deviceConfig: DeviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation: Boolean = false, initInfo: DisplayInfo.() -> Unit = {}, windowInsets: WindowInsets = insetsForSmallNavbar(), block: () -> Unit @@ -151,27 +152,21 @@ class SideFpsControllerTest : SysuiTestCase() { when (deviceConfig) { DeviceConfig.X_ALIGNED -> { - displayWidth = 2560 - displayHeight = 1600 - sensorLocation = SensorLocationInternal("", 2325, 0, 0) - boundsWidth = 160 - boundsHeight = 84 + displayWidth = 3000 + displayHeight = 1500 + sensorLocation = SensorLocationInternal("", 2500, 0, 0) + boundsWidth = 200 + boundsHeight = 100 } - DeviceConfig.Y_ALIGNED_UNFOLDED -> { - displayWidth = 2208 - displayHeight = 1840 - sensorLocation = SensorLocationInternal("", 0, 510, 0) - boundsWidth = 110 - boundsHeight = 210 - } - DeviceConfig.Y_ALIGNED_FOLDED -> { - displayWidth = 1080 - displayHeight = 2100 - sensorLocation = SensorLocationInternal("", 0, 590, 0) - boundsWidth = 110 - boundsHeight = 210 + DeviceConfig.Y_ALIGNED -> { + displayWidth = 2500 + displayHeight = 2000 + sensorLocation = SensorLocationInternal("", 0, 300, 0) + boundsWidth = 100 + boundsHeight = 200 } } + indicatorBounds = Rect(0, 0, boundsWidth, boundsHeight) displayBounds = Rect(0, 0, displayWidth, displayHeight) var locations = listOf(sensorLocation) @@ -194,8 +189,10 @@ class SideFpsControllerTest : SysuiTestCase() { val displayInfo = DisplayInfo() displayInfo.initInfo() + val dmGlobal = mock(DisplayManagerGlobal::class.java) val display = Display(dmGlobal, DISPLAY_ID, displayInfo, DEFAULT_DISPLAY_ADJUSTMENTS) + whenEver(dmGlobal.getDisplayInfo(eq(DISPLAY_ID))).thenReturn(displayInfo) whenEver(windowManager.defaultDisplay).thenReturn(display) whenEver(windowManager.maximumWindowMetrics) @@ -203,9 +200,15 @@ class SideFpsControllerTest : SysuiTestCase() { whenEver(windowManager.currentWindowMetrics) .thenReturn(WindowMetrics(displayBounds, windowInsets)) + val sideFpsControllerContext = context.createDisplayContext(display) as SysuiTestableContext + sideFpsControllerContext.orCreateTestableResources.addOverride( + com.android.internal.R.bool.config_reverseDefaultRotation, + isReverseDefaultRotation + ) + sideFpsController = SideFpsController( - context.createDisplayContext(display), + sideFpsControllerContext, layoutInflater, fingerprintManager, windowManager, @@ -299,108 +302,316 @@ class SideFpsControllerTest : SysuiTestCase() { } @Test - fun showsWithTaskbar() = - testWithDisplay(deviceConfig = DeviceConfig.X_ALIGNED, { rotation = Surface.ROTATION_0 }) { - hidesWithTaskbar(visible = true) - } + fun showsSfpsIndicatorWithTaskbarForXAlignedSensor_0() = + testWithDisplay( + deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = false, + { rotation = Surface.ROTATION_0 } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } @Test - fun showsWithTaskbarOnY() = + fun showsSfpsIndicatorWithTaskbarForXAlignedSensor_90() = testWithDisplay( - deviceConfig = DeviceConfig.Y_ALIGNED_UNFOLDED, - { rotation = Surface.ROTATION_0 } - ) { hidesWithTaskbar(visible = true) } + deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = false, + { rotation = Surface.ROTATION_90 } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } @Test - fun showsWithTaskbar90() = - testWithDisplay(deviceConfig = DeviceConfig.X_ALIGNED, { rotation = Surface.ROTATION_90 }) { - hidesWithTaskbar(visible = true) - } + fun showsSfpsIndicatorWithTaskbarForXAlignedSensor_180() = + testWithDisplay( + deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = false, + { rotation = Surface.ROTATION_180 } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } + + @Test + fun showsSfpsIndicatorWithTaskbarCollapsedDownForXAlignedSensor_180() = + testWithDisplay( + deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = false, + { rotation = Surface.ROTATION_180 }, + windowInsets = insetsForSmallNavbar() + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } @Test - fun showsWithTaskbar90OnY() = + fun hidesSfpsIndicatorWhenOccludingTaskbarForXAlignedSensor_180() = testWithDisplay( - deviceConfig = DeviceConfig.Y_ALIGNED_UNFOLDED, + deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = false, + { rotation = Surface.ROTATION_180 }, + windowInsets = insetsForLargeNavbar() + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = false) } + + @Test + fun showsSfpsIndicatorWithTaskbarForXAlignedSensor_270() = + testWithDisplay( + deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = false, + { rotation = Surface.ROTATION_270 } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } + + @Test + fun showsSfpsIndicatorWithTaskbarForXAlignedSensor_InReverseDefaultRotation_0() = + testWithDisplay( + deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = true, + { rotation = Surface.ROTATION_0 } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } + + @Test + fun showsSfpsIndicatorWithTaskbarForXAlignedSensor_InReverseDefaultRotation_90() = + testWithDisplay( + deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = true, { rotation = Surface.ROTATION_90 } - ) { hidesWithTaskbar(visible = true) } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } @Test - fun showsWithTaskbar180() = + fun showsSfpsIndicatorWithTaskbarCollapsedDownForXAlignedSensor_InReverseDefaultRotation_90() = testWithDisplay( deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = true, + { rotation = Surface.ROTATION_90 }, + windowInsets = insetsForSmallNavbar() + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } + + @Test + fun hidesSfpsIndicatorWhenOccludingTaskbarForXAlignedSensor_InReverseDefaultRotation_90() = + testWithDisplay( + deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = true, + { rotation = Surface.ROTATION_90 }, + windowInsets = insetsForLargeNavbar() + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = false) } + + @Test + fun showsSfpsIndicatorWithTaskbarForXAlignedSensor_InReverseDefaultRotation_180() = + testWithDisplay( + deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = true, { rotation = Surface.ROTATION_180 } - ) { hidesWithTaskbar(visible = true) } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } @Test - fun showsWithTaskbar270OnY() = + fun showsSfpsIndicatorWithTaskbarForXAlignedSensor_InReverseDefaultRotation_270() = testWithDisplay( - deviceConfig = DeviceConfig.Y_ALIGNED_UNFOLDED, + deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = true, { rotation = Surface.ROTATION_270 } - ) { hidesWithTaskbar(visible = true) } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } @Test - fun showsWithTaskbarCollapsedDown() = + fun showsSfpsIndicatorWithTaskbarForYAlignedSensor_0() = testWithDisplay( - deviceConfig = DeviceConfig.X_ALIGNED, + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = false, + { rotation = Surface.ROTATION_0 } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } + + @Test + fun showsSfpsIndicatorWithTaskbarForYAlignedSensor_90() = + testWithDisplay( + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = false, + { rotation = Surface.ROTATION_90 } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } + + @Test + fun showsSfpsIndicatorWithTaskbarForYAlignedSensor_180() = + testWithDisplay( + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = false, + { rotation = Surface.ROTATION_180 }, + ) { + verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) + } + + @Test + fun showsSfpsIndicatorWithTaskbarForYAlignedSensor_270() = + testWithDisplay( + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = false, + { rotation = Surface.ROTATION_270 } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } + + @Test + fun showsSfpsIndicatorWithTaskbarCollapsedDownForYAlignedSensor_270() = + testWithDisplay( + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = false, { rotation = Surface.ROTATION_270 }, windowInsets = insetsForSmallNavbar() - ) { hidesWithTaskbar(visible = true) } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } @Test - fun showsWithTaskbarCollapsedDownOnY() = + fun hidesSfpsIndicatorWhenOccludingTaskbarForYAlignedSensor_270() = testWithDisplay( - deviceConfig = DeviceConfig.Y_ALIGNED_UNFOLDED, + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = false, + { rotation = Surface.ROTATION_270 }, + windowInsets = insetsForLargeNavbar() + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = false) } + + @Test + fun showsSfpsIndicatorWithTaskbarForYAlignedSensor_InReverseDefaultRotation_0() = + testWithDisplay( + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = true, + { rotation = Surface.ROTATION_0 } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } + + @Test + fun showsSfpsIndicatorWithTaskbarForYAlignedSensor_InReverseDefaultRotation_90() = + testWithDisplay( + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = true, + { rotation = Surface.ROTATION_90 }, + ) { + verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) + } + + @Test + fun showsSfpsIndicatorWithTaskbarForYAlignedSensor_InReverseDefaultRotation_180() = + testWithDisplay( + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = true, + { rotation = Surface.ROTATION_180 } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } + + @Test + fun showsSfpsIndicatorWithTaskbarCollapsedDownForYAlignedSensor_InReverseDefaultRotation_180() = + testWithDisplay( + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = true, { rotation = Surface.ROTATION_180 }, windowInsets = insetsForSmallNavbar() - ) { hidesWithTaskbar(visible = true) } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } @Test - fun hidesWithTaskbarDown() = + fun hidesSfpsIndicatorWhenOccludingTaskbarForYAlignedSensor_InReverseDefaultRotation_180() = testWithDisplay( - deviceConfig = DeviceConfig.X_ALIGNED, + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = true, { rotation = Surface.ROTATION_180 }, windowInsets = insetsForLargeNavbar() - ) { hidesWithTaskbar(visible = false) } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = false) } @Test - fun hidesWithTaskbarDownOnY() = + fun showsSfpsIndicatorWithTaskbarForYAlignedSensor_InReverseDefaultRotation_270() = testWithDisplay( - deviceConfig = DeviceConfig.Y_ALIGNED_UNFOLDED, - { rotation = Surface.ROTATION_270 }, - windowInsets = insetsForLargeNavbar() - ) { hidesWithTaskbar(visible = true) } + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = true, + { rotation = Surface.ROTATION_270 } + ) { verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible = true) } - private fun hidesWithTaskbar(visible: Boolean) { + private fun verifySfpsIndicatorVisibilityOnTaskbarUpdate(sfpsViewVisible: Boolean) { + sideFpsController.overlayOffsets = sensorLocation overlayController.show(SENSOR_ID, REASON_UNKNOWN) executor.runAllReady() - sideFpsController.overviewProxyListener.onTaskbarStatusUpdated(visible, false) + sideFpsController.overviewProxyListener.onTaskbarStatusUpdated(true, false) executor.runAllReady() verify(windowManager).addView(any(), any()) verify(windowManager, never()).removeView(any()) - verify(sideFpsView).visibility = if (visible) View.VISIBLE else View.GONE + verify(sideFpsView).visibility = if (sfpsViewVisible) View.VISIBLE else View.GONE } + /** + * {@link SideFpsController#updateOverlayParams} calculates indicator placement for ROTATION_0, + * and uses RotateUtils.rotateBounds to map to the correct indicator location given the device + * rotation. Assuming RotationUtils.rotateBounds works correctly, tests for indicator placement + * in other rotations have been omitted. + */ @Test - fun testIndicatorPlacementForXAlignedSensor() = - testWithDisplay(deviceConfig = DeviceConfig.X_ALIGNED) { - overlayController.show(SENSOR_ID, REASON_UNKNOWN) + fun verifiesIndicatorPlacementForXAlignedSensor_0() { + testWithDisplay( + deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = false, + { rotation = Surface.ROTATION_0 } + ) { sideFpsController.overlayOffsets = sensorLocation + sideFpsController.updateOverlayParams(windowManager.defaultDisplay, indicatorBounds) + + overlayController.show(SENSOR_ID, REASON_UNKNOWN) executor.runAllReady() verify(windowManager).updateViewLayout(any(), overlayViewParamsCaptor.capture()) + assertThat(overlayViewParamsCaptor.value.x).isEqualTo(sensorLocation.sensorLocationX) + assertThat(overlayViewParamsCaptor.value.y).isEqualTo(0) + } + } + /** + * {@link SideFpsController#updateOverlayParams} calculates indicator placement for ROTATION_270 + * in reverse default rotation. It then uses RotateUtils.rotateBounds to map to the correct + * indicator location given the device rotation. Assuming RotationUtils.rotateBounds works + * correctly, tests for indicator placement in other rotations have been omitted. + */ + @Test + fun verifiesIndicatorPlacementForXAlignedSensor_InReverseDefaultRotation_270() { + testWithDisplay( + deviceConfig = DeviceConfig.X_ALIGNED, + isReverseDefaultRotation = true, + { rotation = Surface.ROTATION_270 } + ) { + sideFpsController.overlayOffsets = sensorLocation + + sideFpsController.updateOverlayParams(windowManager.defaultDisplay, indicatorBounds) + + overlayController.show(SENSOR_ID, REASON_UNKNOWN) + executor.runAllReady() + + verify(windowManager).updateViewLayout(any(), overlayViewParamsCaptor.capture()) assertThat(overlayViewParamsCaptor.value.x).isEqualTo(sensorLocation.sensorLocationX) assertThat(overlayViewParamsCaptor.value.y).isEqualTo(0) } + } + /** + * {@link SideFpsController#updateOverlayParams} calculates indicator placement for ROTATION_0, + * and uses RotateUtils.rotateBounds to map to the correct indicator location given the device + * rotation. Assuming RotationUtils.rotateBounds works correctly, tests for indicator placement + * in other rotations have been omitted. + */ @Test - fun testIndicatorPlacementForYAlignedSensor() = - testWithDisplay(deviceConfig = DeviceConfig.Y_ALIGNED_UNFOLDED) { + fun verifiesIndicatorPlacementForYAlignedSensor_0() = + testWithDisplay( + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = false, + { rotation = Surface.ROTATION_0 } + ) { sideFpsController.overlayOffsets = sensorLocation + sideFpsController.updateOverlayParams(windowManager.defaultDisplay, indicatorBounds) + + overlayController.show(SENSOR_ID, REASON_UNKNOWN) + executor.runAllReady() + + verify(windowManager).updateViewLayout(any(), overlayViewParamsCaptor.capture()) + assertThat(overlayViewParamsCaptor.value.x).isEqualTo(displayWidth - boundsWidth) + assertThat(overlayViewParamsCaptor.value.y).isEqualTo(sensorLocation.sensorLocationY) + } + + /** + * {@link SideFpsController#updateOverlayParams} calculates indicator placement for ROTATION_270 + * in reverse default rotation. It then uses RotateUtils.rotateBounds to map to the correct + * indicator location given the device rotation. Assuming RotationUtils.rotateBounds works + * correctly, tests for indicator placement in other rotations have been omitted. + */ + @Test + fun verifiesIndicatorPlacementForYAlignedSensor_InReverseDefaultRotation_270() = + testWithDisplay( + deviceConfig = DeviceConfig.Y_ALIGNED, + isReverseDefaultRotation = true, + { rotation = Surface.ROTATION_270 } + ) { + sideFpsController.overlayOffsets = sensorLocation + + sideFpsController.updateOverlayParams(windowManager.defaultDisplay, indicatorBounds) + overlayController.show(SENSOR_ID, REASON_UNKNOWN) executor.runAllReady() @@ -412,7 +623,6 @@ class SideFpsControllerTest : SysuiTestCase() { @Test fun hasSideFpsSensor_withSensorProps_returnsTrue() = testWithDisplay { // By default all those tests assume the side fps sensor is available. - assertThat(fingerprintManager.hasSideFpsSensor()).isTrue() } @@ -425,7 +635,7 @@ class SideFpsControllerTest : SysuiTestCase() { @Test fun testLayoutParams_isKeyguardDialogType() = - testWithDisplay(deviceConfig = DeviceConfig.Y_ALIGNED_UNFOLDED) { + testWithDisplay(deviceConfig = DeviceConfig.Y_ALIGNED) { sideFpsController.overlayOffsets = sensorLocation sideFpsController.updateOverlayParams(windowManager.defaultDisplay, indicatorBounds) overlayController.show(SENSOR_ID, REASON_UNKNOWN) @@ -440,7 +650,7 @@ class SideFpsControllerTest : SysuiTestCase() { @Test fun testLayoutParams_hasNoMoveAnimationWindowFlag() = - testWithDisplay(deviceConfig = DeviceConfig.Y_ALIGNED_UNFOLDED) { + testWithDisplay(deviceConfig = DeviceConfig.Y_ALIGNED) { sideFpsController.overlayOffsets = sensorLocation sideFpsController.updateOverlayParams(windowManager.defaultDisplay, indicatorBounds) overlayController.show(SENSOR_ID, REASON_UNKNOWN) @@ -455,7 +665,7 @@ class SideFpsControllerTest : SysuiTestCase() { @Test fun testLayoutParams_hasTrustedOverlayWindowFlag() = - testWithDisplay(deviceConfig = DeviceConfig.Y_ALIGNED_UNFOLDED) { + testWithDisplay(deviceConfig = DeviceConfig.Y_ALIGNED) { sideFpsController.overlayOffsets = sensorLocation sideFpsController.updateOverlayParams(windowManager.defaultDisplay, indicatorBounds) overlayController.show(SENSOR_ID, REASON_UNKNOWN) |