/hg/gfx-test: Added support for automatic generation of dash pat...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Aug 3 05:46:53 PDT 2010
changeset f42b6b6ff41f in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=f42b6b6ff41f
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Aug 03 14:47:06 2010 +0200
Added support for automatic generation of dash pattern, some tests
refactored to use this functionality.
diffstat:
8 files changed, 101 insertions(+), 185 deletions(-)
TODO | 4 -
src/org/gfxtest/framework/EntityRenderingStyle.java | 9 ++
src/org/gfxtest/framework/GfxTest.java | 35 +++++++--
src/org/gfxtest/testsuites/DashedLines.java | 71 +++++--------------
src/org/gfxtest/testsuites/DashedPolylines.java | 61 +++-------------
src/org/gfxtest/testsuites/NormalLines.java | 1
src/org/gfxtest/testsuites/NormalPolylines.java | 43 ++---------
src/org/gfxtest/testsuites/ScaledLines.java | 62 ++++++----------
diffs (482 lines):
diff -r be2c8cfb62cd -r f42b6b6ff41f TODO
--- a/TODO Thu Jul 22 18:15:34 2010 +0200
+++ b/TODO Tue Aug 03 14:47:06 2010 +0200
@@ -1,12 +1,8 @@ BlankImage.java
-BlankImage.java
-DashedLines.java
-DashedPolylines.java
DashedRectangles.java
FilledEllipses.java
Normal3DRectangles.java
NormalEllipses.java
NormalLines.java
-NormalPolylines.java
ScaledLines.java
ScaledPolylines.java
ScaledRectangles.java
diff -r be2c8cfb62cd -r f42b6b6ff41f src/org/gfxtest/framework/EntityRenderingStyle.java
--- a/src/org/gfxtest/framework/EntityRenderingStyle.java Thu Jul 22 18:15:34 2010 +0200
+++ b/src/org/gfxtest/framework/EntityRenderingStyle.java Tue Aug 03 14:47:06 2010 +0200
@@ -46,17 +46,19 @@ public class EntityRenderingStyle
private int join;
private float width;
private float scale;
+ private float[] dash;
private int arcWidth;
private int arcHeight;
private boolean raised;
private float eccentricity;
- public EntityRenderingStyle(int cap, int join, float width, float scale, int arcWidth, int arcHeight, boolean raised, float eccentricity)
+ public EntityRenderingStyle(int cap, int join, float width, float scale, float dash1, float dash2, int arcWidth, int arcHeight, boolean raised, float eccentricity)
{
this.cap = cap;
this.join = join;
this.width = width;
this.scale = scale;
+ this.dash = new float[] {dash1, dash2};
this.arcWidth = arcWidth;
this.arcHeight = arcHeight;
this.raised = raised;
@@ -83,6 +85,11 @@ public class EntityRenderingStyle
return this.scale;
}
+ public float[] getDash()
+ {
+ return this.dash;
+ }
+
public int getArcWidth()
{
return this.arcWidth;
diff -r be2c8cfb62cd -r f42b6b6ff41f src/org/gfxtest/framework/GfxTest.java
--- a/src/org/gfxtest/framework/GfxTest.java Thu Jul 22 18:15:34 2010 +0200
+++ b/src/org/gfxtest/framework/GfxTest.java Tue Aug 03 14:47:06 2010 +0200
@@ -115,6 +115,16 @@ public abstract class GfxTest
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};
/**
+ * Default pattern.
+ */
+ protected static final float[] DEFAULT_DASH_PATTERN = { 1.0f };
+
+ /**
+ * All dash patterns.
+ */
+ protected static final float[] ALL_DASH_PATTERNS = {1.0f, 2.0f, 8.0f, 16.0f};
+
+ /**
* Write test suite duration to the log file.
*
* @param t1 time when the test suite has been started
@@ -225,6 +235,8 @@ public abstract class GfxTest
int[] joins = changeJoin ? ALL_JOIN_STYLES : DEFAULT_JOIN_STYLE;
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;
for (int cap : caps)
{
@@ -238,13 +250,20 @@ public abstract class GfxTest
{
for (int arcWidth = minArcWidth; arcWidth <= maxArcWidth; arcWidth += ARC_STEP)
{
- /*
- * TODO: add support to various scales and dashes
- */
- EntityRenderingStyle entityRenderingStyle = new EntityRenderingStyle(cap, join, width,
- 1.0f, arcHeight, arcWidth, false, eccentricity);
- performOneTest(configuration, testNumber, entityRenderingStyle);
- testNumber++;
+ 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++;
+ }
+ }
}
}
}
@@ -279,6 +298,8 @@ public abstract class GfxTest
this.log.logSet("cap", entityRenderingStyle.getCap());
this.log.logSet("join", entityRenderingStyle.getJoin());
this.log.logSet("width", entityRenderingStyle.getWidth());
+ float[] dash = entityRenderingStyle.getDash();
+ this.log.logSet("dash", "[" + dash[0] + ", " + dash[1] + "]");
this.log.logSet("arc width", entityRenderingStyle.getArcWidth());
this.log.logSet("arc height", entityRenderingStyle.getArcHeight());
}
diff -r be2c8cfb62cd -r f42b6b6ff41f src/org/gfxtest/testsuites/DashedLines.java
--- a/src/org/gfxtest/testsuites/DashedLines.java Thu Jul 22 18:15:34 2010 +0200
+++ b/src/org/gfxtest/testsuites/DashedLines.java Tue Aug 03 14:47:06 2010 +0200
@@ -41,8 +41,6 @@ package org.gfxtest.testsuites;
package org.gfxtest.testsuites;
import java.awt.*;
-import java.awt.geom.*;
-import java.io.IOException;
import org.gfxtest.framework.*;
import org.gfxtest.framework.annotations.*;
@@ -58,59 +56,34 @@ import org.gfxtest.framework.annotations
@Transformation(Transformations.NONE)
public class DashedLines extends GfxTest
{
- private static final float DEFAULT_SCALE = 20.0f;
- private void drawDashedLine(TestImage image, Graphics2D graphics, float scale, int cap, 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
- BasicStroke.JOIN_ROUND, // 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.drawLine(x1, y1, x2, y2);
-
- graphics.setTransform(new AffineTransform());
- drawCross(graphics, OFFSET, OFFSET, CROSS_SIZE);
- drawCross(graphics, image.getWidth() - OFFSET, image.getHeight() - OFFSET, CROSS_SIZE);
+ graphics.setStroke(new BasicStroke(entityRenderingStyle.getWidth(), entityRenderingStyle.getCap(), entityRenderingStyle.getJoin(), 1.0f, entityRenderingStyle.getDash(), 0.0f));
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ for (int i = 0; i < ANGLES; i++)
+ {
+ Color color = new Color(Color.HSBtoRGB((float)i/ANGLES, 1.0f, 1.0f));
+ graphics.setColor(color);
+ int majorRadius = (xc > yc ? yc : xc) - 20;
+ double angle = 2.0 * i / ANGLES * Math.PI;
+ double cos = Math.cos(angle);
+ double sin = Math.sin(angle);
+ int x1 = xc + (int)(MINOR_RADIUS*cos);
+ int y1 = yc + (int)(MINOR_RADIUS*sin);
+ int x2 = xc + (int)(majorRadius*cos);
+ int y2 = yc + (int)(majorRadius*sin);
+ graphics.drawLine(x1, y1, x2, y2);
+ }
+ drawCross(graphics, xc, yc, CROSS_SIZE);
}
+ @Override
protected void runOtherTests(Configuration configuration)
{
- int[] caps = { BasicStroke.CAP_SQUARE, BasicStroke.CAP_BUTT, BasicStroke.CAP_ROUND };
- int testNumber = 0;
- for (int cap : caps)
- {
- for (float dash1 = 0.25f; dash1 <= 4.0; dash1 *= 2)
- {
- for (float dash2 = 0.25f; dash2 <= 4.0; dash2 *= 2)
- {
- String testName = "test" + testNumber;
- log.logBegin(testName);
- TestImage image = new TestImage(configuration);
- Graphics2D graphics = (Graphics2D) image.getGraphics();
- drawDashedLine(image, graphics, DEFAULT_SCALE, cap, new float[]
- { dash1, dash2 });
- graphics.dispose();
- try
- {
- image.writeImage(configuration, suiteName, testName);
- }
- catch (IOException e)
- {
- e.printStackTrace();
- }
- log.logEnd(testName);
- testNumber++;
- }
- }
- }
+ drawEntityWithVariousStyles(configuration, true, false, true, false, true);
}
public static void main(String[] args)
diff -r be2c8cfb62cd -r f42b6b6ff41f src/org/gfxtest/testsuites/DashedPolylines.java
--- a/src/org/gfxtest/testsuites/DashedPolylines.java Thu Jul 22 18:15:34 2010 +0200
+++ b/src/org/gfxtest/testsuites/DashedPolylines.java Tue Aug 03 14:47:06 2010 +0200
@@ -42,7 +42,6 @@ package org.gfxtest.testsuites;
import java.awt.*;
import java.awt.geom.*;
-import java.io.IOException;
import org.gfxtest.framework.*;
import org.gfxtest.framework.annotations.*;
@@ -58,71 +57,35 @@ import org.gfxtest.framework.annotations
@Transformation(Transformations.NONE)
public class DashedPolylines extends GfxTest
{
- private static final float DEFAULT_SCALE = 20.0f;
- private void drawDashedPolyline(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,
- 0.0f));
- graphics.scale(scale, scale);
- int x1 = (int) (OFFSET / scale);
- int y1 = (int) ((image.getHeight() - OFFSET) / scale);
- int x2 = (int) ((image.getWidth() / 2) / scale);
- int y2 = (int) (OFFSET / scale);
- int x3 = (int) ((image.getWidth() - OFFSET) / scale);
+ graphics.setStroke(new BasicStroke(entityRenderingStyle.getWidth(), entityRenderingStyle.getCap(), entityRenderingStyle.getJoin(), 1.0f, entityRenderingStyle.getDash(), 0.0f));
+
+ int x1 = OFFSET;
+ int y1 = image.getHeight() - OFFSET;
+ int x2 = image.getWidth() / 2;
+ int y2 = OFFSET;
+ int x3 = image.getWidth() - OFFSET;
int y3 = y1;
- GeneralPath polyline = new GeneralPath(GeneralPath.WIND_EVEN_ODD, 3);
+ GeneralPath polyline = new GeneralPath(Path2D.WIND_EVEN_ODD, 3);
polyline.moveTo(x1, y1);
polyline.lineTo(x2, y2);
polyline.lineTo(x3, y3);
graphics.draw(polyline);
- graphics.setTransform(new AffineTransform());
drawCross(graphics, OFFSET, image.getHeight() - OFFSET, CROSS_SIZE);
drawCross(graphics, image.getWidth() / 2, OFFSET, CROSS_SIZE);
drawCross(graphics, image.getWidth() - OFFSET, image.getHeight() - OFFSET, 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();
- drawDashedPolyline(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)
diff -r be2c8cfb62cd -r f42b6b6ff41f src/org/gfxtest/testsuites/NormalLines.java
--- a/src/org/gfxtest/testsuites/NormalLines.java Thu Jul 22 18:15:34 2010 +0200
+++ b/src/org/gfxtest/testsuites/NormalLines.java Tue Aug 03 14:47:06 2010 +0200
@@ -56,7 +56,6 @@ import org.gfxtest.framework.annotations
@Transformation(Transformations.NONE)
public class NormalLines extends GfxTest
{
- protected static final int LINE_MINOR_RADIUS = 50;
@Override
protected void drawEntity(TestImage image, Graphics2D graphics, int testNumber, EntityRenderingStyle entityRenderingStyle)
diff -r be2c8cfb62cd -r f42b6b6ff41f src/org/gfxtest/testsuites/NormalPolylines.java
--- a/src/org/gfxtest/testsuites/NormalPolylines.java Thu Jul 22 18:15:34 2010 +0200
+++ b/src/org/gfxtest/testsuites/NormalPolylines.java Tue Aug 03 14:47:06 2010 +0200
@@ -42,7 +42,7 @@ package org.gfxtest.testsuites;
import java.awt.*;
import java.awt.geom.GeneralPath;
-import java.io.IOException;
+import java.awt.geom.Path2D;
import org.gfxtest.framework.*;
import org.gfxtest.framework.annotations.*;
@@ -59,12 +59,12 @@ public class NormalPolylines extends Gfx
public class NormalPolylines extends GfxTest
{
- private void drawPolyline(TestImage image, Graphics2D graphics, float width, int cap, int join)
+ @Override
+ protected void drawEntity(TestImage image, Graphics2D graphics, int testNumber, EntityRenderingStyle entityRenderingStyle)
{
graphics.setColor(Color.BLACK);
- graphics.setStroke(new BasicStroke(width, // width
- cap, // cap
- join)); // join
+ graphics.setStroke(new BasicStroke(entityRenderingStyle.getWidth(), entityRenderingStyle.getCap(), entityRenderingStyle.getJoin()));
+
int x1 = OFFSET;
int y1 = image.getHeight() - OFFSET;
int x2 = image.getWidth() / 2;
@@ -72,7 +72,7 @@ public class NormalPolylines extends Gfx
int x3 = image.getWidth() - OFFSET;
int y3 = y1;
- GeneralPath polyline = new GeneralPath(GeneralPath.WIND_EVEN_ODD, 3);
+ GeneralPath polyline = new GeneralPath(Path2D.WIND_EVEN_ODD, 3);
polyline.moveTo(x1, y1);
polyline.lineTo(x2, y2);
polyline.lineTo(x3, y3);
@@ -83,37 +83,10 @@ public class NormalPolylines extends Gfx
drawCross(graphics, image.getWidth() - OFFSET, image.getHeight() - OFFSET, CROSS_SIZE);
}
+ @Override
protected void runOtherTests(Configuration configuration)
{
- float[] widths = { 1.0f, 10.0f, 20.0f, 40.0f, 80.0f };
- 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 width : widths)
- {
- String testName = "test" + testNumber;
- log.logBegin(testName);
- TestImage image = new TestImage(configuration);
- Graphics2D graphics = (Graphics2D) image.getGraphics();
- drawPolyline(image, graphics, width, cap, join);
- graphics.dispose();
- try
- {
- image.writeImage(configuration, suiteName, testName);
- }
- catch (IOException e)
- {
- e.printStackTrace();
- }
- log.logEnd(testName);
- testNumber++;
- }
- }
- }
+ drawEntityWithVariousStyles(configuration, true, true, true, false, false);
}
public static void main(String[] args)
diff -r be2c8cfb62cd -r f42b6b6ff41f src/org/gfxtest/testsuites/ScaledLines.java
--- a/src/org/gfxtest/testsuites/ScaledLines.java Thu Jul 22 18:15:34 2010 +0200
+++ b/src/org/gfxtest/testsuites/ScaledLines.java Tue Aug 03 14:47:06 2010 +0200
@@ -42,7 +42,6 @@ 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.*;
@@ -60,51 +59,36 @@ public class ScaledLines extends GfxTest
public class ScaledLines extends GfxTest
{
- private void drawScaledLine(TestImage image, Graphics2D graphics, float scale, int cap)
+ @Override
+ protected void drawEntity(TestImage image, Graphics2D graphics, int testNumber, EntityRenderingStyle entityRenderingStyle)
{
- graphics.setColor(Color.BLACK);
- graphics.setStroke(new BasicStroke(1, // width
- cap, // cap
- BasicStroke.JOIN_ROUND)); // join
- 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.drawLine(x1, y1, x2, y2);
+ graphics.setStroke(new BasicStroke(entityRenderingStyle.getWidth(), entityRenderingStyle.getCap(), entityRenderingStyle.getJoin()));
+ graphics.scale(entityRenderingStyle.getScale(), entityRenderingStyle.getScale());
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ for (int i = 0; i < ANGLES; i++)
+ {
+ Color color = new Color(Color.HSBtoRGB((float)i/ANGLES, 1.0f, 1.0f));
+ graphics.setColor(color);
+ int majorRadius = (xc > yc ? yc : xc) - 20;
+ double angle = 2.0 * i / ANGLES * Math.PI;
+ double cos = Math.cos(angle);
+ double sin = Math.sin(angle);
+ int x1 = xc + (int)(MINOR_RADIUS*cos);
+ int y1 = yc + (int)(MINOR_RADIUS*sin);
+ int x2 = xc + (int)(majorRadius*cos);
+ int y2 = yc + (int)(majorRadius*sin);
+ graphics.drawLine(x1, y1, x2, y2);
+ }
graphics.setTransform(new AffineTransform());
- drawCross(graphics, OFFSET, OFFSET, CROSS_SIZE);
- drawCross(graphics, image.getWidth() - OFFSET, image.getHeight() - OFFSET, CROSS_SIZE);
+ drawCross(graphics, xc, yc, CROSS_SIZE);
}
+ @Override
protected void runOtherTests(Configuration configuration)
{
- float[] scales = { 1.0f, 10.0f, 20.0f, 40.0f, 80.0f };
- int[] caps = { BasicStroke.CAP_SQUARE, BasicStroke.CAP_BUTT, BasicStroke.CAP_ROUND };
- int testNumber = 0;
- for (int cap : caps)
- {
- for (float scale : scales)
- {
- String testName = "test" + testNumber;
- log.logBegin(testName);
- TestImage image = new TestImage(configuration);
- Graphics2D graphics = (Graphics2D) image.getGraphics();
- drawScaledLine(image, graphics, scale, cap);
- graphics.dispose();
- try
- {
- image.writeImage(configuration, suiteName, testName);
- }
- catch (IOException e)
- {
- e.printStackTrace();
- }
- log.logEnd(testName);
- testNumber++;
- }
- }
+ drawEntityWithVariousStyles(configuration, true, false, true, true, false);
}
public static void main(String[] args)
More information about the distro-pkg-dev
mailing list