/hg/gfx-test: * src/org/gfxtest/testsuites/ClippingPathByEllipse...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Mar 26 02:54:16 PDT 2012
changeset 0ff7c385c559 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=0ff7c385c559
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Mar 26 11:56:56 2012 +0200
* src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java:
Added new tests to this test suite.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java | 205 +++++++++---
2 files changed, 154 insertions(+), 56 deletions(-)
diffs (305 lines):
diff -r 39e27deb5d4e -r 0ff7c385c559 ChangeLog
--- a/ChangeLog Fri Mar 23 11:06:45 2012 +0100
+++ b/ChangeLog Mon Mar 26 11:56:56 2012 +0200
@@ -1,3 +1,8 @@
+2012-03-26 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java:
+ Added new tests to this test suite.
+
2012-03-23 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java:
diff -r 39e27deb5d4e -r 0ff7c385c559 src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java
--- a/src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java Fri Mar 23 11:06:45 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingPathByEllipseShape.java Mon Mar 26 11:56:56 2012 +0200
@@ -40,6 +40,7 @@
package org.gfxtest.testsuites;
+import java.awt.BasicStroke;
import java.awt.Graphics2D;
@@ -278,6 +279,126 @@
}
/**
+ * Check if line path could be clipped by an ellipse shape. Path is
+ * rendered using stroke paint with zero stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipLinePathByEllipseShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render ellipse which is used as a clip shape
+ CommonClippingOperations.renderClipEllipse(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set clip region and draw the path
+ drawLinePathClippedByEllipseShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if quadratic path could be clipped by an ellipse shape. Path is
+ * rendered using stroke paint with zero stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipQuadraticPathByEllipseShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render ellipse which is used as a clip shape
+ CommonClippingOperations.renderClipEllipse(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set clip region and draw the path
+ drawQuadraticPathClippedByEllipseShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if cubic path could be clipped by an ellipse shape. Path is
+ * rendered using stroke paint with zero stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCubicPathByEllipseShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render ellipse which is used as a clip shape
+ CommonClippingOperations.renderClipEllipse(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(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 zero stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipClosedPathByEllipseShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render ellipse which is used as a clip shape
+ CommonClippingOperations.renderClipEllipse(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(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 zero stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCrossedClosedPathByEllipseShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render ellipse which is used as a clip shape
+ CommonClippingOperations.renderClipEllipse(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set clip region and draw the path
+ drawCrossedPathClippedByEllipseShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
* Check if line path could be clipped by an ellipse shape. Path is rendered
* using stroke paint with thick stroke width.
*
@@ -518,8 +639,8 @@
}
/**
- * Check if line path could be clipped by an ellipse shape. Path is rendered
- * using stroke paint with zero width stroke.
+ * 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
@@ -527,14 +648,12 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testClipLinePathByEllipseShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ public TestResult testClipLinePathByEllipseShapeDashedStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render ellipse which is used as a clip shape
+ // render clip ellipse
CommonClippingOperations.renderClipEllipse(image, graphics2d);
- // set stroke color
- CommonRenderingStyles.setStrokeColor(graphics2d);
- // set stroke width
- CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
// set clip region and draw the path
drawLinePathClippedByEllipseShape(image, graphics2d);
// test result
@@ -542,8 +661,8 @@
}
/**
- * Check if quadratic Bezier path could be clipped by an ellipse shape. Path
- * is rendered using stroke paint with zero width stroke.
+ * 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
@@ -551,23 +670,21 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testClipQuadraticPathByEllipseShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ public TestResult testClipClosedPathByEllipseShapeDashedStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render ellipse which is used as a clip shape
+ // render clip ellipse
CommonClippingOperations.renderClipEllipse(image, graphics2d);
- // set stroke color
- CommonRenderingStyles.setStrokeColor(graphics2d);
- // set stroke width
- CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
// set clip region and draw the path
- drawQuadraticPathClippedByEllipseShape(image, graphics2d);
+ drawClosedPathClippedByEllipseShape(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 zero width stroke.
+ * Check if line path could be clipped by an ellipse shape. Path is
+ * rendered using stroke paint with thick stroke width.
*
* @param image
* work image
@@ -575,23 +692,23 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testClipCubicPathByEllipseShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ public TestResult testClipLinePathByEllipseShapeDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render ellipse which is used as a clip shape
+ // render clip ellipse
CommonClippingOperations.renderClipEllipse(image, graphics2d);
- // set stroke color
- CommonRenderingStyles.setStrokeColor(graphics2d);
// set stroke width
- CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
// set clip region and draw the path
- drawCubicPathClippedByEllipseShape(image, graphics2d);
+ drawLinePathClippedByEllipseShape(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 zero width stroke.
+ * Check if closed path could be clipped by an ellipse shape. Path is
+ * rendered using stroke paint with thick stroke width.
*
* @param image
* work image
@@ -599,14 +716,14 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testClipClosedPathByEllipseShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ public TestResult testClipClosedPathByEllipseShapeDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render ellipse which is used as a clip shape
+ // render clip ellipse
CommonClippingOperations.renderClipEllipse(image, graphics2d);
- // set stroke color
- CommonRenderingStyles.setStrokeColor(graphics2d);
// set stroke width
- CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
// set clip region and draw the path
drawClosedPathClippedByEllipseShape(image, graphics2d);
// test result
@@ -614,30 +731,6 @@
}
/**
- * Check if crossed closed path could be clipped by an ellipse shape. Path
- * is rendered using stroke paint with zero width stroke.
- *
- * @param image
- * work image
- * @param graphics2d
- * graphics canvas
- * @return test result status - PASSED, FAILED or ERROR
- */
- public TestResult testClipCrossedClosedPathByEllipseShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
- {
- // render ellipse which is used as a clip shape
- CommonClippingOperations.renderClipEllipse(image, graphics2d);
- // set stroke color
- CommonRenderingStyles.setStrokeColor(graphics2d);
- // set stroke width
- CommonRenderingStyles.setStrokeZeroThick(graphics2d);
- // set clip region and draw the path
- drawCrossedPathClippedByEllipseShape(image, graphics2d);
- // test result
- return TestResult.PASSED;
- }
-
- /**
* Entry point to the test suite.
*
* @param args
More information about the distro-pkg-dev
mailing list