/hg/gfx-test: * src/org/gfxtest/testsuites/ClippingPathByRectang...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Mar 21 02:33:48 PDT 2012
changeset 340dbde1b7e4 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=340dbde1b7e4
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Mar 21 10:36:00 2012 +0100
* src/org/gfxtest/testsuites/ClippingPathByRectangleShape.java:
Added new tests to this test suite.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/ClippingPathByRectangleShape.java | 291 +++++++++-
2 files changed, 245 insertions(+), 51 deletions(-)
diffs (471 lines):
diff -r 8493e62e5065 -r 340dbde1b7e4 ChangeLog
--- a/ChangeLog Tue Mar 20 11:44:02 2012 +0100
+++ b/ChangeLog Wed Mar 21 10:36:00 2012 +0100
@@ -1,3 +1,8 @@
+2012-03-21 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingPathByRectangleShape.java:
+ Added new tests to this test suite.
+
2012-03-20 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/ClippingCircleBySelfIntersectingPolygonalShape.java:
diff -r 8493e62e5065 -r 340dbde1b7e4 src/org/gfxtest/testsuites/ClippingPathByRectangleShape.java
--- a/src/org/gfxtest/testsuites/ClippingPathByRectangleShape.java Tue Mar 20 11:44:02 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingPathByRectangleShape.java Wed Mar 21 10:36:00 2012 +0100
@@ -40,6 +40,7 @@
package org.gfxtest.testsuites;
+import java.awt.BasicStroke;
import java.awt.Graphics2D;
@@ -88,7 +89,7 @@
}
/**
- * Draw path consisting of one line only clipped by rectangle area.
+ * Draw path consisting of one line only clipped by rectangle shape.
*
* @param image
* work image
@@ -106,7 +107,7 @@
}
/**
- * Draw quadratic path clipped by rectangle area.
+ * Draw quadratic path clipped by rectangle shape.
*
* @param image
* work image
@@ -124,7 +125,7 @@
}
/**
- * Draw cubic path clipped by rectangle area.
+ * Draw cubic path clipped by rectangle shape.
*
* @param image
* work image
@@ -142,7 +143,7 @@
}
/**
- * Draw closed path clipped by rectangle area.
+ * Draw closed path clipped by rectangle shape.
*
* @param image
* work image
@@ -160,7 +161,7 @@
}
/**
- * Draw crossed closed path clipped by rectangle area.
+ * Draw crossed closed path clipped by rectangle shape.
*
* @param image
* work image
@@ -178,7 +179,7 @@
}
/**
- * Check if line path could be clipped by a rectangle area. Path is
+ * Check if line path could be clipped by a rectangle shape. Path is
* rendered using stroke paint with default stroke width.
*
* @param image
@@ -198,7 +199,7 @@
}
/**
- * Check if quadratic path could be clipped by a rectangle area. Path is
+ * Check if quadratic path could be clipped by a rectangle shape. Path is
* rendered using stroke paint with default stroke width.
*
* @param image
@@ -218,7 +219,7 @@
}
/**
- * Check if cubic path could be clipped by a rectangle area. Path is
+ * Check if cubic path could be clipped by a rectangle shape. Path is
* rendered using stroke paint with default stroke width.
*
* @param image
@@ -238,7 +239,7 @@
}
/**
- * Check if closed path could be clipped by a rectangle area. Path is
+ * Check if closed path could be clipped by a rectangle shape. Path is
* rendered using stroke paint with default stroke width.
*
* @param image
@@ -258,7 +259,7 @@
}
/**
- * Check if crossed closed path could be clipped by a rectangle area. Path is
+ * Check if crossed closed path could be clipped by a rectangle shape. Path is
* rendered using stroke paint with default stroke width.
*
* @param image
@@ -278,6 +279,126 @@
}
/**
+ * Check if line path could be clipped by a rectangle 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 testClipLinePathByRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set clip region and draw the path
+ drawLinePathClippedByRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if quadratic path could be clipped by a rectangle 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 testClipQuadraticPathByRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set clip region and draw the path
+ drawQuadraticPathClippedByRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if cubic path could be clipped by a rectangle 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 testClipCubicPathByRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set clip region and draw the path
+ drawCubicPathClippedByRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if closed path could be clipped by a rectangle 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 testClipClosedPathByRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set clip region and draw the path
+ drawClosedPathClippedByRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if crossed closed path could be clipped by a rectangle 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 testClipCrossedClosedPathByRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set clip region and draw the path
+ drawCrossedClosedPathClippedByRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
* Check if line path could be clipped by a rectangle shape. Path is rendered
* using stroke paint with thick stroke width.
*
@@ -518,8 +639,8 @@
}
/**
- * Check if line path could be clipped by a rectangle shape. Path is rendered
- * using stroke paint with zero width stroke.
+ * Check if line path could be clipped by a rectangle shape. Path is
+ * rendered using stroke paint with default stroke width.
*
* @param image
* work image
@@ -527,23 +648,21 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testClipLinePathByRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ public TestResult testClipLinePathByRectangleShapeDashedStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render rectangle which is used as a clip shape
+ // render clip rectangle
CommonClippingOperations.renderClipRectangle(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
- drawCrossedClosedPathClippedByRectangleShape(image, graphics2d);
+ drawLinePathClippedByRectangleShape(image, graphics2d);
// test result
return TestResult.PASSED;
}
/**
- * Check if quadratic Bezier path could be clipped by a rectangle shape. Path
- * is rendered using stroke paint with zero width stroke.
+ * Check if closed path could be clipped by a rectangle 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 testClipQuadraticPathByRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ public TestResult testClipClosedPathByRectangleShapeDashedStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render rectangle which is used as a clip shape
+ // render clip rectangle
CommonClippingOperations.renderClipRectangle(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
- drawQuadraticPathClippedByRectangleShape(image, graphics2d);
+ drawClosedPathClippedByRectangleShape(image, graphics2d);
// test result
return TestResult.PASSED;
}
/**
- * Check if cubic Bezier path could be clipped by a rectangle shape. Path
- * is rendered using stroke paint with zero width stroke.
+ * Check if line path could be clipped by a rectangle 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 testClipCubicPathByRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ public TestResult testClipLinePathByRectangleShapeDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render rectangle which is used as a clip shape
+ // render clip rectangle
CommonClippingOperations.renderClipRectangle(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
- drawCubicPathClippedByRectangleShape(image, graphics2d);
+ drawLinePathClippedByRectangleShape(image, graphics2d);
// test result
return TestResult.PASSED;
}
/**
- * Check if closed path could be clipped by a rectangle shape. Path
- * is rendered using stroke paint with zero width stroke.
+ * Check if closed path could be clipped by a rectangle 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 testClipClosedPathByRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ public TestResult testClipClosedPathByRectangleShapeDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render rectangle which is used as a clip shape
+ // render clip rectangle
CommonClippingOperations.renderClipRectangle(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
drawClosedPathClippedByRectangleShape(image, graphics2d);
// test result
@@ -614,8 +731,8 @@
}
/**
- * Check if crossed closed path could be clipped by a rectangle shape. Path
- * is rendered using stroke paint with zero width stroke.
+ * Check if line path could be clipped by a rectangle shape. Path is
+ * rendered using stroke paint with thick stroke width.
*
* @param image
* work image
@@ -623,16 +740,88 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testClipCrossedClosedPathByRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
+ public TestResult testClipLinePathByRectangleShapeDashedExtraThickStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render rectangle which is used as a clip shape
+ // render clip rectangle
CommonClippingOperations.renderClipRectangle(image, graphics2d);
- // set stroke color
- CommonRenderingStyles.setStrokeColor(graphics2d);
// set stroke width
- CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePatternForExtraThickPaths(graphics2d);
// set clip region and draw the path
- drawCrossedClosedPathClippedByRectangleShape(image, graphics2d);
+ drawLinePathClippedByRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if closed path could be clipped by a rectangle shape. 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 testClipClosedPathByRectangleShapeDashedExtraThickStrokePaint(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
+ drawClosedPathClippedByRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if line path could be clipped by a rectangle shape. Path is rendered
+ * using stroke paint with thick stroke width and using round cap style.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipLinePathByRectangleShapeDottedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d, BasicStroke.CAP_ROUND);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d, new float[] {1,20});
+ // set clip region and draw the path
+ drawLinePathClippedByRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if closed path could be clipped by a rectangle shape. Path is rendered
+ * using stroke paint with thick stroke width and using round cap style.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipClosedPathByRectangleShapeDottedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d, BasicStroke.CAP_ROUND);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d, new float[] {1,20});
+ // set clip region and draw the path
+ drawClosedPathClippedByRectangleShape(image, graphics2d);
// test result
return TestResult.PASSED;
}
More information about the distro-pkg-dev
mailing list