/hg/gfx-test: 2012-03-15 Pavel Tisnovsky <ptisnovs at redhat.com>

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Mar 15 02:00:20 PDT 2012


changeset 611fd4d84e06 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=611fd4d84e06
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Mar 15 09:59:13 2012 +0100

	2012-03-15  Pavel Tisnovsky  <ptisnovs at redhat.com>

	        * src/org/gfxtest/testsuites/ClippingCircleBySelfIntersectingPolygonalShape.java:
	          Added plenty of new tests.
	        * src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java:
	        * src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java:
	          Minor JavaDoc improvements.


diffstat:

 ChangeLog                                                                      |    8 +
 src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java          |    2 +-
 src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java           |    2 +-
 src/org/gfxtest/testsuites/ClippingCircleBySelfIntersectingPolygonalShape.java |  514 +++++++++-
 4 files changed, 522 insertions(+), 4 deletions(-)

diffs (truncated from 578 to 500 lines):

diff -r cd8e6f958548 -r 611fd4d84e06 ChangeLog
--- a/ChangeLog	Wed Mar 14 11:54:57 2012 +0100
+++ b/ChangeLog	Thu Mar 15 09:59:13 2012 +0100
@@ -1,3 +1,11 @@
+2012-03-15  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/ClippingCircleBySelfIntersectingPolygonalShape.java:
+	Added plenty of new tests.
+	* src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java:
+	* src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java:
+	Minor JavaDoc improvements.
+
 2012-03-14  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java:
diff -r cd8e6f958548 -r 611fd4d84e06 src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java	Wed Mar 14 11:54:57 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java	Thu Mar 15 09:59:13 2012 +0100
@@ -60,7 +60,7 @@
 
 /**
  * This test check if clipping is working correctly for an empty, filled
- * and textured circle which is clipped by a polygonal shape.
+ * and textured circle which is clipped by a concave polygonal shape.
  * 
  * @author Pavel Tisnovsky
  */
diff -r cd8e6f958548 -r 611fd4d84e06 src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java	Wed Mar 14 11:54:57 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java	Thu Mar 15 09:59:13 2012 +0100
@@ -60,7 +60,7 @@
 
 /**
  * This test check if clipping is working correctly for an empty, filled
- * and textured circle which is clipped by a polygonal shape.
+ * and textured circle which is clipped by a convex polygonal shape.
  * 
  * @author Pavel Tisnovsky
  */
diff -r cd8e6f958548 -r 611fd4d84e06 src/org/gfxtest/testsuites/ClippingCircleBySelfIntersectingPolygonalShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleBySelfIntersectingPolygonalShape.java	Wed Mar 14 11:54:57 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleBySelfIntersectingPolygonalShape.java	Thu Mar 15 09:59:13 2012 +0100
@@ -40,7 +40,16 @@
 
 package org.gfxtest.testsuites;
 
+import java.awt.Graphics2D;
+
+
+
+import org.gfxtest.framework.CommonClippingOperations;
+import org.gfxtest.framework.CommonRenderingStyles;
+import org.gfxtest.framework.CommonShapesRenderer;
 import org.gfxtest.framework.GfxTest;
+import org.gfxtest.framework.TestImage;
+import org.gfxtest.framework.TestResult;
 import org.gfxtest.framework.annotations.GraphicsPrimitive;
 import org.gfxtest.framework.annotations.GraphicsPrimitives;
 import org.gfxtest.framework.annotations.TestType;
@@ -51,7 +60,7 @@
 
 /**
  * This test check if clipping is working correctly for an empty, filled
- * and textured circle which is clipped by a polygonal shape.
+ * and textured circle which is clipped by a self intersecting polygonal shape.
  * 
  * @author Pavel Tisnovsky
  */
