Merge "Promote stable flicker tests" into sc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
ec6c6835ca
@@ -16,12 +16,14 @@
|
|||||||
|
|
||||||
package com.android.server.wm.flicker.close
|
package com.android.server.wm.flicker.close
|
||||||
|
|
||||||
|
import android.platform.test.annotations.Postsubmit
|
||||||
import androidx.test.filters.RequiresDevice
|
import androidx.test.filters.RequiresDevice
|
||||||
import com.android.server.wm.flicker.FlickerParametersRunnerFactory
|
import com.android.server.wm.flicker.FlickerParametersRunnerFactory
|
||||||
import com.android.server.wm.flicker.FlickerTestParameter
|
import com.android.server.wm.flicker.FlickerTestParameter
|
||||||
import com.android.server.wm.flicker.FlickerTestParameterFactory
|
import com.android.server.wm.flicker.FlickerTestParameterFactory
|
||||||
import com.android.server.wm.flicker.dsl.FlickerBuilder
|
import com.android.server.wm.flicker.dsl.FlickerBuilder
|
||||||
import org.junit.FixMethodOrder
|
import org.junit.FixMethodOrder
|
||||||
|
import org.junit.Test
|
||||||
import org.junit.runner.RunWith
|
import org.junit.runner.RunWith
|
||||||
import org.junit.runners.MethodSorters
|
import org.junit.runners.MethodSorters
|
||||||
import org.junit.runners.Parameterized
|
import org.junit.runners.Parameterized
|
||||||
@@ -44,6 +46,30 @@ class CloseAppHomeButtonTest(testSpec: FlickerTestParameter) : CloseAppTransitio
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
override fun statusBarLayerIsAlwaysVisible() {
|
||||||
|
super.statusBarLayerIsAlwaysVisible()
|
||||||
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
override fun statusBarLayerRotatesScales() {
|
||||||
|
super.statusBarLayerRotatesScales()
|
||||||
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
override fun launcherLayerReplacesApp() {
|
||||||
|
super.launcherLayerReplacesApp()
|
||||||
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
override fun noUncoveredRegions() {
|
||||||
|
super.noUncoveredRegions()
|
||||||
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
@Parameterized.Parameters(name = "{0}")
|
@Parameterized.Parameters(name = "{0}")
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
package com.android.server.wm.flicker.close
|
package com.android.server.wm.flicker.close
|
||||||
|
|
||||||
import android.app.Instrumentation
|
import android.app.Instrumentation
|
||||||
|
import android.platform.test.annotations.Postsubmit
|
||||||
import android.platform.test.annotations.Presubmit
|
import android.platform.test.annotations.Presubmit
|
||||||
import android.view.Surface
|
import android.view.Surface
|
||||||
import androidx.test.filters.FlakyTest
|
import androidx.test.filters.FlakyTest
|
||||||
@@ -82,7 +83,7 @@ abstract class CloseAppTransition(protected val testSpec: FlickerTestParameter)
|
|||||||
testSpec.navBarLayerIsAlwaysVisible(rotatesScreen = testSpec.isRotated)
|
testSpec.navBarLayerIsAlwaysVisible(rotatesScreen = testSpec.isRotated)
|
||||||
}
|
}
|
||||||
|
|
||||||
@FlakyTest
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
open fun statusBarLayerIsAlwaysVisible() {
|
open fun statusBarLayerIsAlwaysVisible() {
|
||||||
testSpec.statusBarLayerIsAlwaysVisible(rotatesScreen = testSpec.isRotated)
|
testSpec.statusBarLayerIsAlwaysVisible(rotatesScreen = testSpec.isRotated)
|
||||||
@@ -94,7 +95,7 @@ abstract class CloseAppTransition(protected val testSpec: FlickerTestParameter)
|
|||||||
testSpec.navBarLayerRotatesAndScales(testSpec.config.startRotation, Surface.ROTATION_0)
|
testSpec.navBarLayerRotatesAndScales(testSpec.config.startRotation, Surface.ROTATION_0)
|
||||||
}
|
}
|
||||||
|
|
||||||
@FlakyTest
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
open fun statusBarLayerRotatesScales() {
|
open fun statusBarLayerRotatesScales() {
|
||||||
testSpec.statusBarLayerRotatesScales(testSpec.config.startRotation, Surface.ROTATION_0)
|
testSpec.statusBarLayerRotatesScales(testSpec.config.startRotation, Surface.ROTATION_0)
|
||||||
@@ -122,13 +123,13 @@ abstract class CloseAppTransition(protected val testSpec: FlickerTestParameter)
|
|||||||
testSpec.noUncoveredRegions(testSpec.config.startRotation, Surface.ROTATION_0)
|
testSpec.noUncoveredRegions(testSpec.config.startRotation, Surface.ROTATION_0)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Presubmit
|
@FlakyTest(bugId = 185400889)
|
||||||
@Test
|
@Test
|
||||||
open fun launcherReplacesAppWindowAsTopWindow() {
|
open fun launcherReplacesAppWindowAsTopWindow() {
|
||||||
testSpec.launcherReplacesAppWindowAsTopWindow(testApp)
|
testSpec.launcherReplacesAppWindowAsTopWindow(testApp)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Presubmit
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
open fun launcherWindowBecomesVisible() {
|
open fun launcherWindowBecomesVisible() {
|
||||||
testSpec.launcherWindowBecomesVisible()
|
testSpec.launcherWindowBecomesVisible()
|
||||||
|
|||||||
@@ -51,7 +51,6 @@ import org.junit.runners.Parameterized
|
|||||||
@RunWith(Parameterized::class)
|
@RunWith(Parameterized::class)
|
||||||
@Parameterized.UseParametersRunnerFactory(FlickerParametersRunnerFactory::class)
|
@Parameterized.UseParametersRunnerFactory(FlickerParametersRunnerFactory::class)
|
||||||
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
||||||
@FlakyTest(bugId = 185400889)
|
|
||||||
class CloseImeAutoOpenWindowToAppTest(private val testSpec: FlickerTestParameter) {
|
class CloseImeAutoOpenWindowToAppTest(private val testSpec: FlickerTestParameter) {
|
||||||
private val instrumentation: Instrumentation = InstrumentationRegistry.getInstrumentation()
|
private val instrumentation: Instrumentation = InstrumentationRegistry.getInstrumentation()
|
||||||
private val testApp = ImeAppAutoFocusHelper(instrumentation, testSpec.config.startRotation)
|
private val testApp = ImeAppAutoFocusHelper(instrumentation, testSpec.config.startRotation)
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
package com.android.server.wm.flicker.ime
|
package com.android.server.wm.flicker.ime
|
||||||
|
|
||||||
import android.app.Instrumentation
|
import android.app.Instrumentation
|
||||||
|
import android.platform.test.annotations.Postsubmit
|
||||||
import android.platform.test.annotations.Presubmit
|
import android.platform.test.annotations.Presubmit
|
||||||
import android.view.Surface
|
import android.view.Surface
|
||||||
import android.view.WindowManagerPolicyConstants
|
import android.view.WindowManagerPolicyConstants
|
||||||
@@ -104,7 +105,7 @@ class CloseImeAutoOpenWindowToHomeTest(private val testSpec: FlickerTestParamete
|
|||||||
@Test
|
@Test
|
||||||
fun imeAppWindowBecomesInvisible() = testSpec.imeAppWindowBecomesInvisible(testApp)
|
fun imeAppWindowBecomesInvisible() = testSpec.imeAppWindowBecomesInvisible(testApp)
|
||||||
|
|
||||||
@FlakyTest
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
fun noUncoveredRegions() = testSpec.noUncoveredRegions(testSpec.config.startRotation,
|
fun noUncoveredRegions() = testSpec.noUncoveredRegions(testSpec.config.startRotation,
|
||||||
Surface.ROTATION_0)
|
Surface.ROTATION_0)
|
||||||
@@ -113,7 +114,7 @@ class CloseImeAutoOpenWindowToHomeTest(private val testSpec: FlickerTestParamete
|
|||||||
@Test
|
@Test
|
||||||
fun imeLayerBecomesInvisible() = testSpec.imeLayerBecomesInvisible()
|
fun imeLayerBecomesInvisible() = testSpec.imeLayerBecomesInvisible()
|
||||||
|
|
||||||
@FlakyTest
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
fun imeAppLayerBecomesInvisible() = testSpec.imeAppLayerBecomesInvisible(testApp)
|
fun imeAppLayerBecomesInvisible() = testSpec.imeAppLayerBecomesInvisible(testApp)
|
||||||
|
|
||||||
@@ -123,7 +124,7 @@ class CloseImeAutoOpenWindowToHomeTest(private val testSpec: FlickerTestParamete
|
|||||||
testSpec.navBarLayerRotatesAndScales(testSpec.config.startRotation, Surface.ROTATION_0)
|
testSpec.navBarLayerRotatesAndScales(testSpec.config.startRotation, Surface.ROTATION_0)
|
||||||
}
|
}
|
||||||
|
|
||||||
@FlakyTest
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
fun statusBarLayerRotatesScales() {
|
fun statusBarLayerRotatesScales() {
|
||||||
testSpec.statusBarLayerRotatesScales(testSpec.config.startRotation, Surface.ROTATION_0)
|
testSpec.statusBarLayerRotatesScales(testSpec.config.startRotation, Surface.ROTATION_0)
|
||||||
@@ -137,7 +138,7 @@ class CloseImeAutoOpenWindowToHomeTest(private val testSpec: FlickerTestParamete
|
|||||||
@Test
|
@Test
|
||||||
fun statusBarLayerIsAlwaysVisible() = testSpec.statusBarLayerIsAlwaysVisible()
|
fun statusBarLayerIsAlwaysVisible() = testSpec.statusBarLayerIsAlwaysVisible()
|
||||||
|
|
||||||
@FlakyTest
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
fun visibleLayersShownMoreThanOneConsecutiveEntry() {
|
fun visibleLayersShownMoreThanOneConsecutiveEntry() {
|
||||||
testSpec.assertLayers {
|
testSpec.assertLayers {
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
package com.android.server.wm.flicker.ime
|
package com.android.server.wm.flicker.ime
|
||||||
|
|
||||||
import android.app.Instrumentation
|
import android.app.Instrumentation
|
||||||
|
import android.platform.test.annotations.Postsubmit
|
||||||
import android.platform.test.annotations.Presubmit
|
import android.platform.test.annotations.Presubmit
|
||||||
import android.view.Surface
|
import android.view.Surface
|
||||||
import android.view.WindowManagerPolicyConstants
|
import android.view.WindowManagerPolicyConstants
|
||||||
@@ -98,7 +99,7 @@ class CloseImeWindowToHomeTest(private val testSpec: FlickerTestParameter) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@FlakyTest
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
fun imeWindowBecomesInvisible() = testSpec.imeWindowBecomesInvisible()
|
fun imeWindowBecomesInvisible() = testSpec.imeWindowBecomesInvisible()
|
||||||
|
|
||||||
|
|||||||
@@ -17,10 +17,10 @@
|
|||||||
package com.android.server.wm.flicker.ime
|
package com.android.server.wm.flicker.ime
|
||||||
|
|
||||||
import android.app.Instrumentation
|
import android.app.Instrumentation
|
||||||
|
import android.platform.test.annotations.Postsubmit
|
||||||
import android.platform.test.annotations.Presubmit
|
import android.platform.test.annotations.Presubmit
|
||||||
import android.view.Surface
|
import android.view.Surface
|
||||||
import android.view.WindowManagerPolicyConstants
|
import android.view.WindowManagerPolicyConstants
|
||||||
import androidx.test.filters.FlakyTest
|
|
||||||
import androidx.test.filters.RequiresDevice
|
import androidx.test.filters.RequiresDevice
|
||||||
import androidx.test.platform.app.InstrumentationRegistry
|
import androidx.test.platform.app.InstrumentationRegistry
|
||||||
import com.android.server.wm.flicker.FlickerBuilderProvider
|
import com.android.server.wm.flicker.FlickerBuilderProvider
|
||||||
@@ -138,7 +138,7 @@ class OpenImeWindowTest(private val testSpec: FlickerTestParameter) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@FlakyTest
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
fun visibleWindowsShownMoreThanOneConsecutiveEntry() {
|
fun visibleWindowsShownMoreThanOneConsecutiveEntry() {
|
||||||
testSpec.assertWm {
|
testSpec.assertWm {
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
package com.android.server.wm.flicker.ime
|
package com.android.server.wm.flicker.ime
|
||||||
|
|
||||||
import android.app.Instrumentation
|
import android.app.Instrumentation
|
||||||
|
import android.platform.test.annotations.Postsubmit
|
||||||
import android.platform.test.annotations.Presubmit
|
import android.platform.test.annotations.Presubmit
|
||||||
import android.view.Surface
|
import android.view.Surface
|
||||||
import android.view.WindowManagerPolicyConstants
|
import android.view.WindowManagerPolicyConstants
|
||||||
@@ -97,7 +98,7 @@ class ReOpenImeWindowTest(private val testSpec: FlickerTestParameter) {
|
|||||||
@Test
|
@Test
|
||||||
fun statusBarWindowIsAlwaysVisible() = testSpec.statusBarWindowIsAlwaysVisible()
|
fun statusBarWindowIsAlwaysVisible() = testSpec.statusBarWindowIsAlwaysVisible()
|
||||||
|
|
||||||
@FlakyTest
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
fun visibleWindowsShownMoreThanOneConsecutiveEntry() {
|
fun visibleWindowsShownMoreThanOneConsecutiveEntry() {
|
||||||
testSpec.assertWm {
|
testSpec.assertWm {
|
||||||
@@ -147,13 +148,13 @@ class ReOpenImeWindowTest(private val testSpec: FlickerTestParameter) {
|
|||||||
testSpec.navBarLayerRotatesAndScales(Surface.ROTATION_0, testSpec.config.endRotation)
|
testSpec.navBarLayerRotatesAndScales(Surface.ROTATION_0, testSpec.config.endRotation)
|
||||||
}
|
}
|
||||||
|
|
||||||
@FlakyTest
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
fun statusBarLayerRotatesScales() {
|
fun statusBarLayerRotatesScales() {
|
||||||
testSpec.statusBarLayerRotatesScales(Surface.ROTATION_0, testSpec.config.endRotation)
|
testSpec.statusBarLayerRotatesScales(Surface.ROTATION_0, testSpec.config.endRotation)
|
||||||
}
|
}
|
||||||
|
|
||||||
@FlakyTest
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
fun visibleLayersShownMoreThanOneConsecutiveEntry() {
|
fun visibleLayersShownMoreThanOneConsecutiveEntry() {
|
||||||
testSpec.assertLayers {
|
testSpec.assertLayers {
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
package com.android.server.wm.flicker.ime
|
package com.android.server.wm.flicker.ime
|
||||||
|
|
||||||
import android.app.Instrumentation
|
import android.app.Instrumentation
|
||||||
import android.platform.test.annotations.Presubmit
|
import android.platform.test.annotations.Postsubmit
|
||||||
import android.view.WindowManagerPolicyConstants
|
import android.view.WindowManagerPolicyConstants
|
||||||
import androidx.test.filters.FlakyTest
|
import androidx.test.filters.FlakyTest
|
||||||
import androidx.test.filters.RequiresDevice
|
import androidx.test.filters.RequiresDevice
|
||||||
@@ -52,7 +52,6 @@ import org.junit.runners.Parameterized
|
|||||||
@RunWith(Parameterized::class)
|
@RunWith(Parameterized::class)
|
||||||
@Parameterized.UseParametersRunnerFactory(FlickerParametersRunnerFactory::class)
|
@Parameterized.UseParametersRunnerFactory(FlickerParametersRunnerFactory::class)
|
||||||
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
||||||
@FlakyTest
|
|
||||||
class SwitchImeWindowsFromGestureNavTest(private val testSpec: FlickerTestParameter) {
|
class SwitchImeWindowsFromGestureNavTest(private val testSpec: FlickerTestParameter) {
|
||||||
private val instrumentation: Instrumentation = InstrumentationRegistry.getInstrumentation()
|
private val instrumentation: Instrumentation = InstrumentationRegistry.getInstrumentation()
|
||||||
private val testApp = SimpleAppHelper(instrumentation)
|
private val testApp = SimpleAppHelper(instrumentation)
|
||||||
@@ -97,31 +96,31 @@ class SwitchImeWindowsFromGestureNavTest(private val testSpec: FlickerTestParame
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Presubmit
|
@FlakyTest
|
||||||
@Test
|
@Test
|
||||||
fun imeAppWindowIsAlwaysVisible() = testSpec.imeAppWindowIsAlwaysVisible(imeTestApp)
|
fun imeAppWindowIsAlwaysVisible() = testSpec.imeAppWindowIsAlwaysVisible(imeTestApp)
|
||||||
|
|
||||||
@Presubmit
|
@FlakyTest
|
||||||
@Test
|
@Test
|
||||||
fun imeLayerBecomesVisible() = testSpec.imeLayerBecomesVisible()
|
fun imeLayerBecomesVisible() = testSpec.imeLayerBecomesVisible()
|
||||||
|
|
||||||
@Presubmit
|
@FlakyTest
|
||||||
@Test
|
@Test
|
||||||
fun imeLayerBecomesInvisible() = testSpec.imeLayerBecomesInvisible()
|
fun imeLayerBecomesInvisible() = testSpec.imeLayerBecomesInvisible()
|
||||||
|
|
||||||
@Presubmit
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
fun navBarWindowIsAlwaysVisible() = testSpec.navBarWindowIsAlwaysVisible()
|
fun navBarWindowIsAlwaysVisible() = testSpec.navBarWindowIsAlwaysVisible()
|
||||||
|
|
||||||
@Presubmit
|
@FlakyTest
|
||||||
@Test
|
@Test
|
||||||
fun navBarLayerIsAlwaysVisible() = testSpec.navBarLayerIsAlwaysVisible()
|
fun navBarLayerIsAlwaysVisible() = testSpec.navBarLayerIsAlwaysVisible()
|
||||||
|
|
||||||
@Presubmit
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
fun statusBarWindowIsAlwaysVisible() = testSpec.statusBarWindowIsAlwaysVisible()
|
fun statusBarWindowIsAlwaysVisible() = testSpec.statusBarWindowIsAlwaysVisible()
|
||||||
|
|
||||||
@Presubmit
|
@FlakyTest
|
||||||
@Test
|
@Test
|
||||||
fun statusBarLayerIsAlwaysVisible() = testSpec.statusBarLayerIsAlwaysVisible()
|
fun statusBarLayerIsAlwaysVisible() = testSpec.statusBarLayerIsAlwaysVisible()
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
package com.android.server.wm.flicker.launch
|
package com.android.server.wm.flicker.launch
|
||||||
|
|
||||||
import android.platform.test.annotations.Postsubmit
|
import android.platform.test.annotations.Presubmit
|
||||||
import androidx.test.filters.FlakyTest
|
import androidx.test.filters.FlakyTest
|
||||||
import androidx.test.filters.RequiresDevice
|
import androidx.test.filters.RequiresDevice
|
||||||
import com.android.server.wm.flicker.FlickerParametersRunnerFactory
|
import com.android.server.wm.flicker.FlickerParametersRunnerFactory
|
||||||
@@ -63,12 +63,12 @@ class OpenAppFromOverviewTest(testSpec: FlickerTestParameter) : OpenAppTransitio
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Postsubmit
|
@Presubmit
|
||||||
@Test
|
@Test
|
||||||
override fun appWindowReplacesLauncherAsTopWindow() =
|
override fun appWindowReplacesLauncherAsTopWindow() =
|
||||||
super.appWindowReplacesLauncherAsTopWindow()
|
super.appWindowReplacesLauncherAsTopWindow()
|
||||||
|
|
||||||
@Postsubmit
|
@Presubmit
|
||||||
@Test
|
@Test
|
||||||
override fun launcherWindowBecomesInvisible() {
|
override fun launcherWindowBecomesInvisible() {
|
||||||
testSpec.launcherWindowBecomesInvisible()
|
testSpec.launcherWindowBecomesInvisible()
|
||||||
|
|||||||
@@ -16,6 +16,8 @@
|
|||||||
|
|
||||||
package com.android.server.wm.flicker.rotation
|
package com.android.server.wm.flicker.rotation
|
||||||
|
|
||||||
|
import android.platform.test.annotations.Postsubmit
|
||||||
|
import android.platform.test.annotations.Presubmit
|
||||||
import androidx.test.filters.FlakyTest
|
import androidx.test.filters.FlakyTest
|
||||||
import androidx.test.filters.RequiresDevice
|
import androidx.test.filters.RequiresDevice
|
||||||
import com.android.server.wm.flicker.FlickerParametersRunnerFactory
|
import com.android.server.wm.flicker.FlickerParametersRunnerFactory
|
||||||
@@ -57,7 +59,7 @@ class ChangeAppRotationTest(
|
|||||||
super.focusDoesNotChange()
|
super.focusDoesNotChange()
|
||||||
}
|
}
|
||||||
|
|
||||||
@FlakyTest
|
@Postsubmit
|
||||||
@Test
|
@Test
|
||||||
override fun noUncoveredRegions() {
|
override fun noUncoveredRegions() {
|
||||||
super.noUncoveredRegions()
|
super.noUncoveredRegions()
|
||||||
@@ -75,6 +77,36 @@ class ChangeAppRotationTest(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
override fun appLayerRotates_EndingPos() {
|
||||||
|
super.appLayerRotates_EndingPos()
|
||||||
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
override fun appLayerRotates_StartingPos() {
|
||||||
|
super.appLayerRotates_StartingPos()
|
||||||
|
}
|
||||||
|
|
||||||
|
@Presubmit
|
||||||
|
@Test
|
||||||
|
override fun navBarWindowIsAlwaysVisible() {
|
||||||
|
super.navBarWindowIsAlwaysVisible()
|
||||||
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
override fun statusBarLayerIsAlwaysVisible() {
|
||||||
|
super.statusBarLayerIsAlwaysVisible()
|
||||||
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
override fun statusBarWindowIsAlwaysVisible() {
|
||||||
|
super.statusBarWindowIsAlwaysVisible()
|
||||||
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
private const val SCREENSHOT_LAYER = "RotationLayer"
|
private const val SCREENSHOT_LAYER = "RotationLayer"
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
package com.android.server.wm.flicker.rotation
|
package com.android.server.wm.flicker.rotation
|
||||||
|
|
||||||
|
import android.platform.test.annotations.Postsubmit
|
||||||
import androidx.test.filters.FlakyTest
|
import androidx.test.filters.FlakyTest
|
||||||
import androidx.test.filters.RequiresDevice
|
import androidx.test.filters.RequiresDevice
|
||||||
import com.android.server.wm.flicker.FlickerParametersRunnerFactory
|
import com.android.server.wm.flicker.FlickerParametersRunnerFactory
|
||||||
@@ -92,6 +93,18 @@ class SeamlessAppRotationTest(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
override fun navBarWindowIsAlwaysVisible() {
|
||||||
|
super.navBarWindowIsAlwaysVisible()
|
||||||
|
}
|
||||||
|
|
||||||
|
@Postsubmit
|
||||||
|
@Test
|
||||||
|
override fun visibleLayersShownMoreThanOneConsecutiveEntry() {
|
||||||
|
super.visibleLayersShownMoreThanOneConsecutiveEntry()
|
||||||
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
private val testFactory = FlickerTestParameterFactory.getInstance()
|
private val testFactory = FlickerTestParameterFactory.getInstance()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user