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

69 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.browser
import io.mockk.mockk
import io.mockk.slot
import io.mockk.verify
import mozilla.components.browser.state.state.BrowserState
import mozilla.components.browser.state.state.TabSessionState
import mozilla.components.browser.state.state.createTab
import mozilla.components.browser.state.store.BrowserStore
import mozilla.components.browser.tabstray.TabsTray
import mozilla.components.support.test.ext.joinBlocking
import mozilla.components.support.test.rule.MainCoroutineRule
import org.junit.After
import org.junit.Assert.assertEquals
import org.junit.Assert.assertTrue
import org.junit.Rule
import org.junit.Test
import org.mozilla.fenix.tabstray.TabsTrayAction
import org.mozilla.fenix.tabstray.TabsTrayStore
class NormalTabsBindingTest {
val store = TabsTrayStore()
val browserStore = BrowserStore(BrowserState(tabs = listOf(createTab("", id = "1")), selectedTabId = "1"))
val tray: TabsTray = mockk(relaxed = true)
val binding = NormalTabsBinding(store, browserStore, tray)
@get:Rule
val coroutinesTestRule = MainCoroutineRule()
@After
fun teardown() {
binding.stop()
}
@Test
fun `WHEN the store is updated THEN notify the tabs tray`() {
val slotTabs = slot<List<TabSessionState>>()
val expectedTabs = listOf(createTab("https://mozilla.org"))
assertTrue(store.state.normalTabs.isEmpty())
store.dispatch(TabsTrayAction.UpdateNormalTabs(expectedTabs)).joinBlocking()
binding.start()
assertTrue(store.state.normalTabs.isNotEmpty())
verify { tray.updateTabs(capture(slotTabs), null, "1") }
assertEquals(expectedTabs, slotTabs.captured)
}
@Test
fun `WHEN non-inactive tabs are updated THEN do not notify the tabs tray`() {
assertTrue(store.state.normalTabs.isEmpty())
store.dispatch(TabsTrayAction.UpdatePrivateTabs(listOf(createTab("https://mozilla.org")))).joinBlocking()
binding.start()
assertTrue(store.state.normalTabs.isEmpty())
verify { tray.updateTabs(emptyList(), null, "1") }
}
}