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/settings/creditcards/DefaultCreditCardEditorCont...

132 lines
4.4 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.settings.creditcards
import android.content.DialogInterface
import androidx.navigation.NavController
import io.mockk.coVerify
import io.mockk.every
import io.mockk.mockk
import io.mockk.spyk
import io.mockk.verify
import kotlinx.coroutines.test.TestCoroutineScope
import kotlinx.coroutines.test.runBlockingTest
import mozilla.components.concept.storage.CreditCardNumber
import mozilla.components.concept.storage.NewCreditCardFields
import mozilla.components.concept.storage.UpdatableCreditCardFields
import mozilla.components.service.sync.autofill.AutofillCreditCardsAddressesStorage
import mozilla.components.support.test.rule.MainCoroutineRule
import mozilla.components.support.utils.CreditCardNetworkType
import org.junit.After
import org.junit.Before
import org.junit.Rule
import org.junit.Test
import org.mozilla.fenix.components.metrics.Event
import org.mozilla.fenix.components.metrics.MetricController
import org.mozilla.fenix.settings.creditcards.controller.DefaultCreditCardEditorController
class DefaultCreditCardEditorControllerTest {
private val storage: AutofillCreditCardsAddressesStorage = mockk(relaxed = true)
private val navController: NavController = mockk(relaxed = true)
private val metrics: MetricController = mockk(relaxed = true)
private val showDeleteDialog = mockk<(DialogInterface.OnClickListener) -> Unit>()
private lateinit var controller: DefaultCreditCardEditorController
@get:Rule
val coroutinesTestRule = MainCoroutineRule()
private val testDispatcher = coroutinesTestRule.testDispatcher
private val testCoroutineScope = TestCoroutineScope(testDispatcher)
@Before
fun setup() {
every { showDeleteDialog(any()) } answers {
firstArg<DialogInterface.OnClickListener>().onClick(
mockk(relaxed = true),
mockk(relaxed = true)
)
}
controller = spyk(
DefaultCreditCardEditorController(
storage = storage,
lifecycleScope = testCoroutineScope,
navController = navController,
ioDispatcher = testDispatcher,
metrics = metrics,
showDeleteDialog = showDeleteDialog
)
)
}
@After
fun cleanUp() {
testCoroutineScope.cleanupTestCoroutines()
}
@Test
fun handleCancelButtonClicked() {
controller.handleCancelButtonClicked()
verify {
navController.popBackStack()
}
}
@Test
fun handleDeleteCreditCard() = testCoroutineScope.runBlockingTest {
val creditCardId = "id"
controller.handleDeleteCreditCard(creditCardId)
coVerify {
storage.deleteCreditCard(creditCardId)
navController.popBackStack()
metrics.track(Event.CreditCardDeleted)
}
}
@Test
fun handleSaveCreditCard() = testCoroutineScope.runBlockingTest {
val creditCardFields = NewCreditCardFields(
billingName = "Banana Apple",
plaintextCardNumber = CreditCardNumber.Plaintext("4111111111111112"),
cardNumberLast4 = "1112",
expiryMonth = 1,
expiryYear = 2030,
cardType = CreditCardNetworkType.DISCOVER.cardName
)
controller.handleSaveCreditCard(creditCardFields)
coVerify {
storage.addCreditCard(creditCardFields)
navController.popBackStack()
metrics.track(Event.CreditCardSaved)
}
}
@Test
fun handleUpdateCreditCard() = testCoroutineScope.runBlockingTest {
val creditCardId = "id"
val creditCardFields = UpdatableCreditCardFields(
billingName = "Banana Apple",
cardNumber = CreditCardNumber.Plaintext("4111111111111112"),
cardNumberLast4 = "1112",
expiryMonth = 1,
expiryYear = 2034,
cardType = CreditCardNetworkType.DISCOVER.cardName
)
controller.handleUpdateCreditCard(creditCardId, creditCardFields)
coVerify {
storage.updateCreditCard(creditCardId, creditCardFields)
navController.popBackStack()
metrics.track(Event.CreditCardModified)
}
}
}