/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ @file:Suppress("TooManyFunctions") package org.mozilla.fenix.ui.robots import android.content.Context import androidx.recyclerview.widget.RecyclerView import androidx.test.core.app.ApplicationProvider import androidx.test.espresso.Espresso import androidx.test.espresso.Espresso.onView import androidx.test.espresso.NoMatchingViewException import androidx.test.espresso.action.ViewActions import androidx.test.espresso.action.ViewActions.click import androidx.test.espresso.assertion.ViewAssertions.matches import androidx.test.espresso.contrib.RecyclerViewActions import androidx.test.espresso.matcher.ViewMatchers import androidx.test.espresso.matcher.ViewMatchers.isDisplayed import androidx.test.espresso.matcher.ViewMatchers.withContentDescription import androidx.test.espresso.matcher.ViewMatchers.withEffectiveVisibility import androidx.test.espresso.matcher.ViewMatchers.withId import androidx.test.espresso.matcher.ViewMatchers.withText import androidx.test.platform.app.InstrumentationRegistry import androidx.test.uiautomator.By import androidx.test.uiautomator.By.text import androidx.test.uiautomator.UiDevice import androidx.test.uiautomator.Until.findObject import org.hamcrest.CoreMatchers.allOf import org.mozilla.fenix.R import org.mozilla.fenix.helpers.TestAssetHelper import org.mozilla.fenix.helpers.TestAssetHelper.waitingTime import org.mozilla.fenix.helpers.click import org.mozilla.fenix.helpers.ext.waitNotNull /** * Implementation of Robot Pattern for the home screen menu. */ class TabDrawerRobot { fun verifyExistingOpenTabs(title: String) = assertExistingOpenTabs(title) fun verifyCloseTabsButton(title: String) = assertCloseTabsButton(title) fun verifyExistingTabList() = assertExistingTabList() fun verifyNoTabsOpened() = assertNoTabsOpenedText() fun verifyPrivateModeSelected() = assertPrivateModeSelected() fun verifyNormalModeSelected() = assertNormalModeSelected() fun closeTab() { closeTabButton().click() } fun swipeTabRight(title: String) = tab(title).perform(ViewActions.swipeRight()) fun swipeTabLeft(title: String) = tab(title).perform(ViewActions.swipeLeft()) fun closeTabViaXButton(title: String) { val closeButton = onView( allOf( withId(R.id.mozac_browser_tabstray_close), withContentDescription("Close tab $title") ) ) closeButton.perform(click()) } fun verifySnackBarText(expectedText: String) { val mDevice = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation()) mDevice.waitNotNull(findObject(By.text(expectedText)), TestAssetHelper.waitingTime) } fun snackBarButtonClick(expectedText: String) { onView(allOf(withId(R.id.snackbar_btn), withText(expectedText))).check( matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE)) ).perform(click()) } fun verifyTabMediaControlButtonState(action: String) { mDevice.waitNotNull( findObject( By .res("org.mozilla.fenix.debug:id/play_pause_button") .desc(action) ), waitingTime ) tabMediaControlButton().check(matches(withContentDescription(action))) } fun clickTabMediaControlButton() = tabMediaControlButton().click() class Transition { val mDevice = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation()) fun openThreeDotMenu(interact: ThreeDotMenuMainRobot.() -> Unit): ThreeDotMenuMainRobot.Transition { mDevice.waitForIdle() Espresso.openActionBarOverflowOrOptionsMenu(ApplicationProvider.getApplicationContext()) ThreeDotMenuMainRobot().interact() return ThreeDotMenuMainRobot.Transition() } fun openHomeScreen(interact: HomeScreenRobot.() -> Unit): HomeScreenRobot.Transition { mDevice.waitForIdle() newTabButton().perform(click()) HomeScreenRobot().interact() return HomeScreenRobot.Transition() } fun toggleToNormalTabs(interact: TabDrawerRobot.() -> Unit): Transition { normalBrowsingButton().perform(click()) TabDrawerRobot().interact() return Transition() } fun toggleToPrivateTabs(interact: TabDrawerRobot.() -> Unit): Transition { privateBrowsingButton().perform(click()) TabDrawerRobot().interact() return Transition() } fun openTabsListThreeDotMenu(interact: ThreeDotMenuMainRobot.() -> Unit): ThreeDotMenuMainRobot.Transition { threeDotMenu().perform(click()) ThreeDotMenuMainRobot().interact() return ThreeDotMenuMainRobot.Transition() } fun openTab(title: String, interact: BrowserRobot.() -> Unit): BrowserRobot.Transition { mDevice.waitNotNull(findObject(text(title))) tab(title).click() BrowserRobot().interact() return BrowserRobot.Transition() } } } fun tabDrawer(interact: TabDrawerRobot.() -> Unit): TabDrawerRobot.Transition { TabDrawerRobot().interact() return TabDrawerRobot.Transition() } private fun tabMediaControlButton() = onView(withId(R.id.play_pause_button)) private fun closeTabButton() = onView(withId(R.id.mozac_browser_tabstray_close)) private fun assertCloseTabsButton(title: String) = onView(allOf(withId(R.id.mozac_browser_tabstray_close), withContentDescription("Close tab $title"))) .check(matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))) private fun normalBrowsingButton() = onView(withContentDescription("Open tabs")) private fun privateBrowsingButton() = onView(withContentDescription("Private tabs")) private fun newTabButton() = onView(withId(R.id.new_tab_button)) private fun threeDotMenu() = onView(withId(R.id.tab_tray_overflow)) private fun assertExistingOpenTabs(title: String) { try { tab(title).check(matches(isDisplayed())) } catch (e: NoMatchingViewException) { onView(withId(R.id.tabsTray)).perform( RecyclerViewActions.scrollTo( allOf( withId(R.id.mozac_browser_tabstray_title), withText(title) ) ) ).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))) } } private fun assertExistingTabList() = onView(allOf(withId(R.id.tab_item))) .check(matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))) private fun assertNoTabsOpenedText() = onView(withId(R.id.tab_tray_empty_view)) .check(matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))) private fun assertNormalModeSelected() = normalBrowsingButton() .check(matches(ViewMatchers.isSelected())) private fun assertPrivateModeSelected() = privateBrowsingButton() .check(matches(ViewMatchers.isSelected())) private fun tab(title: String) = onView( allOf( withId(R.id.mozac_browser_tabstray_title), withText(title) ) )