/hg/gfx-test: * src/org/gfxtest/testsuites/ClippingCircleByEllip...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Mar 2 05:09:24 PST 2012
changeset d5442554d852 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=d5442554d852
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Mar 02 14:11:58 2012 +0100
* src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java:
Fixed typo.
* src/org/gfxtest/testsuites/ClippingCircleByPolygonalShape.java:
Added plenty of new tests.
diffstat:
ChangeLog | 7 +
src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java | 2 +-
src/org/gfxtest/testsuites/ClippingCircleByPolygonalShape.java | 511 ++++++++++
3 files changed, 519 insertions(+), 1 deletions(-)
diffs (truncated from 555 to 500 lines):
diff -r 7742d8ac7ad4 -r d5442554d852 ChangeLog
--- a/ChangeLog Thu Mar 01 11:07:48 2012 +0100
+++ b/ChangeLog Fri Mar 02 14:11:58 2012 +0100
@@ -1,3 +1,10 @@
+2012-03-02 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java:
+ Fixed typo.
+ * src/org/gfxtest/testsuites/ClippingCircleByPolygonalShape.java:
+ Added plenty of new tests.
+
2012-03-01 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/ImageDiffer/Main.java:
diff -r 7742d8ac7ad4 -r d5442554d852 src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java Thu Mar 01 11:07:48 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java Fri Mar 02 14:11:58 2012 +0100
@@ -103,7 +103,7 @@
}
/**
- * Draw empty circle clipped by an ellipse shape.
+ * Draw filled circle clipped by an ellipse shape.
*
* @param image
* work image
diff -r 7742d8ac7ad4 -r d5442554d852 src/org/gfxtest/testsuites/ClippingCircleByPolygonalShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByPolygonalShape.java Thu Mar 01 11:07:48 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByPolygonalShape.java Fri Mar 02 14:11:58 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;
@@ -61,6 +70,508 @@
@Zoom(1)
public class ClippingCircleByPolygonalShape 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 polygonal shape
+ CommonClippingOperations.createClipUsingPolygonalShape(image, graphics2d);
+ }
+
+ /**
+ * Draw empty circle clipped by a 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 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 an ellipse 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.renderClipPolygon(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set fill color
+ CommonRenderingStyles.setTransparentFillRedColor(graphics2d, transparency);
+ // create clip area
+ CommonClippingOperations.createClipUsingPolygonalShape(image, graphics2d);
+ // fill the shape
+ CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+ }
+
+ /**
+ * Draw circle clipped by an ellipse 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.renderClipPolygon(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set fill color
+ CommonRenderingStyles.setTransparentFillGreenColor(graphics2d, transparency);
+ // create clip area
+ CommonClippingOperations.createClipUsingPolygonalShape(image, graphics2d);
+ // fill the shape
+ CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+ }
+
+ /**
+ * Draw circle clipped by an ellipse 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.renderClipPolygon(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set fill color
+ CommonRenderingStyles.setTransparentFillBlueColor(graphics2d, transparency);
+ // create clip area
+ CommonClippingOperations.createClipUsingPolygonalShape(image, graphics2d);
+ // fill the shape
+ CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+ }
+
+ /**
+ * Check if circle shape could be clipped by a 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 testClipCircleByEllipseShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render a polygon which is used as a base for clip shape
+ CommonClippingOperations.renderClipPolygon(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 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 testClipCircleByEllipseShapeWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render a polygon which is used as a base for clip shape
+ CommonClippingOperations.renderClipPolygon(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 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 testClipCircleByEllipseShapeExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render a polygon which is used as a base for clip shape
+ CommonClippingOperations.renderClipPolygon(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 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 testClipCircleByEllipseShapeZeroWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render a polygon which is used as a base for clip shape
+ CommonClippingOperations.renderClipPolygon(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 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 testClipCircleByEllipseShapeColorPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render a polygon which is used as a base for clip shape
+ CommonClippingOperations.renderClipPolygon(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 an ellipse 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 testClipCircleByEllipseShapeAlphaPaintRed000(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by ellipse shape using alpha paint with 0% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintRed(image, graphics2d, 0);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by an ellipse 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 testClipCircleByEllipseShapeAlphaPaintRed025(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by 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 an ellipse 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 testClipCircleByEllipseShapeAlphaPaintRed050(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by 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 an ellipse 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 testClipCircleByEllipseShapeAlphaPaintRed075(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by 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 an ellipse 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 testClipCircleByEllipseShapeAlphaPaintRed100(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by 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 an ellipse 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 testClipCircleByEllipseShapeAlphaPaintGreen000(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by 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 an ellipse 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 testClipCircleByEllipseShapeAlphaPaintGreen025(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by 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 an ellipse 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 testClipCircleByEllipseShapeAlphaPaintGreen050(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by 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 an ellipse 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 testClipCircleByEllipseShapeAlphaPaintGreen075(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by 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 an ellipse 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 testClipCircleByEllipseShapeAlphaPaintGreen100(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by 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 an ellipse 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 testClipCircleByEllipseShapeAlphaPaintBlue000(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by polygonal shape using alpha paint with 0% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintBlue(image, graphics2d, 0);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by an ellipse shape. Circle is
+ * rendered using alpha paint with blue color at 25% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByEllipseShapeAlphaPaintBlue025(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by polygonal shape using alpha paint with 25% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintBlue(image, graphics2d, 25);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
More information about the distro-pkg-dev
mailing list