/hg/gfx-test: Added 24 new tests for a total of 40 tests in the ...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Sep 15 02:44:52 PDT 2011


changeset eb9f92bf70f5 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=eb9f92bf70f5
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Sep 15 11:46:42 2011 +0200

	Added 24 new tests for a total of 40 tests in the test suite
	src/org/gfxtest/testsuites/CAGOperationsOnCircles.java


diffstat:

 ChangeLog                                              |    5 +
 src/org/gfxtest/testsuites/CAGOperationsOnCircles.java |  694 +++++++++++++++-
 2 files changed, 640 insertions(+), 59 deletions(-)

diffs (truncated from 912 to 500 lines):

diff -r 13ab5ae3881b -r eb9f92bf70f5 ChangeLog
--- a/ChangeLog	Wed Sep 14 13:24:03 2011 +0200
+++ b/ChangeLog	Thu Sep 15 11:46:42 2011 +0200
@@ -1,3 +1,8 @@
+2011-09-15  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/CAGOperationsOnCircles.java:
+	Added 24 new tests for a total of 40 tests in this test suite.
+
 2011-09-14  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* Makefile: added new class to compile
diff -r 13ab5ae3881b -r eb9f92bf70f5 src/org/gfxtest/testsuites/CAGOperationsOnCircles.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnCircles.java	Wed Sep 14 13:24:03 2011 +0200
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnCircles.java	Thu Sep 15 11:46:42 2011 +0200
@@ -228,14 +228,14 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testUnionStrokePaint(TestImage image, Graphics2D graphics)
+    public TestResult testUnionStrokePaint(TestImage image, Graphics2D graphics2d)
     {
         // set stroke color
-        CommonRenderingStyles.setStrokeColor(graphics);
+        CommonRenderingStyles.setStrokeColor(graphics2d);
         // create area using union operator
         Area area = createAreaFromCirclesUsingUnionOperator(image);
         // draw the area
-        graphics.draw(area);
+        graphics2d.draw(area);
         return TestResult.PASSED;
     }
 
@@ -250,14 +250,14 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testSubtractStrokePaint(TestImage image, Graphics2D graphics)
+    public TestResult testSubtractStrokePaint(TestImage image, Graphics2D graphics2d)
     {
         // set stroke color
-        CommonRenderingStyles.setStrokeColor(graphics);
+        CommonRenderingStyles.setStrokeColor(graphics2d);
         // create area using subtract operator
         Area area = createAreaFromCirclesUsingSubtractOperator(image);
         // draw the area
-        graphics.draw(area);
+        graphics2d.draw(area);
         return TestResult.PASSED;
     }
 
@@ -272,14 +272,14 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testInverseSubtractStrokePaint(TestImage image, Graphics2D graphics)
+    public TestResult testInverseSubtractStrokePaint(TestImage image, Graphics2D graphics2d)
     {
         // set stroke color
-        CommonRenderingStyles.setStrokeColor(graphics);
+        CommonRenderingStyles.setStrokeColor(graphics2d);
         // create area using subtract operator
         Area area = createAreaFromCirclesUsingInverseSubtractOperator(image);
         // draw the area
-        graphics.draw(area);
+        graphics2d.draw(area);
         return TestResult.PASSED;
     }
 
@@ -294,14 +294,14 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testIntersectStrokePaint(TestImage image, Graphics2D graphics)
+    public TestResult testIntersectStrokePaint(TestImage image, Graphics2D graphics2d)
     {
         // set stroke color
-        CommonRenderingStyles.setStrokeColor(graphics);
+        CommonRenderingStyles.setStrokeColor(graphics2d);
         // create area using intersect operator
         Area area = createAreaFromCirclesUsingIntersectOperator(image);
         // draw the area
-        graphics.draw(area);
+        graphics2d.draw(area);
         return TestResult.PASSED;
     }
 
