Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f14937d7 authored by Grace Cheng's avatar Grace Cheng Committed by Automerger Merge Worker
Browse files

Merge "Adding optional block to run before screenshot" into udc-dev am: a6550a83

parents 3d8f258f a6550a83
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -78,6 +78,7 @@ open class ViewScreenshotTestRule(
    protected fun takeScreenshot(
        mode: Mode = Mode.WrapContent,
        viewProvider: (ComponentActivity) -> View,
        beforeScreenshot: (ComponentActivity) -> Unit = {}
    ): Bitmap {
        activityRule.scenario.onActivity { activity ->
            // Make sure that the activity draws full screen and fits the whole display instead of
@@ -103,6 +104,7 @@ open class ViewScreenshotTestRule(
            val content = activity.requireViewById<ViewGroup>(android.R.id.content)
            assertEquals(1, content.childCount)
            contentView = content.getChildAt(0)
            beforeScreenshot(activity)
        }

        return if (isRobolectric) {
@@ -120,9 +122,10 @@ open class ViewScreenshotTestRule(
    fun screenshotTest(
        goldenIdentifier: String,
        mode: Mode = Mode.WrapContent,
        viewProvider: (ComponentActivity) -> View,
        beforeScreenshot: (ComponentActivity) -> Unit = {},
        viewProvider: (ComponentActivity) -> View
    ) {
        val bitmap = takeScreenshot(mode, viewProvider)
        val bitmap = takeScreenshot(mode, viewProvider, beforeScreenshot)
        screenshotRule.assertBitmapAgainstGolden(
            bitmap,
            goldenIdentifier,