/hg/gfx-test: 2011-12-23 Pavel Tisnovsky <ptisnovs at redhat.com>
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Dec 23 03:47:22 PST 2011
changeset e42aff9d3457 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=e42aff9d3457
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Dec 23 12:49:45 2011 +0100
2011-12-23 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/framework/CommonRenderingStyles.java:
Added new static method used by some test cases.
* src/org/gfxtest/testsuites/ClippingPathByPolygonalShape.java:
Basic tests.
* src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java:
New tests checking rendering using dash pattern.
diffstat:
ChangeLog | 9 +
src/org/gfxtest/framework/CommonRenderingStyles.java | 52 +++++
src/org/gfxtest/testsuites/ClippingPathByPolygonalShape.java | 101 +++++++++++
src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java | 70 +++++++
4 files changed, 232 insertions(+), 0 deletions(-)
diffs (283 lines):
diff -r b8dbca0dfd8f -r e42aff9d3457 ChangeLog
--- a/ChangeLog Thu Dec 22 11:31:23 2011 +0100
+++ b/ChangeLog Fri Dec 23 12:49:45 2011 +0100
@@ -1,3 +1,12 @@
+2011-12-23 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/framework/CommonRenderingStyles.java:
+ Added new static method used by some test cases.
+ * src/org/gfxtest/testsuites/ClippingPathByPolygonalShape.java:
+ Basic tests.
+ * src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java:
+ New tests checking rendering using dash pattern.
+
2011-12-22 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java:
diff -r b8dbca0dfd8f -r e42aff9d3457 src/org/gfxtest/framework/CommonRenderingStyles.java
--- a/src/org/gfxtest/framework/CommonRenderingStyles.java Thu Dec 22 11:31:23 2011 +0100
+++ b/src/org/gfxtest/framework/CommonRenderingStyles.java Fri Dec 23 12:49:45 2011 +0100
@@ -71,6 +71,16 @@
private static final int STROKE_WIDTH_EXTRA_THICK = 30;
/**
+ * Default dash pattern.
+ */
+ private static final float[] DEFAULT_DASH_PATTERN = {20.0f};
+
+ /**
+ * Default dash pattern.
+ */
+ private static final float[] DEFAULT_DASH_PATTERN_FOR_EXTRA_THICK_PATHS = {40.0f};
+
+ /**
* Default stroke color.
*/
private static final Color DEFAULT_STROKE_COLOR = Color.BLACK;
@@ -1295,6 +1305,48 @@
}
/**
+ * Set default dash pattern.
+ *
+ * @param graphics
+ * graphics context for image
+ */
+ public static void setDashedStrokePattern(Graphics2D graphics2d)
+ {
+ setDashedStrokePattern(graphics2d, DEFAULT_DASH_PATTERN);
+ }
+
+ /**
+ * Set dash pattern for extra thick paths.
+ *
+ * @param graphics
+ * graphics context for image
+ */
+ public static void setDashedStrokePatternForExtraThickPaths(Graphics2D graphics2d)
+ {
+ setDashedStrokePattern(graphics2d, DEFAULT_DASH_PATTERN_FOR_EXTRA_THICK_PATHS);
+ }
+
+ /**
+ * Set dash pattern.
+ *
+ * @param graphics
+ * graphics context for image
+ * @param dash
+ * the array representing the dashing pattern
+ */
+ public static void setDashedStrokePattern(Graphics2D graphics2d, float[] dash)
+ {
+ BasicStroke oldStroke = (BasicStroke) graphics2d.getStroke();
+ float lineWidth = oldStroke.getLineWidth();
+ int endCap = oldStroke.getEndCap();
+ int lineJoin = oldStroke.getLineJoin();
+ float miterLimit = oldStroke.getMiterLimit();
+ float dashPhase = oldStroke.getDashPhase();
+ BasicStroke newStroke = new BasicStroke(lineWidth, endCap, lineJoin, miterLimit, dash, dashPhase);
+ graphics2d.setStroke(newStroke);
+ }
+
+ /**
* Create anchor rectangle used by texture paint
*
* @param image
diff -r b8dbca0dfd8f -r e42aff9d3457 src/org/gfxtest/testsuites/ClippingPathByPolygonalShape.java
--- a/src/org/gfxtest/testsuites/ClippingPathByPolygonalShape.java Thu Dec 22 11:31:23 2011 +0100
+++ b/src/org/gfxtest/testsuites/ClippingPathByPolygonalShape.java Fri Dec 23 12:49:45 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 testClipLinePathByPolygonalShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render polygon which is used as a clip shape
+ CommonClippingOperations.renderClipPolygon(image, graphics2d);
+ // set clip region and draw the path
+ drawLinePathClippedByPolygonalShape(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 testClipQuadraticPathByPolygonalShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render polygon which is used as a clip shape
+ CommonClippingOperations.renderClipPolygon(image, graphics2d);
+ // set clip region and draw the path
+ drawQuadraticPathClippedByPolygonalShape(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 testClipCubicPathByPolygonalShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render polygon which is used as a clip shape
+ CommonClippingOperations.renderClipPolygon(image, graphics2d);
+ // set clip region and draw the path
+ drawCubicPathClippedByPolygonalShape(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 testClipClosedPathByPolygonalShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render polygon which is used as a clip shape
+ CommonClippingOperations.renderClipPolygon(image, graphics2d);
+ // set clip region and draw the path
+ drawClosedPathClippedByPolygonalShape(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 testClipCrossedClosedPathByPolygonalShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render polygon which is used as a clip shape
+ CommonClippingOperations.renderClipPolygon(image, graphics2d);
+ // set clip region and draw the path
+ drawCrossedPathClippedByPolygonalShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args
diff -r b8dbca0dfd8f -r e42aff9d3457 src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java
--- a/src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java Thu Dec 22 11:31:23 2011 +0100
+++ b/src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java Fri Dec 23 12:49:45 2011 +0100
@@ -618,6 +618,76 @@
}
/**
+ * Check if line path could be clipped by a rectangle area. 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 testClipLinePathByRectangleAreaDashedStroke(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // set clip region and draw the path
+ drawLinePathClippedByRectangleArea(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if line path could be clipped by a rectangle area. Path is
+ * rendered using stroke paint with thick stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipLinePathByRectangleAreaDashedThickStroke(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // set clip region and draw the path
+ drawLinePathClippedByRectangleArea(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if line path could be clipped by a rectangle area. Path is
+ * rendered using stroke paint with thick stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipLinePathByRectangleAreaDashedExtraThickStroke(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePatternForExtraThickPaths(graphics2d);
+ // set clip region and draw the path
+ drawLinePathClippedByRectangleArea(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args
More information about the distro-pkg-dev
mailing list