@@ -316,14 +316,254 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testXorStrokePaint(TestImage image, Graphics2D graphics)
+    public TestResult testXorStrokePaint(TestImage image, Graphics2D graphics2d)
     {
         // set stroke color
-        CommonRenderingStyles.setStrokeColor(graphics);
+        CommonRenderingStyles.setStrokeColor(graphics2d);
         // create area using XOR operator
         Area area = createAreaFromCirclesUsingXorOperator(image);
         // draw the area
-        graphics.draw(area);
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two circles using union operator. The shape is rendered
+     * using wide stroke.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testUnionWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+        // create area using union operator
+        Area area = createAreaFromCirclesUsingUnionOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two circles using subtract operator. The shape is
+     * rendered using wide stroke.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testSubtractWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+        // create area using subtract operator
+        Area area = createAreaFromCirclesUsingSubtractOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two circles using inverse subtract operator. The shape
+     * is rendered using wide stroke.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testInverseSubtractWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+        // create area using subtract operator
+        Area area = createAreaFromCirclesUsingInverseSubtractOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two circles using intersect operator. The shape is
+     * rendered using wide stroke.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testIntersectWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+        // create area using intersect operator
+        Area area = createAreaFromCirclesUsingIntersectOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two circles using XOR operator. The shape is rendered
+     * using wide stroke.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testXorWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+        // create area using XOR operator
+        Area area = createAreaFromCirclesUsingXorOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two circles using union operator. The shape is rendered
+     * using extra wide stroke.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testUnionExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set stroke width
+        CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+        // create area using union operator
+        Area area = createAreaFromCirclesUsingUnionOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two circles using subtract operator. The shape is
+     * rendered using extra wide stroke.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testSubtractExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set stroke width
+        CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+        // create area using subtract operator
+        Area area = createAreaFromCirclesUsingSubtractOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two circles using inverse subtract operator. The shape
+     * is rendered using extra wide stroke.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testInverseSubtractExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set stroke width
+        CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+        // create area using subtract operator
+        Area area = createAreaFromCirclesUsingInverseSubtractOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two circles using intersect operator. The shape is
+     * rendered using extra wide stroke.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testIntersectExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set stroke width
+        CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+        // create area using intersect operator
+        Area area = createAreaFromCirclesUsingIntersectOperator(image);
+        // draw the area
+        graphics2d.draw(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two circles using XOR operator. The shape is rendered
+     * using extra wide stroke.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testXorExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set stroke width
+        CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+        // create area using XOR operator
+        Area area = createAreaFromCirclesUsingXorOperator(image);
+        // draw the area
+        graphics2d.draw(area);
         return TestResult.PASSED;
     }
 
@@ -338,16 +578,16 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testUnionColorPaint(TestImage image, Graphics2D graphics)
+    public TestResult testUnionColorPaint(TestImage image, Graphics2D graphics2d)
     {
         // set stroke color
-        CommonRenderingStyles.setStrokeColor(graphics);
+        CommonRenderingStyles.setStrokeColor(graphics2d);
         // set fill color
-        CommonRenderingStyles.setFillColor(graphics);
+        CommonRenderingStyles.setFillColor(graphics2d);
         // create area using union operator
         Area area = createAreaFromCirclesUsingUnionOperator(image);
         // draw the area
-        graphics.fill(area);
+        graphics2d.fill(area);
         return TestResult.PASSED;
     }
 
@@ -362,16 +602,40 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testSubtractColorPaint(TestImage image, Graphics2D graphics)
+    public TestResult testSubtractColorPaint(TestImage image, Graphics2D graphics2d)
     {
         // set stroke color
-        CommonRenderingStyles.setStrokeColor(graphics);
+        CommonRenderingStyles.setStrokeColor(graphics2d);
         // set fill color
-        CommonRenderingStyles.setFillColor(graphics);
+        CommonRenderingStyles.setFillColor(graphics2d);
         // create area using subtract operator
         Area area = createAreaFromCirclesUsingSubtractOperator(image);
         // draw the area
-        graphics.fill(area);
+        graphics2d.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two circles using subtract operator. The shape is
+     * rendered using color paint (fill).
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testInverseSubtractColorPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics2d);
+        // create area using subtract operator
+        Area area = createAreaFromCirclesUsingInverseSubtractOperator(image);
+        // draw the area
+        graphics2d.fill(area);
         return TestResult.PASSED;
     }
 
@@ -386,16 +650,16 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testIntersectColorPaint(TestImage image, Graphics2D graphics)
+    public TestResult testIntersectColorPaint(TestImage image, Graphics2D graphics2d)
     {
         // set stroke color
-        CommonRenderingStyles.setStrokeColor(graphics);
+        CommonRenderingStyles.setStrokeColor(graphics2d);
         // set fill color
-        CommonRenderingStyles.setFillColor(graphics);
+        CommonRenderingStyles.setFillColor(graphics2d);
         // create area using intersect operator
         Area area = createAreaFromCirclesUsingIntersectOperator(image);
         // draw the area
-        graphics.fill(area);
+        graphics2d.fill(area);
         return TestResult.PASSED;
     }
 
@@ -410,16 +674,16 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testXorColorPaint(TestImage image, Graphics2D graphics)
+    public TestResult testXorColorPaint(TestImage image, Graphics2D graphics2d)
     {
         // set stroke color
-        CommonRenderingStyles.setStrokeColor(graphics);
+        CommonRenderingStyles.setStrokeColor(graphics2d);
         // set fill color
-        CommonRenderingStyles.setFillColor(graphics);
+        CommonRenderingStyles.setFillColor(graphics2d);
         // create area using XOR operator
         Area area = createAreaFromCirclesUsingXorOperator(image);
         // draw the area
-        graphics.fill(area);
+        graphics2d.fill(area);
         return TestResult.PASSED;
     }
 
@@ -434,16 +698,16 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testUnionColorHorizontalGradientPaint(TestImage image, Graphics2D graphics)
+    public TestResult testUnionHorizontalGradientPaint(TestImage image, Graphics2D graphics2d)
     {
         // set stroke color
-        CommonRenderingStyles.setStrokeColor(graphics);
+        CommonRenderingStyles.setStrokeColor(graphics2d);
         // set fill color
-        CommonRenderingStyles.setHorizontalGradientFill(image, graphics);
+        CommonRenderingStyles.setHorizontalGradientFill(image, graphics2d);
         // create area using union operator
         Area area = createAreaFromCirclesUsingUnionOperator(image);
         // draw the area
-        graphics.fill(area);
+        graphics2d.fill(area);
         return TestResult.PASSED;
     }
 
@@ -458,16 +722,40 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testSubtractColorHorizontalGradientPaint(TestImage image, Graphics2D graphics)
+    public TestResult testSubtractHorizontalGradientPaint(TestImage image, Graphics2D graphics2d)
     {
         // set stroke color
-        CommonRenderingStyles.setStrokeColor(graphics);
+        CommonRenderingStyles.setStrokeColor(graphics2d);
         // set fill color
-        CommonRenderingStyles.setHorizontalGradientFill(image, graphics);
+        CommonRenderingStyles.setHorizontalGradientFill(image, graphics2d);
         // create area using subtract operator
         Area area = createAreaFromCirclesUsingSubtractOperator(image);
         // draw the area
-        graphics.fill(area);
+        graphics2d.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two circles using subtract operator. The shape is rendered
+     * using horizontal gradient paint (fill).
+     * 



More information about the distro-pkg-dev mailing list