/hg/gfx-test: Created new test suite containing test using Path2...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Jul 29 04:51:48 PDT 2011
changeset 4b4898a531dc in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=4b4898a531dc
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Jul 29 13:53:28 2011 +0200
Created new test suite containing test using Path2D class for
rendering lines.
diffstat:
ChangeLog | 5 +
Makefile | 2 +
src/org/gfxtest/framework/ColorPalette.java | 82 +
src/org/gfxtest/framework/annotations/GraphicsPrimitives.java | 5 +
src/org/gfxtest/testsuites/PathsFromLines.java | 668 ++++++++++
5 files changed, 762 insertions(+), 0 deletions(-)
diffs (truncated from 802 to 500 lines):
diff -r f09f02f3af4f -r 4b4898a531dc ChangeLog
--- a/ChangeLog Thu Jul 28 16:43:52 2011 +0200
+++ b/ChangeLog Fri Jul 29 13:53:28 2011 +0200
@@ -1,3 +1,8 @@
+2011-07-29 Pavel Tisnovsky <ptisnovs at redhat.com>
+ * Makefile: added new class to compile & run: PathsFromLines.java
+ * src/org/gfxtest/testsuites/PathsFromLines.java: created new test
+ suite containing test using Path2D class for rendering lines.
+
2011-07-28 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/NormalLines.java: added new tests
diff -r f09f02f3af4f -r 4b4898a531dc Makefile
--- a/Makefile Thu Jul 28 16:43:52 2011 +0200
+++ b/Makefile Fri Jul 29 13:53:28 2011 +0200
@@ -125,6 +125,7 @@
$(CLASSES)/$(TESTSUITE_DIR)/DashedPolygons.class \
$(CLASSES)/$(TESTSUITE_DIR)/DashedRectangles.class \
$(CLASSES)/$(TESTSUITE_DIR)/DashedRoundRectangles.class \
+ $(CLASSES)/$(TESTSUITE_DIR)/PathsFromLines.class \
$(CLASSES)/$(TESTSUITE_DIR)/SpecialCases.class
COMPARE_RESULTS = \
@@ -159,6 +160,7 @@
$(RESULTS)/DashedPolygons \
$(RESULTS)/DashedRectangles \
$(RESULTS)/DashedRoundRectangles \
+ $(RESULTS)/PathsFromLines \
$(RESULTS)/SpecialCases
# targets for all test suites
diff -r f09f02f3af4f -r 4b4898a531dc src/org/gfxtest/framework/ColorPalette.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/framework/ColorPalette.java Fri Jul 29 13:53:28 2011 +0200
@@ -0,0 +1,82 @@
+/*
+ Java gfx-test framework
+
+ Copyright (C) 2010, 2011 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.framework;
+
+import java.awt.Color;
+
+/**
+ * Color palette used by various tests.
+ *
+ * @author Pavel Tisnovsky
+ */
+public class ColorPalette
+{
+ /**
+ * Small test 12-color palette
+ */
+ private static Color[] colors = new Color[]
+ {
+ Color.BLACK,
+ Color.BLUE,
+ Color.CYAN,
+ Color.GREEN,
+ Color.ORANGE,
+ Color.RED,
+ Color.YELLOW,
+ Color.MAGENTA,
+ Color.PINK,
+ Color.LIGHT_GRAY,
+ Color.GRAY,
+ Color.DARK_GRAY
+ };
+
+ /**
+ * Return color for the specified position in a color palette.
+ *
+ * @param color
+ * color index
+ * @return selected color
+ */
+ public static Color getColor(int color)
+ {
+ return ColorPalette.colors[color % colors.length];
+ }
+}
diff -r f09f02f3af4f -r 4b4898a531dc src/org/gfxtest/framework/annotations/GraphicsPrimitives.java
--- a/src/org/gfxtest/framework/annotations/GraphicsPrimitives.java Thu Jul 28 16:43:52 2011 +0200
+++ b/src/org/gfxtest/framework/annotations/GraphicsPrimitives.java Fri Jul 29 13:53:28 2011 +0200
@@ -110,4 +110,9 @@
* Cubic parametric curve segment in (x, y) coordinate space.
*/
CUBIC_CURVE,
+
+ /**
+ * Generic path consisting of line segments, quadratic curves and cubic curves.
+ */
+ PATH,
}
diff -r f09f02f3af4f -r 4b4898a531dc src/org/gfxtest/testsuites/PathsFromLines.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/testsuites/PathsFromLines.java Fri Jul 29 13:53:28 2011 +0200
@@ -0,0 +1,668 @@
+/*
+ Java gfx-test framework
+
+ Copyright (C) 2010, 2011 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.BasicStroke;
+import java.awt.Color;
+import java.awt.Graphics2D;
+import java.awt.geom.Path2D;
+
+import org.gfxtest.framework.*;
+import org.gfxtest.framework.annotations.*;
+
+
+
+/**
+ * These tests renders various shapes using Path2D class.
+ *
+ * @author Pavel Tisnovsky
+ */
+ at TestType(TestTypes.RENDER_TEST)
+ at GraphicsPrimitive(GraphicsPrimitives.PATH)
+ at RenderStyle(RenderStyles.NORMAL)
+ at Transformation(Transformations.NONE)
+ at Zoom(1)
+public class PathsFromLines extends GfxTest
+{
+
+ /**
+ * Width of border where lines are not drawn
+ */
+ private static final int BORDER_WIDTH = 30;
+
+ /**
+ * Step used for drawing sequence of horizontal and/or vertical lines
+ */
+ private static final int STEP = 20;
+
+ /**
+ * This method creates Path2D consisting of just one line.
+ *
+ * @param x1
+ * the first point's x coordinate.
+ * @param y1
+ * the first point's y coordinate.
+ * @param x2
+ * the second point's x coordinate.
+ * @param y2
+ * the second point's y coordinate.
+ * @return created Path2D object
+ */
+ private static Path2D createLinePath(int x1, int y1, int x2, int y2)
+ {
+ Path2D path = new Path2D.Float();
+ path.moveTo(x1, y1);
+ path.lineTo(x2, y2);
+ return path;
+ }
+
+ /**
+ * This method creates horizontal Path2D consisting of just one line.
+ *
+ * @param y
+ * both end point's y coordinate
+ * @param width
+ * line width (not including borders)
+ * @return created Path2D object
+ */
+ private static Path2D createHorizontalLinePath(int y, int width)
+ {
+ return createLinePath(BORDER_WIDTH, y, width - BORDER_WIDTH, y);
+ }
+
+ /**
+ * This method creates vertical Path2D consisting of just one line.
+ *
+ * @param x
+ * both end point's x coordinate
+ * @param height
+ * line height (not including borders)
+ * @return created Path2D object
+ */
+ private static Path2D createVerticalLinePath(int x, int height)
+ {
+ return createLinePath(x, BORDER_WIDTH, x, height - BORDER_WIDTH);
+ }
+
+ /**
+ * Computes color for line drawn by different angle
+ *
+ * @param index
+ * counter
+ * @return color computed for a given index
+ */
+ private Color computeColorForSlopedLine(int index)
+ {
+ return new Color(Color.HSBtoRGB((float) index / ANGLES, 1.0f, 1.0f));
+ }
+
+ /**
+ * This method created sloped line using Path2D class.
+ *
+ * @param xc
+ * x-coordinate of center of test image
+ * @param yc
+ * y-coordinate of center of test image
+ * @param index
+ * counter
+ * @return new sloped line represented by an instance of Path2D
+ */
+ private Path2D createSlopedLine(int xc, int yc, int index)
+ {
+ int majorRadius = (xc > yc ? yc : xc) - 20;
+ double angle = 2.0 * index / ANGLES * Math.PI;
+ double cos = Math.cos(angle);
+ double sin = Math.sin(angle);
+
+ // calculate line end points
+ 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);
+
+ // create new path
+ return createLinePath(x1, y1, x2, y2);
+ }
+
+ /**
+ * Draw color wheel using 'ANGLES' lines
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ */
+ private void drawColorWheel(TestImage image, Graphics2D graphics)
+ {
+ // compute center of the image
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ for (int i = 0; i < ANGLES; i++)
+ {
+ // set line color
+ graphics.setColor(computeColorForSlopedLine(i));
+
+ // create the shape
+ Path2D path = createSlopedLine(xc, yc, i);
+
+ // draw the shape
+ graphics.draw(path);
+ }
+ }
+
+ /**
+ * Test basic behavior of drawing line using Path2D.Float()
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testDrawLineF1(TestImage image, Graphics2D graphics)
+ {
+ // set drawing color
+ graphics.setColor(Color.BLACK);
+
+ // create new path
+ Path2D path = createLinePath(BORDER_WIDTH, BORDER_WIDTH, image.getWidth() - BORDER_WIDTH, image.getHeight() - BORDER_WIDTH);
+
+ // draw the shape
+ graphics.draw(path);
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Draw line using various angles and various colors.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ */
+ public TestResult testDrawLineAtAngles1(TestImage image, Graphics2D graphics)
+ {
+ // set drawing color
+ graphics.setColor(Color.BLACK);
+
+ drawColorWheel(image, graphics);
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Draw line using various angles and various colors and wider stroke.
+ * Line end points are set to default value.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ */
+ public TestResult testDrawLineAtAngles2(TestImage image, Graphics2D graphics)
+ {
+ // set drawing color
+ graphics.setColor(Color.BLACK);
+
+ // set stroke
+ graphics.setStroke(new BasicStroke(5));
+ drawColorWheel(image, graphics);
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Draw line using various angles and various colors and wider stroke.
+ * Line end points are set to CAP_BUTT.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ */
+ public TestResult testDrawLineAtAngles3(TestImage image, Graphics2D graphics)
+ {
+ // set drawing color
+ graphics.setColor(Color.BLACK);
+
+ // set stroke
+ graphics.setStroke(new BasicStroke(5, BasicStroke.CAP_BUTT, BasicStroke.JOIN_BEVEL));
+ drawColorWheel(image, graphics);
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Draw line using various angles and various colors and wider stroke.
+ * Line end points are set to CAP_ROUND.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ */
+ public TestResult testDrawLineAtAngles4(TestImage image, Graphics2D graphics)
+ {
+ // set drawing color
+ graphics.setColor(Color.BLACK);
+
+ // set stroke
+ graphics.setStroke(new BasicStroke(5, BasicStroke.CAP_ROUND, BasicStroke.JOIN_BEVEL));
+ drawColorWheel(image, graphics);
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Draw line using various angles and various colors and wider stroke.
+ * Line end points are set to CAP_SQUARE.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ */
+ public TestResult testDrawLineAtAngles5(TestImage image, Graphics2D graphics)
+ {
+ // set drawing color
+ graphics.setColor(Color.BLACK);
+
+ // set stroke
+ graphics.setStroke(new BasicStroke(5, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_BEVEL));
+ drawColorWheel(image, graphics);
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test basic behavior of drawing vertical lines using Path2D.Float(). Lines
+ * are drawn using various colors.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testDrawLineVert1(TestImage image, Graphics2D graphics)
+ {
+ int colorIndex = 0;
+ for (int x = BORDER_WIDTH; x < image.getWidth() - BORDER_WIDTH; x += STEP)
+ {
+ // set drawing color
+ graphics.setColor(ColorPalette.getColor(colorIndex++));
+
+ // create new path
+ Path2D path = createVerticalLinePath(x, image.getHeight());
+
+ // draw the shape
+ graphics.draw(path);
+ }
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test basic behavior of drawing vertical lines using Path2D.Float(). Lines
+ * are drawn using various stroke width. Lines end points are set to default
+ * values.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testDrawLineVert2(TestImage image, Graphics2D graphics)
+ {
+ // set drawing color
+ graphics.setColor(Color.BLACK);
+ float strokeWidth = 0;
More information about the distro-pkg-dev
mailing list