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

66 lines
2.3 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
import io.mockk.mockk
import io.mockk.verify
import mozilla.components.support.test.middleware.CaptureActionsMiddleware
import org.junit.Assert.assertNotNull
import org.junit.Ignore
import org.junit.Test
class MenuIntegrationTest {
private val captureMiddleware = CaptureActionsMiddleware<TabsTrayState, TabsTrayAction>()
private val tabsTrayStore = TabsTrayStore(middlewares = listOf(captureMiddleware))
private val interactor = mockk<NavigationInteractor>(relaxed = true)
@Test
fun `WHEN the share all menu item is clicked THEN invoke the action`() {
val menu = MenuIntegration(mockk(), mockk(), tabsTrayStore, mockk(), interactor)
menu.handleMenuClicked(TabsTrayMenu.Item.ShareAllTabs)
verify { interactor.onShareTabsOfTypeClicked(false) }
}
@Test
fun `WHEN the open settings menu item is clicked THEN invoke the action`() {
val menu = MenuIntegration(mockk(), mockk(), tabsTrayStore, mockk(), interactor)
menu.handleMenuClicked(TabsTrayMenu.Item.OpenTabSettings)
verify { interactor.onTabSettingsClicked() }
}
@Test
fun `WHEN the close all menu item is clicked THEN invoke the action`() {
val menu = MenuIntegration(mockk(), mockk(), tabsTrayStore, mockk(), interactor)
menu.handleMenuClicked(TabsTrayMenu.Item.CloseAllTabs)
verify { interactor.onCloseAllTabsClicked(false) }
}
@Test
fun `WHEN the recently menu item is clicked THEN invoke the action`() {
val menu = MenuIntegration(mockk(), mockk(), tabsTrayStore, mockk(), interactor)
menu.handleMenuClicked(TabsTrayMenu.Item.OpenRecentlyClosed)
verify { interactor.onOpenRecentlyClosedClicked() }
}
@Ignore("Enable after we connect this menu item to the store")
@Test
fun `WHEN the select menu item is clicked THEN invoke the action`() {
val menu = MenuIntegration(mockk(), mockk(), tabsTrayStore, mockk(), interactor)
menu.handleMenuClicked(TabsTrayMenu.Item.ShareAllTabs)
assertNotNull(captureMiddleware.findLastAction(TabsTrayAction.EnterSelectMode::class))
}
}