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/test/java/org/mozilla/fenix/tabstray/browser/DefaultInactiveTabsInteract...

84 lines
2.7 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.tabstray.browser
import io.mockk.mockk
import io.mockk.verify
import mozilla.components.browser.state.state.ContentState
import mozilla.components.browser.state.state.TabSessionState
import org.junit.Test
import org.mozilla.fenix.tabstray.TrayPagerAdapter
class DefaultInactiveTabsInteractorTest {
private val controller: InactiveTabsController = mockk(relaxed = true)
private val browserInteractor: BrowserTrayInteractor = mockk(relaxed = true)
@Test
fun `WHEN the inactive tabs header is clicked THEN update the expansion state of the inactive tabs card`() {
createInteractor().onHeaderClicked(true)
verify { controller.updateCardExpansion(true) }
}
@Test
fun `WHEN the inactive tabs auto close dialog's close button is clicked THEN dismiss the dialog`() {
createInteractor().onCloseClicked()
verify { controller.dismissAutoCloseDialog() }
}
@Test
fun `WHEN the enable inactive tabs auto close button is clicked THEN turn on the auto close feature`() {
createInteractor().onEnabledAutoCloseClicked()
verify { controller.enableInactiveTabsAutoClose() }
}
@Test
fun `WHEN an inactive tab is clicked THEN open the tab`() {
val tab = TabSessionState(
id = "tabId",
content = ContentState(
url = "www.mozilla.com",
),
)
createInteractor().onTabClicked(tab)
verify { controller.openInactiveTab(tab) }
verify { browserInteractor.onTabSelected(tab, TrayPagerAdapter.INACTIVE_TABS_FEATURE_NAME) }
}
@Test
fun `WHEN an inactive tab is clicked to be closed THEN close the tab`() {
val tab = TabSessionState(
id = "tabId",
content = ContentState(
url = "www.mozilla.com",
),
)
createInteractor().onTabClosed(tab)
verify { controller.closeInactiveTab(tab) }
verify { browserInteractor.onTabClosed(tab, TrayPagerAdapter.INACTIVE_TABS_FEATURE_NAME) }
}
@Test
fun `WHEN the close all inactive tabs button is clicked THEN delete all inactive tabs`() {
createInteractor().onDeleteAllInactiveTabsClicked()
verify { controller.deleteAllInactiveTabs() }
}
private fun createInteractor(): DefaultInactiveTabsInteractor {
return DefaultInactiveTabsInteractor(
controller = controller,
browserInteractor = browserInteractor,
)
}
}