1
0
Fork 0
fenix/app/src/test/java/org/mozilla/fenix/ext/BrowserIconsTest.kt

33 lines
1.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.ext
import android.widget.ImageView
import io.mockk.spyk
import io.mockk.verify
import mozilla.components.browser.engine.gecko.fetch.GeckoViewFetchClient
import mozilla.components.browser.icons.BrowserIcons
import mozilla.components.browser.icons.IconRequest
import mozilla.components.support.test.robolectric.testContext
import org.junit.Test
import org.junit.runner.RunWith
import org.mozilla.fenix.TestApplication
import org.robolectric.RobolectricTestRunner
import org.robolectric.annotation.Config
@RunWith(RobolectricTestRunner::class)
@Config(application = TestApplication::class)
class BrowserIconsTest {
@Test
fun loadIntoViewTest() {
val imageView = spyk(ImageView(testContext))
val icons = spyk(BrowserIcons(testContext, httpClient = GeckoViewFetchClient(testContext)))
val myUrl = "https://mozilla.com"
val request = spyk(IconRequest(url = myUrl))
icons.loadIntoView(imageView, myUrl)
verify { icons.loadIntoView(imageView, request) }
}
}