/hg/gfx-test: Added new test suite containing 7 tests at this mo...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Tue Sep 20 04:49:49 PDT 2011


changeset 829297d71c1d in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=829297d71c1d
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Sep 20 13:51:42 2011 +0200

	Added new test suite containing 7 tests at this moment:
	src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java


diffstat:

 ChangeLog                                                       |    9 +
 Makefile                                                        |    8 +-
 src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java |  443 ++++++++++
 src/org/gfxtest/testsuites/CAGOperationsOnCircles.java          |   94 +-
 src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java       |   94 +-
 5 files changed, 551 insertions(+), 97 deletions(-)

diffs (truncated from 1346 to 500 lines):

diff -r 554c429d77b6 -r 829297d71c1d ChangeLog
--- a/ChangeLog	Mon Sep 19 11:51:26 2011 +0200
+++ b/ChangeLog	Tue Sep 20 13:51:42 2011 +0200
@@ -1,3 +1,12 @@
+2011-09-20  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* Makefile: added new class to compile
+	* src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java:
+	Added new test suite containing 7 tests at this moment.
+	* src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java:
+	* src/org/gfxtest/testsuites/CAGOperationsOnCircles.java:
+	Fixed JavaDoc.
+
 2011-09-19  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/Areas.java:
diff -r 554c429d77b6 -r 829297d71c1d Makefile
--- a/Makefile	Mon Sep 19 11:51:26 2011 +0200
+++ b/Makefile	Tue Sep 20 13:51:42 2011 +0200
@@ -1,6 +1,6 @@
 # Java gfx-test framework
 #
-#    Copyright (C) 2010  Red Hat
+#    Copyright (C) 2010, 2011  Red Hat
 #
 # This file is part of IcedTea.
 #
