/hg/gfx-test: Six new tests added into CAGOperationsOnCircleAndR...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Mon Nov 18 00:25:22 PST 2013


changeset 6e731294160c in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=6e731294160c
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Nov 18 09:28:28 2013 +0100

	Six new tests added into CAGOperationsOnCircleAndRectangle test suite.


diffstat:

 ChangeLog                                                         |    5 +
 src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java |  138 ++++++++++
 2 files changed, 143 insertions(+), 0 deletions(-)

diffs (160 lines):

diff -r 7a673557b373 -r 6e731294160c ChangeLog
--- a/ChangeLog	Fri Nov 15 10:20:16 2013 +0100
+++ b/ChangeLog	Mon Nov 18 09:28:28 2013 +0100
@@ -1,3 +1,8 @@
+2013-11-18  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java:
+	Six new tests added into CAGOperationsOnCircleAndRectangle test suite.
+
 2013-11-15  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java:
diff -r 7a673557b373 -r 6e731294160c src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java	Fri Nov 15 10:20:16 2013 +0100
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java	Mon Nov 18 09:28:28 2013 +0100
@@ -2314,6 +2314,144 @@
     }
 
     /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from a circle inside a 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 testOverlappingCircleAndRectangleUnionColorPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics2d);
+        // create area using union operator
+        Area area = CommonCAGOperations.createAreaFromOverlappingCircleAndRectangleUsingUnionOperator(image);
+        // fill the area
+        graphics2d.fill(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from a circle inside a rectangle using subtract 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 testOverlappingCircleAndRectangleSubtractColorPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics2d);
+        // create area using subtract operator
+        Area area = CommonCAGOperations.createAreaFromOverlappingCircleAndRectangleUsingSubtractOperator(image);
+        // fill the area
+        graphics2d.fill(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from a circle inside a rectangle using inverse subtract 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 testOverlappingCircleAndRectangleInverseSubtractColorPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics2d);
+        // create area using inverse subtract operator
+        Area area = CommonCAGOperations.createAreaFromOverlappingCircleAndRectangleUsingInverseSubtractOperator(image);
+        // fill the area
+        graphics2d.fill(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from a circle inside a rectangle using intersect 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 testOverlappingCircleAndRectangleIntersectColorPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics2d);
+        // create area using intersect operator
+        Area area = CommonCAGOperations.createAreaFromOverlappingCircleAndRectangleUsingIntersectOperator(image);
+        // fill the area
+        graphics2d.fill(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from a circle inside a rectangle using XOR 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 testOverlappingCircleAndRectangleXorColorPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics2d);
+        // create area using Xor operator
+        Area area = CommonCAGOperations.createAreaFromOverlappingCircleAndRectangleUsingXorOperator(image);
+        // fill the area
+        graphics2d.fill(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from a circle inside a rectangle using union operator. The shape is
+     * rendered using radial gradient 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 testOverlappingCircleAndRectangleUnionRadialGradientPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set radial gradient fill
+        CommonRenderingStyles.setRadialGradientFill(image, graphics2d);
+        // create area using union operator
+        Area area = CommonCAGOperations.createAreaFromOverlappingCircleAndRectangleUsingUnionOperator(image);
+        // fill the area
+        graphics2d.fill(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
      * Entry point to the test suite.
      *
      * @param args not used in this case


More information about the distro-pkg-dev mailing list