/hg/gfx-test: Three new tests added into CAGOperationsOnChordAnd...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Jan 8 02:07:56 PST 2014


changeset 6a4bc493096b in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=6a4bc493096b
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Jan 08 11:11:59 2014 +0100

	Three new tests added into CAGOperationsOnChordAndRectangle test suite.


diffstat:

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

diffs (91 lines):

diff -r dbc725e7433d -r 6a4bc493096b ChangeLog
--- a/ChangeLog	Tue Jan 07 11:53:59 2014 +0100
+++ b/ChangeLog	Wed Jan 08 11:11:59 2014 +0100
@@ -1,3 +1,8 @@
+2014-01-08  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java:
+	Three new tests added into CAGOperationsOnChordAndRectangle test suite.
+
 2014-01-07  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java:
diff -r dbc725e7433d -r 6a4bc493096b src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java	Tue Jan 07 11:53:59 2014 +0100
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java	Wed Jan 08 11:11:59 2014 +0100
@@ -2832,6 +2832,75 @@
     }
 
     /**
+     * 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 diagonal 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 testOverlappingCircleAndRectangleInverseSubtractDiagonalGradientPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set diagonal gradient fill
+        CommonRenderingStyles.setDiagonalGradientFill(image, 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 diagonal 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 testOverlappingCircleAndRectangleIntersectDiagonalGradientPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set diagonal gradient fill
+        CommonRenderingStyles.setDiagonalGradientFill(image, 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 diagonal 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 testOverlappingCircleAndRectangleXorDiagonalGradientPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set diagonal gradient fill
+        CommonRenderingStyles.setDiagonalGradientFill(image, graphics2d);
+        // create area using XOR operator
+        Area area = CommonCAGOperations.createAreaFromOverlappingCircleAndRectangleUsingXorOperator(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