This commit is contained in:
parent
9a6a337343
commit
1ff40ebce5
@ -28,14 +28,13 @@ jobs:
|
|||||||
- uses: android-actions/setup-android@v3
|
- uses: android-actions/setup-android@v3
|
||||||
- name: Configure gradle...
|
- name: Configure gradle...
|
||||||
run: mkdir -p ~/.gradle && echo "org.gradle.daemon=false\nignoreGitVersion=true" >> ~/.gradle/gradle.properties
|
run: mkdir -p ~/.gradle && echo "org.gradle.daemon=false\nignoreGitVersion=true" >> ~/.gradle/gradle.properties
|
||||||
- name: Robolectric tests
|
- name: coverage
|
||||||
run: |
|
run: |
|
||||||
./gradlew :androidApp:testGithubConfigDebugUnitTest --tests "bou.amine.apps.readerforselfossv2.android.tests.robolectric.*"
|
./gradlew :koverHtmlReport
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
if: failure()
|
|
||||||
with:
|
with:
|
||||||
name: robot-tests
|
name: coverage
|
||||||
path: androidApp/build/test-results/testGithubConfigDebugUnitTest
|
path: build/reports/kover/html
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
overwrite: true
|
overwrite: true
|
||||||
include-hidden-files: true
|
include-hidden-files: true
|
||||||
|
@ -113,9 +113,6 @@ android {
|
|||||||
execution = "ANDROIDX_TEST_ORCHESTRATOR"
|
execution = "ANDROIDX_TEST_ORCHESTRATOR"
|
||||||
unitTests {
|
unitTests {
|
||||||
isIncludeAndroidResources = true
|
isIncludeAndroidResources = true
|
||||||
all {
|
|
||||||
it.systemProperty("robolectric.logging.enabled", true)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -202,10 +199,11 @@ dependencies {
|
|||||||
androidTestImplementation("androidx.test.ext:junit-ktx:1.2.1")
|
androidTestImplementation("androidx.test.ext:junit-ktx:1.2.1")
|
||||||
androidTestUtil("androidx.test:orchestrator:1.5.1")
|
androidTestUtil("androidx.test:orchestrator:1.5.1")
|
||||||
testImplementation("org.robolectric:robolectric:4.14.1")
|
testImplementation("org.robolectric:robolectric:4.14.1")
|
||||||
|
testImplementation("androidx.test:core-ktx:1.6.1")
|
||||||
|
|
||||||
implementation("ch.acra:acra-http:$acraVersion")
|
implementation("ch.acra:acra-http:$acraVersion")
|
||||||
implementation("ch.acra:acra-toast:$acraVersion")
|
implementation("ch.acra:acra-toast:$acraVersion")
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType<Test> {
|
tasks.withType<Test> {
|
||||||
|
@ -1,94 +0,0 @@
|
|||||||
package bou.amine.apps.readerforselfossv2.android.tests.robolectric
|
|
||||||
|
|
||||||
import android.view.View
|
|
||||||
import bou.amine.apps.readerforselfossv2.android.HomeActivity
|
|
||||||
import bou.amine.apps.readerforselfossv2.android.R
|
|
||||||
import bou.amine.apps.readerforselfossv2.service.ACRASettings
|
|
||||||
import bou.amine.apps.readerforselfossv2.service.AppSettingsService.Companion.BASE_URL
|
|
||||||
import bou.amine.apps.readerforselfossv2.service.AppSettingsService.Companion.LOGIN
|
|
||||||
import bou.amine.apps.readerforselfossv2.service.AppSettingsService.Companion.PASSWORD
|
|
||||||
import io.mockk.every
|
|
||||||
import io.mockk.mockk
|
|
||||||
import org.junit.Assert.assertEquals
|
|
||||||
import org.junit.Assert.assertNotNull
|
|
||||||
import org.junit.Assert.assertTrue
|
|
||||||
import org.junit.Before
|
|
||||||
import org.junit.Test
|
|
||||||
import org.junit.runner.RunWith
|
|
||||||
import org.robolectric.Robolectric
|
|
||||||
import org.robolectric.Shadows
|
|
||||||
|
|
||||||
@RunWith(RobotElectriqueRunnerclass::class)
|
|
||||||
class HomeActivityTest {
|
|
||||||
|
|
||||||
|
|
||||||
@Before
|
|
||||||
fun setUp() {
|
|
||||||
val settings = mockk<ACRASettings>()
|
|
||||||
every { settings.getString(PASSWORD, "") } returns ""
|
|
||||||
every { settings.getString(LOGIN, "") } returns ""
|
|
||||||
every { settings.getString(BASE_URL, "") } returns "http://10.0.2.2:8888"
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
fun testMenu() {
|
|
||||||
Robolectric.buildActivity(HomeActivity::class.java).use { controller ->
|
|
||||||
controller.setup() // Moves the Activity to the RESUMED state
|
|
||||||
|
|
||||||
val activity = controller.get()
|
|
||||||
val searchMenuItem = activity.findViewById<View>(R.id.action_search)
|
|
||||||
try {
|
|
||||||
assertNotNull(searchMenuItem)
|
|
||||||
assertTrue(searchMenuItem.visibility == View.VISIBLE)
|
|
||||||
assertTrue(searchMenuItem.isClickable)
|
|
||||||
|
|
||||||
val filterMenuItem = activity.findViewById<View>(R.id.action_filter)
|
|
||||||
assertNotNull(filterMenuItem)
|
|
||||||
assertTrue(filterMenuItem.visibility == View.VISIBLE)
|
|
||||||
assertTrue(filterMenuItem.isClickable)
|
|
||||||
|
|
||||||
// Simulate opening the options menu
|
|
||||||
Shadows.shadowOf(activity)
|
|
||||||
.clickMenuItem(R.id.action_search) // or R.id.action_filter, ...
|
|
||||||
|
|
||||||
// Assert menu items are displayed
|
|
||||||
// You'll need to find the menu items using Robolectric APIs
|
|
||||||
// and assert their visibility, for example:
|
|
||||||
// val readAllMenuItem = Shadows.shadowOf(activity).optionsMenu.findItem(R.id.readAll)
|
|
||||||
// assertNotNull(readAllMenuItem)
|
|
||||||
// assertTrue(readAllMenuItem.isVisible)
|
|
||||||
} catch (e: Throwable) {
|
|
||||||
val screenshot = Screenshot.takeScreenshot(activity)
|
|
||||||
screenshot.save(File("screenshots"), "myTestFailure")
|
|
||||||
throw e
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
fun testMenuActions() {
|
|
||||||
// Simulate menu item clicks and assert the expected behavior
|
|
||||||
// using Robolectric APIs, for example:
|
|
||||||
// Shadows.shadowOf(activity).clickMenuItem(R.id.action_search)
|
|
||||||
// val searchEditText = activity.findViewById<EditText>(R.id.search_src_text)
|
|
||||||
// assertTrue(searchEditText.hasFocus())
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
fun testEmptyView() {
|
|
||||||
Robolectric.buildActivity(HomeActivity::class.java).use { controller ->
|
|
||||||
controller.setup() // Moves the Activity to the RESUMED state
|
|
||||||
|
|
||||||
val activity = controller.get()
|
|
||||||
val emptyView = activity.findViewById<View>(R.id.emptyText)
|
|
||||||
assertNotNull(emptyView)
|
|
||||||
assertEquals(View.VISIBLE, emptyView.visibility)
|
|
||||||
|
|
||||||
// Assert bottom bar items
|
|
||||||
// You'll need to find the bottom bar items using Robolectric APIs
|
|
||||||
// and assert their visibility and selection state, for example:
|
|
||||||
// val newTabItem = activity.findViewById<View>(R.id.tab_new)
|
|
||||||
// assertTrue(newTabItem.isSelected)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,10 +1,8 @@
|
|||||||
package bou.amine.apps.readerforselfossv2.android.tests.robolectric
|
package bou.amine.apps.readerforselfossv2.android.tests.robolectric
|
||||||
|
|
||||||
import android.content.Intent
|
|
||||||
import android.widget.Button
|
import android.widget.Button
|
||||||
import android.widget.EditText
|
import android.widget.EditText
|
||||||
import androidx.core.view.isVisible
|
import androidx.core.view.isVisible
|
||||||
import bou.amine.apps.readerforselfossv2.android.HomeActivity
|
|
||||||
import bou.amine.apps.readerforselfossv2.android.LoginActivity
|
import bou.amine.apps.readerforselfossv2.android.LoginActivity
|
||||||
import bou.amine.apps.readerforselfossv2.android.R
|
import bou.amine.apps.readerforselfossv2.android.R
|
||||||
import com.google.android.material.switchmaterial.SwitchMaterial
|
import com.google.android.material.switchmaterial.SwitchMaterial
|
||||||
@ -12,8 +10,6 @@ import org.junit.Assert.assertEquals
|
|||||||
import org.junit.Test
|
import org.junit.Test
|
||||||
import org.junit.runner.RunWith
|
import org.junit.runner.RunWith
|
||||||
import org.robolectric.Robolectric
|
import org.robolectric.Robolectric
|
||||||
import org.robolectric.RuntimeEnvironment
|
|
||||||
import org.robolectric.Shadows.shadowOf
|
|
||||||
|
|
||||||
|
|
||||||
@RunWith(RobotElectriqueRunnerclass::class)
|
@RunWith(RobotElectriqueRunnerclass::class)
|
||||||
@ -63,19 +59,19 @@ class LoginActivityTest {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
/* @Test
|
||||||
fun connect() {
|
fun connect() {
|
||||||
Robolectric.buildActivity(LoginActivity::class.java).use { controller ->
|
Robolectric.buildActivity(LoginActivity::class.java).use { controller ->
|
||||||
controller.setup() // Moves the Activity to the RESUMED state
|
controller.setup() // Moves the Activity to the RESUMED state
|
||||||
val activity = controller.get()
|
val activity = controller.get()
|
||||||
val signInButton = activity.findViewById<Button>(R.id.signInButton)
|
val signInButton = activity.findViewById<Button>(R.id.signInButton)
|
||||||
val urlView = activity.findViewById<EditText>(R.id.urlView)
|
val urlView = activity.findViewById<EditText>(R.id.urlView)
|
||||||
urlView.setText("http://10.0.2.2:8888")
|
urlView.setText("http://10.0.2.2:8888")
|
||||||
signInButton.performClick()
|
signInButton.performClick()
|
||||||
|
|
||||||
val expectedIntent = Intent(activity, HomeActivity::class.java)
|
val expectedIntent = Intent(activity, HomeActivity::class.java)
|
||||||
val actual = shadowOf(RuntimeEnvironment.application).nextStartedActivity
|
val actual = shadowOf(activity).nextStartedActivity
|
||||||
assertEquals(expectedIntent.component, actual.component)
|
assertEquals(expectedIntent.component, actual.component)
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
}
|
}
|
@ -12,7 +12,7 @@ plugins {
|
|||||||
id("org.jetbrains.kotlin.android").version("2.1.0").apply(false)
|
id("org.jetbrains.kotlin.android").version("2.1.0").apply(false)
|
||||||
kotlin("multiplatform").version("2.1.0").apply(false)
|
kotlin("multiplatform").version("2.1.0").apply(false)
|
||||||
id("com.mikepenz.aboutlibraries.plugin").version("10.5.1").apply(false)
|
id("com.mikepenz.aboutlibraries.plugin").version("10.5.1").apply(false)
|
||||||
id("org.jetbrains.kotlinx.kover").version("0.6.1").apply(true)
|
id("org.jetbrains.kotlinx.kover") version "0.9.0" apply true
|
||||||
}
|
}
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
@ -28,6 +28,7 @@ tasks.register("clean", Delete::class) {
|
|||||||
delete(layout.buildDirectory)
|
delete(layout.buildDirectory)
|
||||||
}
|
}
|
||||||
|
|
||||||
koverMerged {
|
dependencies {
|
||||||
enable()
|
kover(project(":shared"))
|
||||||
|
kover(project(":androidApp"))
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user