1
0
Fork 0
fenix/app/src/test/java/org/mozilla/fenix/components/StoreProviderTest.kt

76 lines
2.2 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.components
import androidx.fragment.app.Fragment
import androidx.fragment.app.testing.launchFragmentInContainer
import kotlinx.coroutines.ObsoleteCoroutinesApi
import mozilla.components.lib.state.Action
import mozilla.components.lib.state.State
import mozilla.components.lib.state.Store
import org.junit.Assert.assertEquals
import org.junit.Assert.assertFalse
import org.junit.Assert.assertTrue
import org.junit.Test
import org.junit.runner.RunWith
import org.mozilla.fenix.TestApplication
import org.robolectric.RobolectricTestRunner
import org.robolectric.annotation.Config
@ObsoleteCoroutinesApi
@RunWith(RobolectricTestRunner::class)
@Config(application = TestApplication::class)
class StoreProviderTest {
private class BasicState : State
private val basicStore = Store(BasicState()) { state, _: Action -> state }
@Test
fun `factory returns store provider`() {
var createCalled = false
val factory = StoreProviderFactory {
createCalled = true
basicStore
}
assertFalse(createCalled)
assertEquals(basicStore, factory.create(StoreProvider::class.java).store)
assertTrue(createCalled)
}
@Test
fun `get returns store`() {
val scenario = launchFragmentInContainer { Fragment() }
scenario.onFragment {
val store = StoreProvider.get(it) { basicStore }
assertEquals(basicStore, store)
}
}
@Test
fun `get only calls createStore if needed`() {
val scenario = launchFragmentInContainer { Fragment() }
var createCalled = false
val createStore = {
createCalled = true
basicStore
}
scenario.onFragment {
StoreProvider.get(it, createStore)
}
assertTrue(createCalled)
createCalled = false
scenario.onFragment {
StoreProvider.get(it, createStore)
}
assertFalse(createCalled)
}
}