You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iceraven-browser/app/src/androidTest/java/org/mozilla/fenix/ui/DeepLinkTest.kt

151 lines
4.1 KiB
Kotlin

/* 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/. */
package org.mozilla.fenix.ui
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.uiautomator.UiDevice
import okhttp3.mockwebserver.MockWebServer
import org.junit.After
import org.junit.Before
import org.junit.Ignore
import org.junit.Rule
import org.junit.Test
import org.mozilla.fenix.helpers.AndroidAssetDispatcher
import org.mozilla.fenix.helpers.HomeActivityIntentTestRule
import org.mozilla.fenix.helpers.TestAssetHelper
import org.mozilla.fenix.ui.robots.DeepLinkRobot
/**
* Tests for verifying basic functionality of deep links
* - fenix://home
* - fenix://open
* - fenix://settings_notifications — take the user to the notification settings page
* - fenix://settings_privacy — take the user to the privacy settings page.
* - fenix://settings_search_engine — take the user to the search engine page, to set the default search engine.
* - fenix://home_collections — take the user to the home screen to see the list of collections.
* - fenix://urls_history — take the user to the history list.
* - fenix://urls_bookmarks — take the user to the bookmarks list
* - fenix://settings_logins — take the user to the settings page to do with logins (not the saved logins).
**/
@Ignore("All tests perma-failing, see: https://github.com/mozilla-mobile/fenix/issues/13491")
class DeepLinkTest {
private val mDevice = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation())
private lateinit var mockWebServer: MockWebServer
private val robot = DeepLinkRobot()
@get:Rule
val activityIntentTestRule = HomeActivityIntentTestRule()
@Before
fun setUp() {
mockWebServer = MockWebServer().apply {
dispatcher = AndroidAssetDispatcher()
start()
}
}
@After
fun tearDown() {
mockWebServer.shutdown()
}
@Test
fun openHomeScreen() {
robot.openHomeScreen {
verifyHomeComponent()
}
robot.openSettings { /* move away from the home screen */ }
robot.openHomeScreen {
verifyHomeComponent()
}
}
@Test
fun openURL() {
val genericURL =
TestAssetHelper.getGenericAsset(mockWebServer, 1)
robot.openURL(genericURL.url.toString()) {
verifyUrl(genericURL.url.toString())
}
}
@Test
fun openBookmarks() {
robot.openBookmarks {
// verify we can see headings.
verifyFolderTitle("Desktop Bookmarks")
}
}
@Test
fun openHistory() {
robot.openHistory {
verifyHistoryMenuView()
}
}
@Test
fun openCollections() {
robot.openHomeScreen { /* do nothing */ }.dismissOnboarding()
robot.openCollections {
verifyCollectionsHeader()
}
}
@Test
fun openSettings() {
robot.openSettings {
verifyBasicsHeading()
verifyAdvancedHeading()
}
}
@Test
fun openSettingsLogins() {
robot.openSettingsLogins {
verifyDefaultView()
verifyDefaultValueAutofillLogins(InstrumentationRegistry.getInstrumentation().targetContext)
}
}
@Test
fun openSettingsPrivacy() {
robot.openSettingsPrivacy {
verifyPrivacyHeading()
}
}
@Test
fun openSettingsTrackingProtection() {
robot.openSettingsTrackingProtection {
verifyEnhancedTrackingProtectionHeader()
}
}
@Ignore("Crashing, see: https://github.com/mozilla-mobile/fenix/issues/11239")
@Test
fun openSettingsSearchEngine() {
robot.openSettingsSearchEngine {
verifyDefaultSearchEngineHeader()
}
}
@Test
fun openSettingsNotifications() {
robot.openSettingsNotification {
verifyNotifications()
}
}
@Test
fun openMakeDefaultBrowser() {
robot.openMakeDefaultBrowser {
verifyMakeDefaultBrowser()
}
}
}