/hg/gfx-test: New test suite containing (ATM) four test cases
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Sep 14 04:22:09 PDT 2011
changeset 13ab5ae3881b in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=13ab5ae3881b
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Sep 14 13:24:03 2011 +0200
New test suite containing (ATM) four test cases
src/org/gfxtest/testsuites/Areas.java. Added new graphics primitive
type to a
src/org/gfxtest/framework/annotations/GraphicsPrimitives.java. Added
annotation for graphics primitive used for rendering
src/org/gfxtest/testsuites/CAGOperationsOnCircles.java. Added
annotation for graphics primitive used for rendering
src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java.
diffstat:
ChangeLog | 14 +
Makefile | 2 +
src/org/gfxtest/framework/annotations/GraphicsPrimitives.java | 5 +
src/org/gfxtest/testsuites/Areas.java | 347 ++++++++++
src/org/gfxtest/testsuites/CAGOperationsOnCircles.java | 1 +
src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java | 1 +
6 files changed, 370 insertions(+), 0 deletions(-)
diffs (426 lines):
diff -r 3e4f4c420eba -r 13ab5ae3881b ChangeLog
--- a/ChangeLog Tue Sep 13 15:13:33 2011 +0200
+++ b/ChangeLog Wed Sep 14 13:24:03 2011 +0200
@@ -1,3 +1,17 @@
+2011-09-14 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * Makefile: added new class to compile
+ * src/org/gfxtest/testsuites/Areas.java:
+ New test suite containing (ATM) four test cases.
+ * src/org/gfxtest/framework/annotations/GraphicsPrimitives.java:
+ Added new graphics primitive type.
+ * src/org/gfxtest/testsuites/CAGOperationsOnCircles.java:
+ Added annotation for graphics primitive used for rendering
+ (@GraphicsPrimitive(GraphicsPrimitives.AREA).
+ * src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java:
+ Added annotation for graphics primitive used for rendering
+ (@GraphicsPrimitive(GraphicsPrimitives.AREA).
+
2011-09-13 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java:
diff -r 3e4f4c420eba -r 13ab5ae3881b Makefile
--- a/Makefile Tue Sep 13 15:13:33 2011 +0200
+++ b/Makefile Wed Sep 14 13:24:03 2011 +0200
@@ -96,6 +96,7 @@
$(CLASSES)/$(HARNESS)/MainWindow.class
TESTSUITE_CLASSES = \
+ $(CLASSES)/$(TESTSUITE_DIR)/Areas.class \
$(CLASSES)/$(TESTSUITE_DIR)/AALines.class \
$(CLASSES)/$(TESTSUITE_DIR)/BlankImage.class \
$(CLASSES)/$(TESTSUITE_DIR)/ColorPaint.class \
@@ -138,6 +139,7 @@
$(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnRectangles.class
COMPARE_RESULTS = \
+ $(RESULTS)/Areas \
$(RESULTS)/AALines \
$(RESULTS)/BlankImage \
$(RESULTS)/ColorPaint \
diff -r 3e4f4c420eba -r 13ab5ae3881b src/org/gfxtest/framework/annotations/GraphicsPrimitives.java
--- a/src/org/gfxtest/framework/annotations/GraphicsPrimitives.java Tue Sep 13 15:13:33 2011 +0200
+++ b/src/org/gfxtest/framework/annotations/GraphicsPrimitives.java Wed Sep 14 13:24:03 2011 +0200
@@ -115,4 +115,9 @@
* Generic path consisting of line segments, quadratic curves and cubic curves.
*/
PATH,
+
+ /**
+ * Generic area, ie. closed shape.
+ */
+ AREA,
}
diff -r 3e4f4c420eba -r 13ab5ae3881b src/org/gfxtest/testsuites/Areas.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/testsuites/Areas.java Wed Sep 14 13:24:03 2011 +0200
@@ -0,0 +1,347 @@
+/*
+ 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.Graphics2D;
+import java.awt.geom.Area;
+import java.awt.geom.CubicCurve2D;
+import java.awt.geom.QuadCurve2D;
+
+
+
+import org.gfxtest.framework.*;
+import org.gfxtest.framework.annotations.*;
+
+
+
+/**
+ * This test checks the process of creating and rendering new geometric shapes
+ * represented by an Area class.
+ *
+ * @author Pavel Tisnovsky
+ */
+ at TestType(TestTypes.RENDER_TEST)
+ at GraphicsPrimitive(GraphicsPrimitives.AREA)
+ at RenderStyle(RenderStyles.FILL)
+ at Transformation(Transformations.NONE)
+ at Zoom(1)
+public class Areas extends GfxTest
+{
+ /**
+ * Default Y offset of curve end points.
+ */
+ private static final int DEFAULT_Y_OFFSET = 40;
+
+ /**
+ * Draw crosses at the both end points and control point of quadratic curve.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics
+ * graphics canvas
+ */
+ private void drawCrossesAtQuadraticCurveControlPoints(TestImage image, Graphics2D graphics)
+ {
+ // calculate image dimensions
+ int width = image.getWidth();
+ int height = image.getHeight();
+
+ // get curve coordinates
+ int x1 = computeX1forQuadraticCurve(width);
+ int y1 = computeY1forQuadraticCurve();
+ int x2 = computeX2forQuadraticCurve(width);
+ int y2 = computeY2forQuadraticCurve(height);
+ int x3 = computeX3forQuadraticCurve(width);
+ int y3 = computeY3forQuadraticCurve();
+
+ // draw all three crosses
+ drawCross(graphics, x1, y1);
+ drawCross(graphics, x2, y2);
+ drawCross(graphics, x3, y3);
+ }
+
+ /**
+ * Draw crosses at the both end points and both control point of cubic
+ * curve.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics
+ * graphics canvas
+ */
+ private void drawCrossesAtCubicCurveControlPoints(TestImage image, Graphics2D graphics)
+ {
+ // construct point set which consists of all four curve control points
+ CubicCurvePointSet pointSet = new CubicCurvePointSet(image);
+
+ // fill in arrays containing coordinates for all cubic curve control points
+ int[] x = pointSet.getXPointArray();
+ int[] y = pointSet.getYPointArray();
+
+ // draw all four crosses
+ for (int i = 0; i < 4; i++)
+ {
+ drawCross(graphics, x[i], y[i]);
+ }
+ }
+
+ /**
+ * Create area from the open quadratic curve.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return area created from open quadratic curve.
+ */
+ private Area createAreaFromQuadraticCurve(TestImage image)
+ {
+ // calculate image dimensions
+ int width = image.getWidth();
+ int height = image.getHeight();
+
+ // get curve coordinates
+ int x1 = computeX1forQuadraticCurve(width);
+ int y1 = computeY1forQuadraticCurve();
+ int x2 = computeX2forQuadraticCurve(width);
+ int y2 = computeY2forQuadraticCurve(height);
+ int x3 = computeX3forQuadraticCurve(width);
+ int y3 = computeY3forQuadraticCurve();
+
+ // create open quadratic curve
+ QuadCurve2D curve = new QuadCurve2D.Double(x1, y1, x2, y2, x3, y3);
+ return new Area(curve);
+ }
+
+ /**
+ * Create area from the open cubic curve.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return area created from open cubic curve.
+ */
+ private Area createAreaFromCubicCurve(TestImage image)
+ {
+ // construct point set which consists of all four curve control points
+ CubicCurvePointSet pointSet = new CubicCurvePointSet(image);
+
+ // fill in arrays containing coordinates for all cubic curve control points
+ int[] x = pointSet.getXPointArray();
+ int[] y = pointSet.getYPointArray();
+
+ // create open cubic curve
+ CubicCurve2D curve = new CubicCurve2D.Double();
+ curve.setCurve(x[0], y[0], x[1], y[1], x[2], y[2], x[3], y[3]);
+ return new Area(curve);
+ }
+
+ /**
+ * Compute X coordinate of first curve end point.
+ *
+ * @param width
+ * canvas width
+ * @return X coordinate of first curve end point.
+ */
+ private int computeX1forQuadraticCurve(int width)
+ {
+ return width >> 2;
+ }
+
+ /**
+ * Compute X coordinate of curve control point.
+ *
+ * @param width
+ * canvas width
+ * @return X coordinate of curve control point.
+ */
+ private int computeX2forQuadraticCurve(int width)
+ {
+ return width >> 1;
+ }
+
+ /**
+ * Compute X coordinate of second curve end point.
+ *
+ * @param width
+ * canvas width
+ * @return X coordinate of second curve end point.
+ */
+ private int computeX3forQuadraticCurve(int width)
+ {
+ return width * 3 / 4;
+ }
+
+ /**
+ * Compute Y coordinate of first curve end point.
+ *
+ * @return Y coordinate of first curve end point.
+ */
+ private int computeY1forQuadraticCurve()
+ {
+ return DEFAULT_Y_OFFSET;
+ }
+
+ /**
+ * Compute Y coordinate of curve control point.
+ *
+ * @param height
+ * canvas height
+ * @return Y coordinate of curve control point.
+ */
+ private int computeY2forQuadraticCurve(int height)
+ {
+ return height - DEFAULT_Y_OFFSET;
+ }
+
+ /**
+ * Compute Y coordinate of second curve end point.
+ *
+ * @return Y coordinate of second curve end point.
+ */
+ private int computeY3forQuadraticCurve()
+ {
+ return DEFAULT_Y_OFFSET;
+ }
+
+ /**
+ * Test the result of creating area using an opened quadratic curve.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testQuadraticCurveStrokePaint(TestImage image, Graphics2D graphics)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics);
+ // create area from open quadratic curve
+ Area area = createAreaFromQuadraticCurve(image);
+ // draw the area
+ graphics.draw(area);
+ // draw crosses at control points
+ drawCrossesAtQuadraticCurveControlPoints(image, graphics);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test the result of creating area using an opened quadratic curve.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testQuadraticCurveColorPaint(TestImage image, Graphics2D graphics)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics);
+ // set fill color
+ CommonRenderingStyles.setFillColor(graphics);
+ // create area from open quadratic curve
+ Area area = createAreaFromQuadraticCurve(image);
+ // draw the area
+ graphics.fill(area);
+ // draw crosses at control points
+ drawCrossesAtQuadraticCurveControlPoints(image, graphics);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test the result of creating area using an opened cubic curve.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testCubicCurveStrokePaint(TestImage image, Graphics2D graphics)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics);
+ // create area from open cubic curve
+ Area area = createAreaFromCubicCurve(image);
+ // draw the area
+ graphics.draw(area);
+ // draw crosses at control points
+ drawCrossesAtCubicCurveControlPoints(image, graphics);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test the result of creating area using an opened cubic curve.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testCubicCurveColorPaint(TestImage image, Graphics2D graphics)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics);
+ // set fill color
+ CommonRenderingStyles.setFillColor(graphics);
+ // create area from open cubic curve
+ Area area = createAreaFromCubicCurve(image);
+ // draw the area
+ graphics.fill(area);
+ // draw crosses at control points
+ drawCrossesAtCubicCurveControlPoints(image, graphics);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Entry point to the test suite.
+ *
+ * @param args
+ * not used in this case
+ */
+ public static void main(String[] args)
+ {
+ new Areas().runTestSuite(args);
+ }
+
+}
diff -r 3e4f4c420eba -r 13ab5ae3881b src/org/gfxtest/testsuites/CAGOperationsOnCircles.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnCircles.java Tue Sep 13 15:13:33 2011 +0200
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnCircles.java Wed Sep 14 13:24:03 2011 +0200
@@ -60,6 +60,7 @@
* @author Pavel Tisnovsky
*/
@TestType(TestTypes.RENDER_TEST)
+ at GraphicsPrimitive(GraphicsPrimitives.AREA)
@RenderStyle(RenderStyles.FILL)
@Transformation(Transformations.NONE)
@Zoom(1)
diff -r 3e4f4c420eba -r 13ab5ae3881b src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java Tue Sep 13 15:13:33 2011 +0200
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java Wed Sep 14 13:24:03 2011 +0200
@@ -62,6 +62,7 @@
* @author Pavel Tisnovsky
*/
@TestType(TestTypes.RENDER_TEST)
+ at GraphicsPrimitive(GraphicsPrimitives.AREA)
@RenderStyle(RenderStyles.FILL)
@Transformation(Transformations.NONE)
@Zoom(1)
More information about the distro-pkg-dev
mailing list