/hg/gfx-test: 2011-12-22 Pavel Tisnovsky <ptisnovs at redhat.com>
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Dec 22 02:29:04 PST 2011
changeset b8dbca0dfd8f in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=b8dbca0dfd8f
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Dec 22 11:31:23 2011 +0100
2011-12-22 Pavel Tisnovsky <ptisnovs at redhat.com>
*
src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java:
Added five new tests.
* src/org/gfxtest/testsuites/ClippingPathByRoundRectangleShape.java:
Added five new tests.
diffstat:
ChangeLog | 7 +
src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java | 101 +++++++
src/org/gfxtest/testsuites/ClippingPathByRoundRectangleShape.java | 138 ++++++++++
3 files changed, 246 insertions(+), 0 deletions(-)
diffs (287 lines):
diff -r 6127c26483fb -r b8dbca0dfd8f ChangeLog
--- a/ChangeLog Wed Dec 21 10:54:38 2011 +0100
+++ b/ChangeLog Thu Dec 22 11:31:23 2011 +0100
@@ -1,3 +1,10 @@
+2011-12-22 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java:
+ Added five new tests.
+ * src/org/gfxtest/testsuites/ClippingPathByRoundRectangleShape.java:
+ Added five new tests.
+
2011-12-21 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java:
diff -r 6127c26483fb -r b8dbca0dfd8f src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java
--- a/src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java Wed Dec 21 10:54:38 2011 +0100
+++ b/src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java Thu Dec 22 11:31:23 2011 +0100
@@ -49,6 +49,7 @@
import org.gfxtest.framework.CommonRenderingStyles;
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;
@@ -177,6 +178,106 @@
}
/**
+ * Check if line path could be clipped by an ellipse shape. Path is rendered
+ * using stroke paint with default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipLinePathByEllipseShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render ellipse which is used as a clip shape
+ CommonClippingOperations.renderClipEllipse(image, graphics2d);
+ // set clip region and draw the path
+ drawLinePathClippedByEllipseShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if quadratic Bezier path could be clipped by an ellipse shape. Path
+ * is rendered using stroke paint with default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipQuadraticPathByEllipseShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render ellipse which is used as a clip shape
+ CommonClippingOperations.renderClipEllipse(image, graphics2d);
+ // set clip region and draw the path
+ drawQuadraticPathClippedByEllipseShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if cubic Bezier path could be clipped by an ellipse shape. Path
+ * is rendered using stroke paint with default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCubicPathByEllipseShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render ellipse which is used as a clip shape
+ CommonClippingOperations.renderClipEllipse(image, graphics2d);
+ // set clip region and draw the path
+ drawCubicPathClippedByEllipseShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if closed path could be clipped by an ellipse shape. Path
+ * is rendered using stroke paint with default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipClosedPathByEllipseShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render ellipse which is used as a clip shape
+ CommonClippingOperations.renderClipEllipse(image, graphics2d);
+ // set clip region and draw the path
+ drawClosedPathClippedByEllipseShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if crossed closed path could be clipped by an ellipse shape. Path
+ * is rendered using stroke paint with default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCrossedClosedPathByEllipseShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render ellipse which is used as a clip shape
+ CommonClippingOperations.renderClipEllipse(image, graphics2d);
+ // set clip region and draw the path
+ drawCrossedPathClippedByEllipseShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args
diff -r 6127c26483fb -r b8dbca0dfd8f src/org/gfxtest/testsuites/ClippingPathByRoundRectangleShape.java
--- a/src/org/gfxtest/testsuites/ClippingPathByRoundRectangleShape.java Wed Dec 21 10:54:38 2011 +0100
+++ b/src/org/gfxtest/testsuites/ClippingPathByRoundRectangleShape.java Thu Dec 22 11:31:23 2011 +0100
@@ -49,6 +49,7 @@
import org.gfxtest.framework.CommonRenderingStyles;
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;
@@ -140,6 +141,143 @@
graphics2d.draw(CommonPathsGenerator.createCubicPathFloat(image));
}
+
+ /**
+ * Draw closed path clipped by a round rectangle shape.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ */
+ private static void drawClosedPathClippedByRoundRectangleShape(TestImage image, Graphics2D graphics2d)
+ {
+ // prepare canvas for the rendering
+ basicSetupForRendering(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // draw the closed path
+ graphics2d.draw(CommonPathsGenerator.createClosedPathFloat(image));
+ }
+
+ /**
+ * Draw crossed path clipped by a round rectangle shape.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ */
+ private static void drawCrossedClosedPathClippedByRoundRectangleShape(TestImage image, Graphics2D graphics2d)
+ {
+ // prepare canvas for the rendering
+ basicSetupForRendering(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // draw the crossed path
+ graphics2d.draw(CommonPathsGenerator.createCrossedClosedPathFloat(image));
+ }
+
+ /**
+ * Check if line path could be clipped by a round rectangle shape. Path is
+ * rendered using stroke paint with default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipLinePathByRoundRectangleShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set clip region and draw the path
+ drawLinePathClippedByRoundRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if quadratic path could be clipped by a round rectangle shape. Path is
+ * rendered using stroke paint with default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipQuadraticPathByRoundRectangleShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set clip region and draw the path
+ drawQuadraticPathClippedByRoundRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if cubic path could be clipped by a round rectangle shape. Path is
+ * rendered using stroke paint with default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCubicPathByRoundRectangleShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set clip region and draw the path
+ drawCubicPathClippedByRoundRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if closed path could be clipped by a round rectangle shape. Path is
+ * rendered using stroke paint with default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipClosedPathByRoundRectangleShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set clip region and draw the path
+ drawClosedPathClippedByRoundRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if crossed closed path could be clipped by a round rectangle shape.
+ * Path is rendered using stroke paint with default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCrossedClosedPathByRoundRectangleShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set clip region and draw the path
+ drawCrossedClosedPathClippedByRoundRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
/**
* Entry point to the test suite.
*
More information about the distro-pkg-dev
mailing list