-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for render mode SHRINK for AccessibilityRenderExtension
- Loading branch information
1 parent
85696ae
commit 39280d0
Showing
3 changed files
with
63 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
.../src/test/java/app/cash/paparazzi/accessibility/AccessibilityRenderExtensionShrinkTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package app.cash.paparazzi.accessibility | ||
|
||
import android.widget.TextView | ||
import app.cash.paparazzi.DeviceConfig | ||
import app.cash.paparazzi.Paparazzi | ||
import app.cash.paparazzi.Snapshot | ||
import app.cash.paparazzi.SnapshotHandler | ||
import app.cash.paparazzi.internal.ImageUtils | ||
import com.android.ide.common.rendering.api.SessionParams | ||
import org.junit.Rule | ||
import org.junit.Test | ||
import java.awt.image.BufferedImage | ||
import java.io.File | ||
import javax.imageio.ImageIO | ||
|
||
class AccessibilityRenderExtensionShrinkTest { | ||
private val snapshotHandler = TestSnapshotVerifier() | ||
|
||
@get:Rule | ||
val paparazzi = Paparazzi( | ||
deviceConfig = DeviceConfig.NEXUS_5, | ||
snapshotHandler = snapshotHandler, | ||
renderExtensions = setOf(AccessibilityRenderExtension()), | ||
renderingMode = SessionParams.RenderingMode.SHRINK | ||
) | ||
|
||
@Test | ||
fun `verify baseline`() { | ||
val view = TextView(paparazzi.context).apply { | ||
id = 1 | ||
text = "Text View Sample" | ||
setPadding(50, 50, 50, 50) | ||
} | ||
paparazzi.snapshot(view, name = "accessibility-shrink") | ||
} | ||
|
||
private class TestSnapshotVerifier : SnapshotHandler { | ||
override fun newFrameHandler( | ||
snapshot: Snapshot, | ||
frameCount: Int, | ||
fps: Int | ||
): SnapshotHandler.FrameHandler { | ||
return object : SnapshotHandler.FrameHandler { | ||
override fun handle(image: BufferedImage) { | ||
val expected = File("src/test/resources/${snapshot.name}.png") | ||
ImageUtils.assertImageSimilar( | ||
relativePath = expected.path, | ||
image = image, | ||
goldenImage = ImageIO.read(expected), | ||
maxPercentDifferent = 0.1 | ||
) | ||
} | ||
|
||
override fun close() = Unit | ||
} | ||
} | ||
|
||
override fun close() = Unit | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.