@@ -61,7 +70,508 @@
 @Zoom(1)
 public class ClippingCircleBySelfIntersectingPolygonalShape extends GfxTest
 {
-    
+    /**
+     * Prepare canvas for the rendering.
+     *
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     */
+    private static void basicSetupForRendering(TestImage image, Graphics2D graphics2d)
+    {
+        // create clip area which is constructed from the self intersecting polygonal shape
+        CommonClippingOperations.createClipUsingSelfIntersectingPolygonalShape(image, graphics2d);
+    }
+
+    /**
+     * Draw empty circle clipped by a self intersecting polygonal shape.
+     *
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     */
+    private static void drawEmptyCircleClippedByPolygonalShape(TestImage image, Graphics2D graphics2d)
+    {
+        // prepare canvas for the rendering
+        basicSetupForRendering(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // draw the area
+        CommonShapesRenderer.drawCircle(image, graphics2d);
+    }
+
+    /**
+     * Draw filled circle clipped by a self intersecting polygonal shape.
+     *
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     */
+    private static void drawFilledCircleClippedByPolygonalShape(TestImage image, Graphics2D graphics2d)
+    {
+        // prepare canvas for the rendering
+        basicSetupForRendering(image, graphics2d);
+        // fill the area
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
+     * Draw circle clipped by a self intersecting polygonal shape. Circle is drawn using alpha
+     * paint with red color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByPolygonalShapeAlphaPaintRed(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip polygon
+        CommonClippingOperations.renderSelfIntersectingClipPolygon(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillRedColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingSelfIntersectingPolygonalShape(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
+     * Draw circle clipped by a self intersecting polygonal shape. Circle is drawn using alpha
+     * paint with green color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByPolygonalShapeAlphaPaintGreen(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip polygon
+        CommonClippingOperations.renderSelfIntersectingClipPolygon(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillGreenColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingSelfIntersectingPolygonalShape(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
+     * Draw circle clipped by a self intersecting polygonal shape. Circle is drawn using alpha
+     * paint with blue color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByPolygonalShapeAlphaPaintBlue(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip polygon
+        CommonClippingOperations.renderSelfIntersectingClipPolygon(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillBlueColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingSelfIntersectingPolygonalShape(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using stroke paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render a polygon which is used as a base for clip shape
+        CommonClippingOperations.renderSelfIntersectingClipPolygon(image, graphics2d);
+        // set clip region and draw the circle
+        drawEmptyCircleClippedByPolygonalShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using wide stroke paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render a polygon which is used as a base for clip shape
+        CommonClippingOperations.renderSelfIntersectingClipPolygon(image, graphics2d);
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+        // set clip region and draw the circle
+        drawEmptyCircleClippedByPolygonalShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using extra wide stroke paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render a polygon which is used as a base for clip shape
+        CommonClippingOperations.renderSelfIntersectingClipPolygon(image, graphics2d);
+        // set stroke width
+        CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+        // set clip region and draw the circle
+        drawEmptyCircleClippedByPolygonalShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using zero wide stroke paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeZeroWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render a polygon which is used as a base for clip shape
+        CommonClippingOperations.renderSelfIntersectingClipPolygon(image, graphics2d);
+        // set stroke width
+        CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+        // set clip region and draw the circle
+        drawEmptyCircleClippedByPolygonalShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using color paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeColorPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render a polygon which is used as a base for clip shape
+        CommonClippingOperations.renderSelfIntersectingClipPolygon(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics2d);
+        // create clip shape and fill the shape
+        drawFilledCircleClippedByPolygonalShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using alpha paint with red color at 0% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintRed000(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by self intersecting polygonal shape using alpha paint with 0% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintRed(image, graphics2d, 0);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using alpha paint with red color at 25% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintRed025(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by self intersecting polygonal shape using alpha paint with 25% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintRed(image, graphics2d, 25);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using alpha paint with red color at 50% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintRed050(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by self intersecting polygonal shape using alpha paint with 50% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintRed(image, graphics2d, 50);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using alpha paint with red color at 75% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintRed075(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by self intersecting polygonal shape using alpha paint with 75% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintRed(image, graphics2d, 75);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using alpha paint with red color at 100% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintRed100(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by self intersecting polygonal shape using alpha paint with 100% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintRed(image, graphics2d, 100);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using alpha paint with green color at 0% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintGreen000(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by self intersecting polygonal shape using alpha paint with 0% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintGreen(image, graphics2d, 0);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using alpha paint with green color at 25% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintGreen025(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by self intersecting polygonal shape using alpha paint with 25% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintGreen(image, graphics2d, 25);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using alpha paint with green color at 50% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintGreen050(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by self intersecting polygonal shape using alpha paint with 50% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintGreen(image, graphics2d, 50);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using alpha paint with green color at 75% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintGreen075(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by self intersecting polygonal shape using alpha paint with 75% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintGreen(image, graphics2d, 75);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using alpha paint with green color at 100% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintGreen100(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by self intersecting polygonal shape using alpha paint with 100% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintGreen(image, graphics2d, 100);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a self intersecting polygonal shape. Circle is
+     * rendered using alpha paint with blue color at 0% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintBlue000(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by self intersecting self intersecting polygonal shape using alpha paint with 0% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintBlue(image, graphics2d, 0);



More information about the distro-pkg-dev mailing list