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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Feb 12 04:21:14 PST 2014


changeset 4a15144c8469 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=4a15144c8469
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Feb 12 13:25:26 2014 +0100

	Six new tests added into CAGOperationsOnChordAndRectangle test suite.


diffstat:

 ChangeLog                                                        |    5 +
 src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java |  140 +++++++++-
 2 files changed, 144 insertions(+), 1 deletions(-)

diffs (169 lines):

diff -r 60562be5f5b5 -r 4a15144c8469 ChangeLog
--- a/ChangeLog	Tue Feb 11 10:15:30 2014 +0100
+++ b/ChangeLog	Wed Feb 12 13:25:26 2014 +0100
@@ -1,3 +1,8 @@
+2014-02-12  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java:
+	Six new tests added into CAGOperationsOnChordAndRectangle test suite.
+
 2014-02-11  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/CAGOperationsOnPieAndRectangle.java:
diff -r 60562be5f5b5 -r 4a15144c8469 src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java	Tue Feb 11 10:15:30 2014 +0100
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java	Wed Feb 12 13:25:26 2014 +0100
@@ -1,7 +1,7 @@
 /*
   Java gfx-test framework
 
-   Copyright (C) 2013  Red Hat
+   Copyright (C) 2013, 2014  Red Hat
 
 This file is part of IcedTea.
 
@@ -743,6 +743,144 @@
     }
 
     /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from chord and rectangle using intersect operator. The shape is
+     * rendered using horizontal 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 testBigChordRectangleIntersectHorizontalGradientPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set horizontal gradient fill
+        CommonRenderingStyles.setHorizontalGradientFill(image, graphics2d);
+        // create area using intersect operator
+        Area area = CommonCAGOperations.createAreaFromBiggerChordAndRectangleUsingIntersectOperator(image);
+        // fill the area
+        graphics2d.fill(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from chord and rectangle using XOR operator. The shape is
+     * rendered using horizontal 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 testBigChordRectangleXorHorizontalGradientPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set horizontal gradient fill
+        CommonRenderingStyles.setHorizontalGradientFill(image, graphics2d);
+        // create area using XOR operator
+        Area area = CommonCAGOperations.createAreaFromBiggerChordAndRectangleUsingXorOperator(image);
+        // fill the area
+        graphics2d.fill(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from chord and rectangle using union operator. The shape is
+     * rendered using vertical 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 testBigChordRectangleUnionVerticalGradientPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set vertical gradient fill
+        CommonRenderingStyles.setVerticalGradientFill(image, graphics2d);
+        // create area using union operator
+        Area area = CommonCAGOperations.createAreaFromBiggerChordAndRectangleUsingUnionOperator(image);
+        // fill the area
+        graphics2d.fill(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from chord and rectangle using subtract operator. The shape is
+     * rendered using vertical 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 testBigChordRectangleSubtractVerticalGradientPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set vertical gradient fill
+        CommonRenderingStyles.setVerticalGradientFill(image, graphics2d);
+        // create area using subtract operator
+        Area area = CommonCAGOperations.createAreaFromBiggerChordAndRectangleUsingSubtractOperator(image);
+        // fill the area
+        graphics2d.fill(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from chord and rectangle using inverse subtract operator.
+     * The shape is rendered using vertical 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 testBigChordRectangleInverseSubtractVerticalGradientPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set vertical gradient fill
+        CommonRenderingStyles.setVerticalGradientFill(image, graphics2d);
+        // create area using inverse subtract operator
+        Area area = CommonCAGOperations.createAreaFromBiggerChordAndRectangleUsingInverseSubtractOperator(image);
+        // fill the area
+        graphics2d.fill(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from chord and rectangle using intersect operator. The shape is
+     * rendered using vertical 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 testBigChordRectangleIntersectVerticalGradientPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set vertical gradient fill
+        CommonRenderingStyles.setVerticalGradientFill(image, graphics2d);
+        // create area using intersect operator
+        Area area = CommonCAGOperations.createAreaFromBiggerChordAndRectangleUsingIntersectOperator(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