/hg/gfx-test: 2011-10-03 Pavel Tisnovsky <ptisnovs at redhat.com>
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Oct 3 02:32:25 PDT 2011
changeset ef5a7bb909ec in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=ef5a7bb909ec
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Oct 03 11:34:17 2011 +0200
2011-10-03 Pavel Tisnovsky <ptisnovs at redhat.com>
* Makefile: added new classes to compile, removed no longer
available classes
* src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java:
Added as replacement of CAGOperationsCircleRectangleOps, added more
tests.
* src/org/gfxtest/testsuites/CAGOperationsOnTwoOverlappingCircles.java
: Added as replacement of CAGOperationsOnCircles.java, added
more tests.
* src/org/gfxtest/testsuites/CAGOperationsOnTwoOverlappingRectangles.j
ava: Added as replacement of CAGOperationsOnRectangles.java,
added more tests.
* src/org/gfxtest/testsuites/CAGOperationsOnCircles.java:
* src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java:
* src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java:
Removed
diffstat:
ChangeLog | 15 +
Makefile | 12 +-
src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java | 1486 --------
src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java | 1729 ++++++++++
src/org/gfxtest/testsuites/CAGOperationsOnCircles.java | 1180 ------
src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java | 1191 ------
src/org/gfxtest/testsuites/CAGOperationsOnTwoOverlappingCircles.java | 1070 ++++++
src/org/gfxtest/testsuites/CAGOperationsOnTwoOverlappingRectangles.java | 1070 ++++++
8 files changed, 3890 insertions(+), 3863 deletions(-)
diffs (truncated from 7801 to 500 lines):
diff -r 6cd725fbe450 -r ef5a7bb909ec ChangeLog
--- a/ChangeLog Fri Sep 23 18:22:29 2011 +0200
+++ b/ChangeLog Mon Oct 03 11:34:17 2011 +0200
@@ -1,3 +1,18 @@
+2011-10-03 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * Makefile: added new classes to compile, removed no longer available
+ classes
+ * src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java:
+ Added as replacement of CAGOperationsCircleRectangleOps, added more tests.
+ * src/org/gfxtest/testsuites/CAGOperationsOnTwoOverlappingCircles.java:
+ Added as replacement of CAGOperationsOnCircles.java, added more tests.
+ * src/org/gfxtest/testsuites/CAGOperationsOnTwoOverlappingRectangles.java:
+ Added as replacement of CAGOperationsOnRectangles.java, added more tests.
+ * src/org/gfxtest/testsuites/CAGOperationsOnCircles.java:
+ * src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java:
+ * src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java:
+ Removed
+
2011-09-23 Pavel Tisnovsky <ptisnovs at redhat.com>
* Makefile: added new class to compile
diff -r 6cd725fbe450 -r ef5a7bb909ec Makefile
--- a/Makefile Fri Sep 23 18:22:29 2011 +0200
+++ b/Makefile Mon Oct 03 11:34:17 2011 +0200
@@ -136,9 +136,9 @@
$(CLASSES)/$(TESTSUITE_DIR)/GradientPaint.class \
$(CLASSES)/$(TESTSUITE_DIR)/LinearGradientPaint.class \
$(CLASSES)/$(TESTSUITE_DIR)/RadialGradientPaint.class \
- $(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnCircles.class \
- $(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnRectangles.class \
- $(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsCircleRectangleOps.class
+ $(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnTwoOverlappingCircles.class \
+ $(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnTwoOverlappingRectangles.class \
+ $(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsCircleRectangle.class
COMPARE_RESULTS = \
$(RESULTS)/Areas \
@@ -180,9 +180,9 @@
$(RESULTS)/GradientPaint \
$(RESULTS)/LinearGradientPaint \
$(RESULTS)/RadialGradientPaint \
- $(RESULTS)/CAGOperationsOnCircles \
- $(RESULTS)/CAGOperationsOnRectangles \
- $(RESULTS)/CAGOperationsCircleRectangleOps
+ $(RESULTS)/CAGOperationsOnTwoOverlappingCircles \
+ $(RESULTS)/CAGOperationsOnTwoOverlappingRectangles \
+ $(RESULTS)/CAGOperationsCircleRectangle
# 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 6cd725fbe450 -r ef5a7bb909ec src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java
--- a/src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java Fri Sep 23 18:22:29 2011 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1486 +0,0 @@
-/*
- 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 placed inside a rectangle
- * using union operation.
- *
- * @param image
- * image to which area is to be drawn
- * @return newly created area containing one rectangle
- */
- private Area createAreaFromSmallerCircleInsideRectangleUsingUnionOperator(TestImage image)
- {
- Area area = new Area();
- area.add(createCenteredRectangularArea(image));
- area.add(createSmallerCenteredCircularArea(image));
- return area;
- }
-
- /**
- * Create new area constructed from smaller circle placed inside a rectangle
- * using subtract operation.
- *
- * @param image
- * image to which area is to be drawn
- * @return newly created area containing one rectangle
- */
- private Area createAreaFromSmallerCircleInsideRectangleUsingSubtractOperator(TestImage image)
- {
- Area area = new Area();
- area.add(createCenteredRectangularArea(image));
- area.subtract(createSmallerCenteredCircularArea(image));
- return area;
- }
-
- /**
- * Create new area constructed from smaller circle placed inside a rectangle
- * using inverse subtract operation.
- *
- * @param image
- * image to which area is to be drawn
- * @return newly created area containing one rectangle
- */
- private Area createAreaFromSmallerCircleInsideRectangleUsingInverseSubtractOperator(TestImage image)
- {
- Area area = new Area();
- area.add(createSmallerCenteredCircularArea(image));
- area.subtract(createCenteredRectangularArea(image));
- return area;
- }
-
- /**
- * Create new area constructed from smaller circle placed inside a rectangle
- * using intersect operation.
- *
- * @param image
- * image to which area is to be drawn
- * @return newly created area containing one rectangle
- */
- private Area createAreaFromSmallerCircleInsideRectangleUsingIntersectOperator(TestImage image)
- {
- Area area = new Area();
- area.add(createSmallerCenteredCircularArea(image));
- area.intersect(createCenteredRectangularArea(image));
- return area;
- }
-
- /**
- * Create new area constructed from smaller circle placed inside a rectangle
- * using XOR operation.
- *
- * @param image
- * image to which area is to be drawn
- * @return newly created area containing one rectangle
- */
- private Area createAreaFromSmallerCircleInsideRectangleUsingXorOperator(TestImage image)
- {
- Area area = new Area();
- area.add(createSmallerCenteredCircularArea(image));
- area.exclusiveOr(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
More information about the distro-pkg-dev
mailing list