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/SettingsPrivacyTest.kt

138 lines
4.8 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.Rule
import org.junit.Test
import org.mozilla.fenix.helpers.AndroidAssetDispatcher
import org.mozilla.fenix.helpers.HomeActivityTestRule
import org.mozilla.fenix.helpers.TestAssetHelper
import org.mozilla.fenix.ui.robots.homeScreen
import org.mozilla.fenix.ui.robots.navigationToolbar
import org.mozilla.fenix.ui.robots.notificationShade
/**
* Tests for verifying the the privacy and security section of the Settings menu
*
*/
class SettingsPrivacyTest {
private lateinit var mDevice: UiDevice
private lateinit var mockWebServer: MockWebServer
@get:Rule
val activityTestRule = HomeActivityTestRule.withDefaultSettingsOverrides(skipOnboarding = true)
@Before
fun setUp() {
mDevice = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation())
mockWebServer = MockWebServer().apply {
dispatcher = AndroidAssetDispatcher()
start()
}
}
@After
fun tearDown() {
mockWebServer.shutdown()
}
// TestRail link: https://testrail.stage.mozaws.net/index.php?/cases/view/2092698
@Test
fun settingsPrivacyItemsTest() {
homeScreen {
}.openThreeDotMenu {
}.openSettings {
verifySettingsToolbar()
verifyPrivacyHeading()
verifyPrivateBrowsingButton()
verifyHTTPSOnlyModeButton()
verifySettingsOptionSummary("HTTPS-Only Mode", "Off")
verifyCookieBannerReductionButton()
verifySettingsOptionSummary("Cookie banner reduction", "Off")
verifyEnhancedTrackingProtectionButton()
verifySettingsOptionSummary("Enhanced Tracking Protection", "Standard")
verifySitePermissionsButton()
verifyDeleteBrowsingDataButton()
verifyDeleteBrowsingDataOnQuitButton()
verifySettingsOptionSummary("Delete browsing data on quit", "Off")
verifyNotificationsButton()
verifySettingsOptionSummary("Notifications", "Allowed")
verifyDataCollectionButton()
}
}
// TestRail link: https://testrail.stage.mozaws.net/index.php?/cases/view/243362
@Test
fun verifyDataCollectionSettingsTest() {
homeScreen {
}.openThreeDotMenu {
}.openSettings {
}.openSettingsSubMenuDataCollection {
verifyDataCollectionView(
true,
true,
"On",
)
clickUsageAndTechnicalDataToggle()
verifyUsageAndTechnicalDataToggle(false)
clickUsageAndTechnicalDataToggle()
verifyUsageAndTechnicalDataToggle(true)
clickMarketingDataToggle()
verifyMarketingDataToggle(false)
clickMarketingDataToggle()
verifyMarketingDataToggle(true)
clickStudiesOption()
verifyStudiesToggle(true)
clickStudiesToggle()
verifyStudiesDialog()
clickStudiesDialogCancelButton()
verifyStudiesToggle(true)
}
}
// TestRail link: https://testrail.stage.mozaws.net/index.php?/cases/view/1024594
@Test
fun verifyNotificationsSettingsTest() {
val defaultWebPage = TestAssetHelper.getGenericAsset(mockWebServer, 1)
// Clear all existing notifications
notificationShade {
mDevice.openNotification()
clearNotifications()
}
homeScreen {
}.togglePrivateBrowsingMode()
navigationToolbar {
}.enterURLAndEnterToBrowser(defaultWebPage.url) {
}.openNotificationShade {
verifySystemNotificationExists("Close private tabs")
}.closeNotificationTray {
}.openThreeDotMenu {
}.openSettings {
verifySettingsOptionSummary("Notifications", "Allowed")
}.openSettingsSubMenuNotifications {
verifyAllSystemNotificationsToggleState(true)
verifyPrivateBrowsingSystemNotificationsToggleState(true)
clickPrivateBrowsingSystemNotificationsToggle()
verifyPrivateBrowsingSystemNotificationsToggleState(false)
clickAllSystemNotificationsToggle()
verifyAllSystemNotificationsToggleState(false)
}.goBack {
verifySettingsOptionSummary("Notifications", "Not allowed")
}.goBackToBrowser {
}.openNotificationShade {
verifySystemNotificationDoesNotExist("Close private tabs")
}
}
}