Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a9dc4f44 authored by wilsonshih's avatar wilsonshih
Browse files

Add test that quick switch on pair-to-pair should never enter pip.

Verify pair-to-pair switch should not trigger auto-pip, and the
pip-able activity should not re-show during transition.

Bug: 290857445
Test: atest SwitchBetweenSplitPairsNoPip
Change-Id: I496c863fbeaa0ae4d4b8de512aecaaaf5d27dc5d
parent 3cd3f468
Loading
Loading
Loading
Loading
+150 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2023 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.wm.shell.flicker.splitscreen

import android.platform.test.annotations.Presubmit
import android.tools.common.NavBar
import android.tools.common.traces.component.ComponentNameMatcher
import android.tools.device.flicker.junit.FlickerParametersRunnerFactory
import android.tools.device.flicker.legacy.FlickerBuilder
import android.tools.device.flicker.legacy.LegacyFlickerTest
import android.tools.device.flicker.legacy.LegacyFlickerTestFactory
import androidx.test.filters.RequiresDevice
import com.android.server.wm.flicker.helpers.PipAppHelper
import com.android.wm.shell.flicker.utils.SplitScreenUtils
import com.android.wm.shell.flicker.splitscreen.benchmark.SplitScreenBase
import com.android.wm.shell.flicker.utils.layerBecomesInvisible
import com.android.wm.shell.flicker.utils.splitAppLayerBoundsIsVisibleAtEnd
import com.android.wm.shell.flicker.utils.splitAppLayerBoundsSnapToDivider
import org.junit.FixMethodOrder
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.runners.MethodSorters
import org.junit.runners.Parameterized

/**
 * Test quick switch between two split pairs.
 *
 * To run this test: `atest WMShellFlickerTestsSplitScreen:SwitchBetweenSplitPairsNoPip`
 */
@RequiresDevice
@RunWith(Parameterized::class)
@Parameterized.UseParametersRunnerFactory(FlickerParametersRunnerFactory::class)
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
class SwitchBetweenSplitPairsNoPip (override val flicker: LegacyFlickerTest) :
        SplitScreenBase(flicker) {

    val thirdApp = SplitScreenUtils.getSendNotification(instrumentation)
    val pipApp = PipAppHelper(instrumentation)

    override val transition: FlickerBuilder.() -> Unit
        get() = {
            defaultSetup(this)
            defaultTeardown(this)
            thisTransition(this)
        }

    val thisTransition: FlickerBuilder.() -> Unit
        get() = {
            setup {
                tapl.goHome()
                SplitScreenUtils.enterSplit(wmHelper, tapl, device, primaryApp, secondaryApp)
                SplitScreenUtils.enterSplit(wmHelper, tapl, device, thirdApp, pipApp)
                pipApp.enableAutoEnterForPipActivity()
                SplitScreenUtils.waitForSplitComplete(wmHelper, thirdApp, pipApp)
            }
            transitions {
                tapl.launchedAppState.quickSwitchToPreviousApp()
                SplitScreenUtils.waitForSplitComplete(wmHelper, primaryApp, secondaryApp)
            }
            teardown {
                pipApp.exit(wmHelper)
                thirdApp.exit(wmHelper)
            }
        }

    /**
     * Checks that [pipApp] window won't enter pip
     */
    @Presubmit
    @Test
    fun notEnterPip() {
        flicker.assertWm { isNotPinned(pipApp) }
    }

    /**
     * Checks the [pipApp] task did not reshow during transition.
     */
    @Presubmit
    @Test
    fun app1WindowIsVisibleOnceApp2WindowIsInvisible() {
        flicker.assertLayers {
            this.isVisible(pipApp)
                    .then().isVisible(ComponentNameMatcher.LAUNCHER, isOptional = true)
                    .then().isVisible(ComponentNameMatcher.SNAPSHOT, isOptional = true)
                    .then().isInvisible(pipApp).isVisible(secondaryApp)
        }
    }

    @Presubmit
    @Test
    fun primaryAppBoundsIsVisibleAtEnd() =
            flicker.splitAppLayerBoundsIsVisibleAtEnd(
                    primaryApp,
                    landscapePosLeft = tapl.isTablet,
                    portraitPosTop = false
            )

    @Presubmit
    @Test
    fun secondaryAppBoundsIsVisibleAtEnd() =
            flicker.splitAppLayerBoundsIsVisibleAtEnd(
                    secondaryApp,
                    landscapePosLeft = !tapl.isTablet,
                    portraitPosTop = true
            )

    /**
     * Checks the [pipApp] task become invisible after transition finish.
     */
    @Presubmit
    @Test
    fun pipAppLayerBecomesInvisible() = flicker.layerBecomesInvisible(pipApp)

    /**
     * Checks the [pipApp] task is in split screen bounds when transition start.
     */
    @Presubmit
    @Test
    fun pipAppBoundsIsVisibleAtBegin() =
            flicker.assertLayersStart {
                this.splitAppLayerBoundsSnapToDivider(
                        pipApp,
                        landscapePosLeft = !tapl.isTablet,
                        portraitPosTop = true,
                        flicker.scenario.startRotation
                )
            }

    companion object {
        @Parameterized.Parameters(name = "{0}")
        @JvmStatic
        fun getParams() = LegacyFlickerTestFactory.nonRotationTests(
                supportedNavigationModes = listOf(NavBar.MODE_GESTURAL)
        )
    }
}