/hg/gfx-test: Added new tests for rendering dashed circles and e...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Aug 3 09:27:23 PDT 2010
changeset 9d64e53f9ebb in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=9d64e53f9ebb
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Aug 03 18:27:40 2010 +0200
Added new tests for rendering dashed circles and ellipses,
refactoring of tests which render scaled shapes.
diffstat:
11 files changed, 367 insertions(+), 180 deletions(-)
Makefile | 2
TODO | 8 -
src/org/gfxtest/framework/GfxTest.java | 137 +++++++++++++++-----
src/org/gfxtest/testsuites/DashedCircles.java | 93 +++++++++++++
src/org/gfxtest/testsuites/DashedEllipses.java | 93 +++++++++++++
src/org/gfxtest/testsuites/DashedRectangles.java | 72 ++--------
src/org/gfxtest/testsuites/Normal3DRectangles.java | 13 +
src/org/gfxtest/testsuites/NormalRectangles.java | 1
src/org/gfxtest/testsuites/ScaledLines.java | 44 +++---
src/org/gfxtest/testsuites/ScaledPolylines.java | 44 +-----
src/org/gfxtest/testsuites/ScaledRectangles.java | 40 +----
diffs (truncated from 761 to 500 lines):
diff -r f42b6b6ff41f -r 9d64e53f9ebb Makefile
--- a/Makefile Tue Aug 03 14:47:06 2010 +0200
+++ b/Makefile Tue Aug 03 18:27:40 2010 +0200
@@ -86,6 +86,8 @@ TESTSUITE_CLASSES = \
$(CLASSES)/$(TESTSUITE_DIR)/ScaledLines.class \
$(CLASSES)/$(TESTSUITE_DIR)/ScaledPolylines.class \
$(CLASSES)/$(TESTSUITE_DIR)/ScaledRectangles.class \
+ $(CLASSES)/$(TESTSUITE_DIR)/DashedCircles.class \
+ $(CLASSES)/$(TESTSUITE_DIR)/DashedEllipses.class \
$(CLASSES)/$(TESTSUITE_DIR)/DashedLines.class \
$(CLASSES)/$(TESTSUITE_DIR)/DashedPolylines.class \
$(CLASSES)/$(TESTSUITE_DIR)/DashedRectangles.class
diff -r f42b6b6ff41f -r 9d64e53f9ebb TODO
--- a/TODO Tue Aug 03 14:47:06 2010 +0200
+++ b/TODO Tue Aug 03 18:27:40 2010 +0200
@@ -1,8 +0,0 @@
-DashedRectangles.java
-FilledEllipses.java
-Normal3DRectangles.java
-NormalEllipses.java
-NormalLines.java
-ScaledLines.java
-ScaledPolylines.java
-ScaledRectangles.java
diff -r f42b6b6ff41f -r 9d64e53f9ebb src/org/gfxtest/framework/GfxTest.java
--- a/src/org/gfxtest/framework/GfxTest.java Tue Aug 03 14:47:06 2010 +0200
+++ b/src/org/gfxtest/framework/GfxTest.java Tue Aug 03 18:27:40 2010 +0200
@@ -52,6 +52,7 @@ public abstract class GfxTest
protected Log log = null;
protected String suiteName = null;
protected static final int CROSS_SIZE = 20;
+ protected int currentTestNumber = 0;
/**
* Minor radius for circles, ellipses etc.
@@ -100,9 +101,19 @@ public abstract class GfxTest
protected static final float[] DEFAULT_WIDTH = { 1.0f };
/**
- * All line or curve widths.
+ * All line or curve widths used by test cases.
*/
protected static final float[] ALL_WIDTHS = { 1.0f, 2.0f, 5.0f, 10.0f, 20.0f, 40.0f };
+
+ /**
+ * Default scale.
+ */
+ protected static final float[] DEFAULT_SCALE = { 1.0f };
+
+ /**
+ * All scales used by test cases.
+ */
+ protected static final float[] ALL_SCALES = { 0.5f, 1.0f, 10.0f, 20.0f, 40.0f };
/**
* Default ellipse eccentricity.
@@ -112,7 +123,8 @@ public abstract class GfxTest
/**
* Values used for rendering ellipses and similar geometric shapes.
*/
- protected static final float[] ECCENTRICITIES = {1/3.0f, 1/2.5f, 1/2.0f, 1/1.5f, 1.0f, 1.5f, 2.0f, 2.5f, 3.0f};
+ //protected static final float[] ECCENTRICITIES = {1/3.0f, 1/2.5f, 1/2.0f, 1/1.5f, 1.0f, 1.5f, 2.0f, 2.5f, 3.0f};
+ protected static final float[] ECCENTRICITIES = {1/3.0f, 1/1.5f, 1.0f, 1.5f, 3.0f};
/**
* Default pattern.
@@ -233,43 +245,107 @@ public abstract class GfxTest
{
int[] caps = changeCap ? ALL_CAP_STYLES : DEFAULT_CAP_STYLE;
int[] joins = changeJoin ? ALL_JOIN_STYLES : DEFAULT_JOIN_STYLE;
+ float[] scales = changeScale ? ALL_SCALES : DEFAULT_SCALE;
float[] widths = changeWidth ? ALL_WIDTHS : DEFAULT_WIDTH;
float[] eccentricities = changeEccentricity ? ECCENTRICITIES : DEFAULT_ECCENTRICITY;
float[] dash1patterns = changeDash ? ALL_DASH_PATTERNS : DEFAULT_DASH_PATTERN;
float[] dash2patterns = changeDash ? ALL_DASH_PATTERNS : DEFAULT_DASH_PATTERN;
- int testNumber = 0;
+
+ this.currentTestNumber = 0;
+ drawEntityUsingVariousCapStyles(configuration, minArcWidth, maxArcWidth, minArcHeight, maxArcHeight, caps, joins,
+ scales, widths, eccentricities, dash1patterns, dash2patterns);
+ }
+
+ private void drawEntityUsingVariousCapStyles(Configuration configuration, int minArcWidth, int maxArcWidth,
+ int minArcHeight, int maxArcHeight, int[] caps, int[] joins, float[] scales, float[] widths,
+ float[] eccentricities, float[] dash1patterns, float[] dash2patterns)
+ {
for (int cap : caps)
{
- for (int join : joins)
+ drawEntityUsingVariousJoinStyles(configuration, minArcWidth, maxArcWidth, minArcHeight, maxArcHeight, joins,
+ scales, widths, eccentricities, dash1patterns, dash2patterns, cap);
+ }
+ }
+
+ private void drawEntityUsingVariousJoinStyles(Configuration configuration, int minArcWidth, int maxArcWidth,
+ int minArcHeight, int maxArcHeight, int[] joins, float[] scales, float[] widths, float[] eccentricities,
+ float[] dash1patterns, float[] dash2patterns, int cap)
+ {
+ for (int join : joins)
+ {
+ drawEntityUsingVarioustrokeWidths(configuration, minArcWidth, maxArcWidth, minArcHeight, maxArcHeight, scales,
+ widths, eccentricities, dash1patterns, dash2patterns, cap, join);
+ }
+ }
+
+ private void drawEntityUsingVarioustrokeWidths(Configuration configuration, int minArcWidth, int maxArcWidth,
+ int minArcHeight, int maxArcHeight, float[] scales, float[] widths, float[] eccentricities,
+ float[] dash1patterns, float[] dash2patterns, int cap, int join)
+ {
+ for (float width : widths)
+ {
+ drawEntityUsingVariousScales(configuration, minArcWidth, maxArcWidth, minArcHeight, maxArcHeight, scales,
+ eccentricities, dash1patterns, dash2patterns, cap, join, width);
+ }
+ }
+
+ private void drawEntityUsingVariousScales(Configuration configuration, int minArcWidth, int maxArcWidth,
+ int minArcHeight, int maxArcHeight, float[] scales, float[] eccentricities, float[] dash1patterns,
+ float[] dash2patterns, int cap, int join, float width)
+ {
+ for (float scale : scales)
+ {
+ drawEntityUsingVariousEccentricities(configuration, minArcWidth, maxArcWidth, minArcHeight, maxArcHeight,
+ eccentricities, dash1patterns, dash2patterns, cap, join, width, scale);
+ }
+ }
+
+ private void drawEntityUsingVariousEccentricities(Configuration configuration, int minArcWidth, int maxArcWidth,
+ int minArcHeight, int maxArcHeight, float[] eccentricities, float[] dash1patterns, float[] dash2patterns,
+ int cap, int join, float width, float scale)
+ {
+ for (float eccentricity : eccentricities)
+ {
+ drawEntityUsingVariousArcSizes(configuration, minArcWidth, maxArcWidth, minArcHeight, maxArcHeight,
+ dash1patterns, dash2patterns, cap, join, width, scale, eccentricity);
+ }
+ }
+
+ private void drawEntityUsingVariousArcSizes(Configuration configuration, int minArcWidth, int maxArcWidth,
+ int minArcHeight, int maxArcHeight, float[] dash1patterns, float[] dash2patterns, int cap, int join,
+ float width, float scale, float eccentricity)
+ {
+ for (int arcHeight = minArcHeight; arcHeight <= maxArcHeight; arcHeight += ARC_STEP)
+ {
+ for (int arcWidth = minArcWidth; arcWidth <= maxArcWidth; arcWidth += ARC_STEP)
{
- for (float width : widths)
- {
- for (float eccentricity : eccentricities)
- {
- for (int arcHeight = minArcHeight; arcHeight <= maxArcHeight; arcHeight += ARC_STEP)
- {
- for (int arcWidth = minArcWidth; arcWidth <= maxArcWidth; arcWidth += ARC_STEP)
- {
- for (float dash1 : dash1patterns)
- {
- for (float dash2 : dash2patterns)
- {
- /*
- * TODO: add support to various scales
- * and dashes
- */
- EntityRenderingStyle entityRenderingStyle = new EntityRenderingStyle(cap, join,
- width, 1.0f, dash1, dash2, arcHeight, arcWidth, false, eccentricity);
- performOneTest(configuration, testNumber, entityRenderingStyle);
- testNumber++;
- }
- }
- }
- }
- }
- }
+ drawEntityUsingVariousDashPatterns(configuration, dash1patterns, dash2patterns, cap, join, width,
+ scale, eccentricity, arcHeight, arcWidth);
}
}
+ }
+
+ private void drawEntityUsingVariousDashPatterns(Configuration configuration, float[] dash1patterns,
+ float[] dash2patterns, int cap, int join, float width, float scale, float eccentricity, int arcHeight,
+ int arcWidth)
+ {
+ for (float dash1 : dash1patterns)
+ {
+ for (float dash2 : dash2patterns)
+ {
+ setStyleAndDrawEntity(configuration, cap, join, width, scale, eccentricity, arcHeight, arcWidth, dash1, dash2);
+ }
+ }
+ }
+
+ private void setStyleAndDrawEntity(Configuration configuration, int cap, int join, float width, float scale,
+ float eccentricity, int arcHeight, int arcWidth, float dash1, float dash2)
+ {
+ EntityRenderingStyle entityRenderingStyle = new EntityRenderingStyle(cap,
+ join, width, scale, dash1, dash2, arcHeight, arcWidth, false,
+ eccentricity);
+ performOneTest(configuration, this.currentTestNumber, entityRenderingStyle);
+ this.currentTestNumber++;
}
private void performOneTest(Configuration configuration, int testNumber, EntityRenderingStyle entityRenderingStyle)
@@ -298,6 +374,7 @@ public abstract class GfxTest
this.log.logSet("cap", entityRenderingStyle.getCap());
this.log.logSet("join", entityRenderingStyle.getJoin());
this.log.logSet("width", entityRenderingStyle.getWidth());
+ this.log.logSet("scale", entityRenderingStyle.getScale());
float[] dash = entityRenderingStyle.getDash();
this.log.logSet("dash", "[" + dash[0] + ", " + dash[1] + "]");
this.log.logSet("arc width", entityRenderingStyle.getArcWidth());
diff -r f42b6b6ff41f -r 9d64e53f9ebb src/org/gfxtest/testsuites/DashedCircles.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/testsuites/DashedCircles.java Tue Aug 03 18:27:40 2010 +0200
@@ -0,0 +1,93 @@
+/*
+ Java gfx-test framework
+
+ Copyright (C) 2010 Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package org.gfxtest.testsuites;
+
+import java.awt.*;
+
+import org.gfxtest.framework.*;
+import org.gfxtest.framework.annotations.*;
+
+/**
+ * This test renders various empty ellipses using identity transformation matrix.
+ *
+ * @author Pavel Tisnovsky
+ */
+ at TestType(TestTypes.RENDER_TEST)
+ at GraphicsPrimitive(GraphicsPrimitives.CIRCLE)
+ at RenderStyle(RenderStyles.DASH)
+ at Transformation(Transformations.NONE)
+public class DashedCircles extends GfxTest
+{
+
+ @Override
+ protected void drawEntity(TestImage image, Graphics2D graphics, int testNumber, EntityRenderingStyle entityRenderingStyle)
+ {
+ graphics.setStroke(new BasicStroke(entityRenderingStyle.getWidth(), entityRenderingStyle.getCap(), entityRenderingStyle.getJoin(), 1.0f, entityRenderingStyle.getDash(), 0.0f));
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ double rmaj = (xc > yc ? yc : xc) - (MAJOR_RADIUS - MINOR_RADIUS);
+
+ for (float m = 0.0f; m < 1.0f; m += 1.0 / 16.0)
+ {
+ Color color = new Color(Color.HSBtoRGB(m, 1.0f, 1.0f));
+ graphics.setColor(color);
+ double angle = Math.PI * 2 * m;
+ int x = (int) (xc + rmaj * Math.cos(angle));
+ int y = (int) (yc + rmaj * Math.sin(angle));
+ float radius = MINOR_RADIUS + m * (MAJOR_RADIUS - MINOR_RADIUS);
+ int rx = (int)(radius * entityRenderingStyle.getEccentricity());
+ int ry = (int)(radius / entityRenderingStyle.getEccentricity());
+ graphics.drawOval(x - rx, y - ry, rx << 1, ry << 1);
+ }
+ drawCross(graphics, xc, yc, CROSS_SIZE);
+ }
+
+ @Override
+ protected void runOtherTests(Configuration configuration)
+ {
+ drawEntityWithVariousStyles(configuration, false, false, true, false, true, false);
+ }
+
+ public static void main(String[] args)
+ {
+ new DashedCircles().runTestSuite(args);
+ }
+}
diff -r f42b6b6ff41f -r 9d64e53f9ebb src/org/gfxtest/testsuites/DashedEllipses.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/testsuites/DashedEllipses.java Tue Aug 03 18:27:40 2010 +0200
@@ -0,0 +1,93 @@
+/*
+ Java gfx-test framework
+
+ Copyright (C) 2010 Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package org.gfxtest.testsuites;
+
+import java.awt.*;
+
+import org.gfxtest.framework.*;
+import org.gfxtest.framework.annotations.*;
+
+/**
+ * This test renders various empty ellipses using identity transformation matrix.
+ *
+ * @author Pavel Tisnovsky
+ */
+ at TestType(TestTypes.RENDER_TEST)
+ at GraphicsPrimitive(GraphicsPrimitives.ELLIPSE)
+ at RenderStyle(RenderStyles.DASH)
+ at Transformation(Transformations.NONE)
+public class DashedEllipses extends GfxTest
+{
+
+ @Override
+ protected void drawEntity(TestImage image, Graphics2D graphics, int testNumber, EntityRenderingStyle entityRenderingStyle)
+ {
+ graphics.setStroke(new BasicStroke(entityRenderingStyle.getWidth(), entityRenderingStyle.getCap(), entityRenderingStyle.getJoin(), 1.0f, entityRenderingStyle.getDash(), 0.0f));
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ double rmaj = (xc > yc ? yc : xc) - (MAJOR_RADIUS - MINOR_RADIUS);
+
+ for (float m = 0.0f; m < 1.0f; m += 1.0 / 16.0)
+ {
+ Color color = new Color(Color.HSBtoRGB(m, 1.0f, 1.0f));
+ graphics.setColor(color);
+ double angle = Math.PI * 2 * m;
+ int x = (int) (xc + rmaj * Math.cos(angle));
+ int y = (int) (yc + rmaj * Math.sin(angle));
+ float radius = MINOR_RADIUS + m * (MAJOR_RADIUS - MINOR_RADIUS);
+ int rx = (int)(radius * entityRenderingStyle.getEccentricity());
+ int ry = (int)(radius / entityRenderingStyle.getEccentricity());
+ graphics.drawOval(x - rx, y - ry, rx << 1, ry << 1);
+ }
+ drawCross(graphics, xc, yc, CROSS_SIZE);
+ }
+
+ @Override
+ protected void runOtherTests(Configuration configuration)
+ {
+ drawEntityWithVariousStyles(configuration, false, false, true, false, true, true);
+ }
+
+ public static void main(String[] args)
+ {
+ new DashedEllipses().runTestSuite(args);
+ }
+}
diff -r f42b6b6ff41f -r 9d64e53f9ebb src/org/gfxtest/testsuites/DashedRectangles.java
--- a/src/org/gfxtest/testsuites/DashedRectangles.java Tue Aug 03 14:47:06 2010 +0200
+++ b/src/org/gfxtest/testsuites/DashedRectangles.java Tue Aug 03 18:27:40 2010 +0200
@@ -41,8 +41,6 @@ package org.gfxtest.testsuites;
package org.gfxtest.testsuites;
import java.awt.*;
-import java.awt.geom.AffineTransform;
-import java.io.IOException;
import org.gfxtest.framework.*;
import org.gfxtest.framework.annotations.*;
@@ -58,63 +56,33 @@ import org.gfxtest.framework.annotations
@Transformation(Transformations.NONE)
public class DashedRectangles extends GfxTest
{
- private static final float DEFAULT_SCALE = 20.0f;
- private void drawRectangle(TestImage image, Graphics2D graphics, float scale, int cap, int join, float[] dash)
+ @Override
+ protected void drawEntity(TestImage image, Graphics2D graphics, int testNumber, EntityRenderingStyle entityRenderingStyle)
{
- graphics.setColor(Color.BLACK);
- graphics.setStroke(new BasicStroke(1, // width
- cap, // cap
- join, // join
- 1.0f,
- dash, // dash
- 0.0f)); // dash phase
- graphics.scale(scale, scale);
- int x1 = (int) (OFFSET / scale);
- int y1 = (int) (OFFSET / scale);
- int x2 = (int) ((image.getWidth() - OFFSET) / scale);
- int y2 = (int) ((image.getHeight() - OFFSET) / scale);
- graphics.drawRect(x1, y1, x2 - x1, y2 - y1);
+ graphics.setStroke(new BasicStroke(entityRenderingStyle.getWidth(), entityRenderingStyle.getCap(), entityRenderingStyle.getJoin(), 1.0f, entityRenderingStyle.getDash(), 0.0f));
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
- graphics.setTransform(new AffineTransform());
- drawCross(graphics, OFFSET, OFFSET, CROSS_SIZE);
- drawCross(graphics, image.getWidth() - OFFSET, image.getHeight() - OFFSET, CROSS_SIZE);
+ double rmaj = (xc > yc ? yc : xc) - (MAJOR_RADIUS - MINOR_RADIUS);
+
+ for (float m = 1.0f; m >= 0.0f; m -= 1.0 / 16.0)
+ {
+ Color color = new Color(Color.HSBtoRGB(m, 1.0f, 1.0f));
+ graphics.setColor(color);
+ double angle = Math.PI * 2 * m;
+ int x = (int) (xc + rmaj * Math.cos(angle));
+ int y = (int) (yc + rmaj * Math.sin(angle));
+ int radius = (int)(MINOR_RADIUS + m * (MAJOR_RADIUS - MINOR_RADIUS));
+ graphics.drawRect(x - radius, y - radius, radius << 1, radius << 1);
+ }
+ drawCross(graphics, xc, yc, CROSS_SIZE);
}
+ @Override
protected void runOtherTests(Configuration configuration)
{
- int[] caps = { BasicStroke.CAP_SQUARE, BasicStroke.CAP_BUTT, BasicStroke.CAP_ROUND };
- int[] joins = { BasicStroke.JOIN_BEVEL, BasicStroke.JOIN_MITER, BasicStroke.CAP_ROUND };
- int testNumber = 0;
- for (int join : joins)
- {
- for (int cap : caps)
- {
- for (float dash1 = 0.25f; dash1 <= 4.0; dash1 *= 2.0)
- {
- for (float dash2 = 0.25f; dash2 <= 4.0; dash2 *= 2.0)
- {
- String testName = "test" + testNumber;
- log.logBegin(testName);
- TestImage image = new TestImage(configuration);
- Graphics2D graphics = (Graphics2D) image.getGraphics();
- drawRectangle(image, graphics, DEFAULT_SCALE, cap, join, new float[]
- { dash1, dash2 });
- graphics.dispose();
- try
- {
- image.writeImage(configuration, suiteName, testName);
- }
- catch (IOException e)
- {
- e.printStackTrace();
- }
- log.logEnd(testName);
- testNumber++;
- }
- }
- }
- }
+ drawEntityWithVariousStyles(configuration, true, true, true, false, true);
}
public static void main(String[] args)
More information about the distro-pkg-dev
mailing list