@@ -136,7 +136,8 @@
 	$(CLASSES)/$(TESTSUITE_DIR)/LinearGradientPaint.class \
 	$(CLASSES)/$(TESTSUITE_DIR)/RadialGradientPaint.class \
 	$(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnCircles.class \
-	$(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnRectangles.class
+	$(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnRectangles.class \
+	$(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsCircleRectangleOps.class
 
 COMPARE_RESULTS = \
 	$(RESULTS)/Areas \
@@ -179,7 +180,8 @@
 	$(RESULTS)/LinearGradientPaint \
 	$(RESULTS)/RadialGradientPaint \
 	$(RESULTS)/CAGOperationsOnCircles \
-	$(RESULTS)/CAGOperationsOnRectangles
+	$(RESULTS)/CAGOperationsOnRectangles \
+	$(RESULTS)/CAGOperationsCircleRectangleOps
 
 # targets for all test suites
 TESTSUITES = $(shell ls -1 src/org/gfxtest/testsuites | sed -n -e 's/\([A-Za-z0-9]*\)\.java/\1/p')
diff -r 554c429d77b6 -r 829297d71c1d src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java	Tue Sep 20 13:51:42 2011 +0200
@@ -0,0 +1,443 @@
+/*
+  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.Ellipse2D;
+import java.awt.geom.Rectangle2D;
+
+
+
+import org.gfxtest.framework.CommonRenderingStyles;
+import org.gfxtest.framework.GfxTest;
+import org.gfxtest.framework.TestImage;
+import org.gfxtest.framework.TestResult;
+
+
+
+/**
+ * This test checks the process of creating and rendering new geometric shapes
+ * by performing boolean operations on existing ones. This process is often
+ * called Constructive area geometry (CAG). Various cases are checked by this
+ * test suite.
+ * 
+ * @author Pavel Tisnovsky
+ */
+public class CAGOperationsCircleRectangleOps extends GfxTest
+{
+
+    /**
+     * Compute size of the rectangle or circle from the position of center point
+     * in an image.
+     * 
+     * @param xc
+     *            x-coordinate of the center of the test image.
+     * @param y
+     *            y-coordinate of the center of the test image.
+     * @return size of the rectangle
+     */
+    private int computeSize(int xc, int yc)
+    {
+        return (xc > yc ? yc : xc) >> 1;
+    }
+
+    /**
+     * Create rectangular area.
+     * 
+     * @param xc
+     *            the X coordinate of the center of rectangle
+     * @param yc
+     *            the Y coordinate of the center of rectangle
+     * @param size
+     *            of rectangle
+     * @return newly created area containing one rectangle
+     */
+    private Area createRectangularArea(int xc, int yc, int size)
+    {
+        Rectangle2D rectangle = new Rectangle2D.Double(xc - size, yc - size, size << 1, size << 1);
+        return new Area(rectangle);
+    }
+
+    /**
+     * Create circular area.
+     * 
+     * @param xc
+     *            the X coordinate of the center of circle
+     * @param yc
+     *            the Y coordinate of the center of circle
+     * @param radius
+     *            radius of circle
+     * @return newly created area containing one circle
+     */
+    private Area createCircularArea(int xc, int yc, int radius)
+    {
+        Ellipse2D circle = new Ellipse2D.Double(xc - radius, yc - radius, radius << 1, radius << 1);
+        return new Area(circle);
+    }
+
+    /**
+     * Create area composed of only one rectangle. This rectangle is placed on
+     * the center of the image.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @return newly created area containing one rectangle
+     */
+    private Area createCenteredRectangularArea(TestImage image)
+    {
+        // compute center of the image
+        int xc = image.getCenterX();
+        int yc = image.getCenterY();
+        // compute size of the rectangle
+        int size = 3 * computeSize(xc, yc) / 2 - 10;
+        // it's better to align rectangle sides with the grid
+        return createRectangularArea(xc, yc, size);
+    }
+
+    /**
+     * Create area composed of only one circle. This circle is placed on
+     * the center of the image and its radius is bigger than the length
+     * of rectangle side(s).
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @return newly created area containing one circle
+     */
+    private Area createBiggerCenteredCircularArea(TestImage image)
+    {
+        // compute center of the image
+        int xc = image.getCenterX();
+        int yc = image.getCenterY();
+        // compute size of the circle
+        int size = computeSize(xc, yc) * 5 / 3;
+        return createCircularArea(xc, yc, size);
+    }
+
+    /**
+     * Create area composed of only one circle. This circle is placed on
+     * the center of the image and its radius is smaller than the length
+     * of rectangle side(s).
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @return newly created area containing one circle
+     */
+    private Area createSmallerCenteredCircularArea(TestImage image)
+    {
+        // compute center of the image
+        int xc = image.getCenterX();
+        int yc = image.getCenterY();
+        // compute size of the circle
+        int size = computeSize(xc, yc);
+        return createCircularArea(xc, yc, size);
+    }
+
+    /**
+     * Create new area constructed from bigger circle and rectangle using union
+     * operation.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @return newly created area
+     */
+    private Area createAreaFromBiggerCircleAndRectangleUsingUnionOperator(TestImage image)
+    {
+        Area area = new Area();
+        area.add(createBiggerCenteredCircularArea(image));
+        area.add(createCenteredRectangularArea(image));
+        return area;
+    }
+
+    /**
+     * Create new area constructed from bigger circle and rectangle using intersect
+     * operation.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @return newly created area
+     */
+    private Area createAreaFromBiggerCircleAndRectangleUsingIntersectOperator(TestImage image)
+    {
+        Area area = new Area();
+        area.add(createBiggerCenteredCircularArea(image));
+        area.add(createCenteredRectangularArea(image));
+        return area;
+    }
+
+    /**
+     * Create new area constructed from bigger circle and rectangle using subtract
+     * operation.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @return newly created area
+     */
+    private Area createAreaFromBiggerCircleAndRectangleUsingSubtractOperator(TestImage image)
+    {
+        Area area = new Area();
+        area.add(createBiggerCenteredCircularArea(image));
+        area.subtract(createCenteredRectangularArea(image));
+        return area;
+    }
+
+    /**
+     * Create new area constructed from bigger circle and rectangle using
+     * inverse subtract operation.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @return newly created area
+     */
+    private Area createAreaFromBiggerCircleAndRectangleUsingInverseSubtractOperator(TestImage image)
+    {
+        Area area = new Area();
+        area.add(createCenteredRectangularArea(image));
+        area.subtract(createBiggerCenteredCircularArea(image));
+        return area;
+    }
+
+    /**
+     * Create new area constructed from bigger circle and rectangle using Xor
+     * operation.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @return newly created area
+     */
+    private Area createAreaFromBiggerCircleAndRectangleUsingXorOperator(TestImage image)
+    {
+        Area area = new Area();
+        area.add(createBiggerCenteredCircularArea(image));
+        area.exclusiveOr(createCenteredRectangularArea(image));
+        return area;
+    }
+
+    /**
+     * Create new area constructed from smaller circle and rectangle using union
+     * operation.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @return newly created area containing one rectangle
+     */
+    private Area createAreaFromSmallerCircleAndRectangleUsingUnionOperator(TestImage image)
+    {
+        Area area = new Area();
+        area.add(createSmallerCenteredCircularArea(image));
+        area.add(createCenteredRectangularArea(image));
+        return area;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from circle and rectangle using union operator. The shape is
+     * rendered using stroke.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBigCircleRectangleUnionStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // create area using union operator
+        Area area = createAreaFromBiggerCircleAndRectangleUsingUnionOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from circle and rectangle using intersect operator. The shape
+     * is rendered using stroke.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBigCircleRectangleIntersectStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // create area using intersect operator
+        Area area = createAreaFromBiggerCircleAndRectangleUsingIntersectOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from circle and rectangle using subtract operator. The shape
+     * is rendered using stroke.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBigCircleRectangleSubtractStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // create area using subtract operator
+        Area area = createAreaFromBiggerCircleAndRectangleUsingSubtractOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from circle and rectangle using inverse subtract operator.
+     * The shape is rendered using stroke.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBigCircleRectangleInverseSubtractStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // create area using inverse subtract operator
+        Area area = createAreaFromBiggerCircleAndRectangleUsingInverseSubtractOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from circle and rectangle using Xor operator.
+     * The shape is rendered using stroke.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBigCircleRectangleXorStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // create area using XOR operator
+        Area area = createAreaFromBiggerCircleAndRectangleUsingXorOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from circle and rectangle using union operator. The shape is
+     * rendered using color fill.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBigCircleRectangleUnionColorPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics2d);
+        // create area using union operator
+        Area area = createAreaFromBiggerCircleAndRectangleUsingUnionOperator(image);
+        // fill the area
+        graphics2d.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from circle and rectangle using union operator. The shape is
+     * rendered using color fill.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBigCircleRectangleUnionRadialGradientPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set radial gradient fill
+        CommonRenderingStyles.setRadialGradientFill(image, graphics2d);
+        // create area using union operator
+        Area area = createAreaFromBiggerCircleAndRectangleUsingUnionOperator(image);
+        // fill the area
+        graphics2d.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /*
+    circleinsidecircle
+    rectangleinsiderectangle
+    circleinsiderectangle
+    rectangleinsiderectangle
+    tworectangleswithcommonedge
+    twocircleswithcommonpoint
+    */
+    
+    /**
+     * Entry point to the test suite.
+     *
+     * @param args not used in this case
+     */
+    public static void main(String[] args)
+    {
+        new CAGOperationsCircleRectangleOps().runTestSuite(args);
+    }
+
+}
diff -r 554c429d77b6 -r 829297d71c1d src/org/gfxtest/testsuites/CAGOperationsOnCircles.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnCircles.java	Mon Sep 19 11:51:26 2011 +0200
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnCircles.java	Tue Sep 20 13:51:42 2011 +0200
@@ -103,7 +103,7 @@
      * left side of the image.
      * 



More information about the distro-pkg-dev mailing list