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/quicksettings/WebsiteInfoViewTest.kt

74 lines
2.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.quicksettings
import android.widget.FrameLayout
import io.mockk.every
import io.mockk.mockk
import io.mockk.spyk
import io.mockk.verify
import mozilla.components.browser.icons.BrowserIcons
import mozilla.components.browser.icons.IconRequest
import mozilla.components.support.test.robolectric.testContext
import org.junit.Assert.assertEquals
import org.junit.Before
import org.junit.Test
import org.junit.runner.RunWith
import org.mozilla.fenix.databinding.QuicksettingsWebsiteInfoBinding
import org.mozilla.fenix.helpers.FenixRobolectricTestRunner
@RunWith(FenixRobolectricTestRunner::class)
class WebsiteInfoViewTest {
private lateinit var view: WebsiteInfoView
private lateinit var icons: BrowserIcons
private lateinit var binding: QuicksettingsWebsiteInfoBinding
private lateinit var interactor: WebSiteInfoInteractor
@Before
fun setup() {
icons = mockk(relaxed = true)
interactor = mockk(relaxed = true)
view = spyk(WebsiteInfoView(FrameLayout(testContext), icons, interactor))
binding = view.binding
every { icons.loadIntoView(any(), any()) } returns mockk()
}
@Test
fun `WHEN updating THEN bind url`() {
val websiteUrl = "https://mozilla.org"
view.update(
WebsiteInfoState(
websiteUrl = websiteUrl,
websiteTitle = "Mozilla",
websiteSecurityUiValues = WebsiteSecurityUiValues.SECURE,
certificateName = "",
),
)
verify { icons.loadIntoView(binding.faviconImage, IconRequest(websiteUrl)) }
assertEquals("mozilla.org", binding.url.text)
assertEquals("Connection is secure", binding.securityInfo.text)
}
@Test
fun `WHEN updating THEN bind certificate`() {
view.update(
WebsiteInfoState(
websiteUrl = "https://mozilla.org",
websiteTitle = "Mozilla",
websiteSecurityUiValues = WebsiteSecurityUiValues.INSECURE,
certificateName = "Certificate",
),
)
verify { view.bindConnectionDetailsListener() }
assertEquals("Connection is not secure", binding.securityInfo.text)
}
}