Update the assertion to get correct navigation mode value.
Test: atest WMShellFlickerTests:PipRotationTest Bug: 206753786 Change-Id: Ie7ecaf1ca7df3055f270029fdfbb8c229a28ee7f
This commit is contained in:
@@ -20,8 +20,10 @@ package com.android.server.wm.flicker
|
||||
import com.android.server.wm.flicker.helpers.WindowUtils
|
||||
import com.android.server.wm.traces.common.FlickerComponentName
|
||||
|
||||
val LAUNCHER_COMPONENT = FlickerComponentName("com.google.android.apps.nexuslauncher",
|
||||
"com.google.android.apps.nexuslauncher.NexusLauncherActivity")
|
||||
val LAUNCHER_COMPONENT = FlickerComponentName(
|
||||
"com.google.android.apps.nexuslauncher",
|
||||
"com.google.android.apps.nexuslauncher.NexusLauncherActivity"
|
||||
)
|
||||
|
||||
/**
|
||||
* Checks that [FlickerComponentName.STATUS_BAR] window is visible and above the app windows in
|
||||
@@ -109,9 +111,9 @@ fun FlickerTestParameter.statusBarLayerIsVisible() {
|
||||
fun FlickerTestParameter.navBarLayerPositionStart() {
|
||||
assertLayersStart {
|
||||
val display = this.entry.displays.minByOrNull { it.id }
|
||||
?: throw RuntimeException("There is no display!")
|
||||
?: throw RuntimeException("There is no display!")
|
||||
this.visibleRegion(FlickerComponentName.NAV_BAR)
|
||||
.coversExactly(WindowUtils.getNavigationBarPosition(display))
|
||||
.coversExactly(WindowUtils.getNavigationBarPosition(display, isGesturalNavigation))
|
||||
}
|
||||
}
|
||||
|
||||
@@ -122,9 +124,9 @@ fun FlickerTestParameter.navBarLayerPositionStart() {
|
||||
fun FlickerTestParameter.navBarLayerPositionEnd() {
|
||||
assertLayersEnd {
|
||||
val display = this.entry.displays.minByOrNull { it.id }
|
||||
?: throw RuntimeException("There is no display!")
|
||||
?: throw RuntimeException("There is no display!")
|
||||
this.visibleRegion(FlickerComponentName.NAV_BAR)
|
||||
.coversExactly(WindowUtils.getNavigationBarPosition(display))
|
||||
.coversExactly(WindowUtils.getNavigationBarPosition(display, isGesturalNavigation))
|
||||
}
|
||||
}
|
||||
|
||||
@@ -216,11 +218,11 @@ fun FlickerTestParameter.replacesLayer(
|
||||
|
||||
assertLayersStart {
|
||||
this.isVisible(originalLayer)
|
||||
.isInvisible(newLayer)
|
||||
.isInvisible(newLayer)
|
||||
}
|
||||
|
||||
assertLayersEnd {
|
||||
this.isInvisible(originalLayer)
|
||||
.isVisible(newLayer)
|
||||
.isVisible(newLayer)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user