-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test in jvm for SVGCanvas and fix SVGCanvas native parts (#660)
Co-authored-by: Steyn Geldenhuys <[email protected]>
- Loading branch information
Showing
2 changed files
with
66 additions
and
3 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
62 changes: 62 additions & 0 deletions
62
skiko/src/jvmTest/kotlin/org/jetbrains/skia/svg/SVGCanvasTest.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,62 @@ | ||
package org.jetbrains.skiko.tests.org.jetbrains.skia.svg | ||
|
||
import org.jetbrains.skia.Data | ||
import org.jetbrains.skia.OutputWStream | ||
import org.jetbrains.skia.Point | ||
import org.jetbrains.skia.Rect | ||
import org.jetbrains.skia.svg.* | ||
import java.io.ByteArrayOutputStream | ||
import kotlin.test.Test | ||
import kotlin.test.assertEquals | ||
|
||
class SVGCanvasTest { | ||
|
||
val svgText = """ | ||
<svg version="1.1" | ||
width="300" height="200" | ||
xmlns="http://www.w3.org/2000/svg"> | ||
<rect width="100%" height="100%" fill="red" /> | ||
<circle cx="150" cy="100" r="80" fill="green" /> | ||
<text x="150" y="125" font-size="60" text-anchor="middle" fill="white">SVG</text> | ||
</svg> | ||
""".trimIndent() | ||
|
||
@Test | ||
fun svgCanvasSmoke() { | ||
val data = Data.makeFromBytes(svgText.encodeToByteArray()) | ||
val inputDom = SVGDOM(data) | ||
|
||
val baos = ByteArrayOutputStream() | ||
val svgCanvas = SVGCanvas.make(Rect.Companion.makeWH(300f, 200f), OutputWStream(baos)) | ||
inputDom.render(svgCanvas) | ||
svgCanvas.close() | ||
|
||
val svgCanvasData = Data.makeFromBytes(baos.toByteArray()) | ||
val dom = SVGDOM(svgCanvasData) | ||
|
||
require(!dom.isClosed) | ||
dom.setContainerSize(Point(100f, 100f)) | ||
dom.setContainerSize(101f, 101f) | ||
require(dom.root != null) | ||
val e = dom.root!! | ||
require(e.x.unit == SVGLengthUnit.NUMBER) | ||
require(e.y.unit == SVGLengthUnit.NUMBER) | ||
require(e.width.unit == SVGLengthUnit.NUMBER) | ||
require(e.height.unit == SVGLengthUnit.NUMBER) | ||
require(e.viewBox == null) | ||
require(e.tag == SVGTag.SVG) | ||
e.viewBox = Rect(0f, 1f, 100f, 200f) | ||
|
||
val aspectRatio = | ||
SVGPreserveAspectRatio(SVGPreserveAspectRatioAlign.XMIN_YMIN, SVGPreserveAspectRatioScale.MEET) | ||
e.preserveAspectRatio = aspectRatio | ||
assertEquals(aspectRatio, e.preserveAspectRatio) | ||
require(e.getIntrinsicSize(SVGLengthContext(100f, 100f)).x == 300f) | ||
e.viewBox = Rect.makeXYWH(0f, 1f, 2f, 3f) | ||
require(e.viewBox == Rect.makeXYWH(0f, 1f, 2f, 3f)) | ||
} | ||
} |