/hg/gfx-test: Four new tests added into CAGOperationsOnPieAndRec...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri Dec 13 00:55:34 PST 2013


changeset 44d32c4f0367 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=44d32c4f0367
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Dec 13 09:59:32 2013 +0100

	Four new tests added into CAGOperationsOnPieAndRectangle test suite.


diffstat:

 ChangeLog                                                      |   5 +
 src/org/gfxtest/testsuites/CAGOperationsOnPieAndRectangle.java |  92 ++++++++++
 2 files changed, 97 insertions(+), 0 deletions(-)

diffs (114 lines):

diff -r abb179e5302c -r 44d32c4f0367 ChangeLog
--- a/ChangeLog	Thu Dec 12 11:55:22 2013 +0100
+++ b/ChangeLog	Fri Dec 13 09:59:32 2013 +0100
@@ -1,3 +1,8 @@
+2013-12-13  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/CAGOperationsOnPieAndRectangle.java:
+	Four new tests added into CAGOperationsOnPieAndRectangle test suite.
+
 2013-12-12  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/BitBltAffineIdentityTransformOp.java:
diff -r abb179e5302c -r 44d32c4f0367 src/org/gfxtest/testsuites/CAGOperationsOnPieAndRectangle.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnPieAndRectangle.java	Thu Dec 12 11:55:22 2013 +0100
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnPieAndRectangle.java	Fri Dec 13 09:59:32 2013 +0100
@@ -102,6 +102,98 @@
     }
 
     /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from pie and rectangle using intersect operator. The shape is
+     * rendered using stroke paint.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBigPieRectangleIntersectStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // create area using union operator
+        Area area = CommonCAGOperations.createAreaFromBiggerPieAndRectangleUsingIntersectOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from pie and rectangle using subtract operator. The shape
+     * is rendered using stroke paint.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBigPieRectangleSubtractStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // create area using subtract operator
+        Area area = CommonCAGOperations.createAreaFromBiggerPieAndRectangleUsingSubtractOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from pie and rectangle using inverse subtract operator.
+     * The shape is rendered using stroke paint.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBigPieRectangleInverseSubtractStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // create area using inverse subtract operator
+        Area area = CommonCAGOperations.createAreaFromBiggerPieAndRectangleUsingInverseSubtractOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from pie and rectangle using Xor operator.
+     * The shape is rendered using stroke paint.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBigPieRectangleXorStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // create area using XOR operator
+        Area area = CommonCAGOperations.createAreaFromBiggerPieAndRectangleUsingXorOperator(image);
+        // draw the area
+        graphics2d.draw(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