/hg/gfx-test: * src/org/gfxtest/testsuites/ClippingPathByRoundRe...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue May 15 02:45:20 PDT 2012
changeset fe2ac03939d3 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=fe2ac03939d3
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue May 15 11:48:01 2012 +0200
* src/org/gfxtest/testsuites/ClippingPathByRoundRectangleShape.java:
Added new tests to this test suite.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/ClippingPathByRoundRectangleShape.java | 240 +++++++++-
2 files changed, 240 insertions(+), 5 deletions(-)
diffs (297 lines):
diff -r 88fa675194be -r fe2ac03939d3 ChangeLog
--- a/ChangeLog Mon May 14 11:23:24 2012 +0200
+++ b/ChangeLog Tue May 15 11:48:01 2012 +0200
@@ -1,3 +1,8 @@
+2012-05-15 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingPathByRoundRectangleShape.java:
+ Added new tests to this test suite.
+
2012-05-14 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/PrintTestColorPaint.java:
diff -r 88fa675194be -r fe2ac03939d3 src/org/gfxtest/testsuites/ClippingPathByRoundRectangleShape.java
--- a/src/org/gfxtest/testsuites/ClippingPathByRoundRectangleShape.java Mon May 14 11:23:24 2012 +0200
+++ b/src/org/gfxtest/testsuites/ClippingPathByRoundRectangleShape.java Tue May 15 11:48:01 2012 +0200
@@ -292,7 +292,7 @@
*/
public TestResult testClipLinePathByRoundRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip round rectangle
CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
// set stroke color
CommonRenderingStyles.setStrokeColor(graphics2d);
@@ -316,7 +316,7 @@
*/
public TestResult testClipQuadraticPathByRoundRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip round rectangle
CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
// set stroke color
CommonRenderingStyles.setStrokeColor(graphics2d);
@@ -340,7 +340,7 @@
*/
public TestResult testClipCubicPathByRoundRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip round rectangle
CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
// set stroke color
CommonRenderingStyles.setStrokeColor(graphics2d);
@@ -364,7 +364,7 @@
*/
public TestResult testClipClosedPathByRoundRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip round rectangle
CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
// set stroke color
CommonRenderingStyles.setStrokeColor(graphics2d);
@@ -388,7 +388,7 @@
*/
public TestResult testClipCrossedClosedPathByRoundRectangleShapeZeroStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip round rectangle
CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
// set stroke color
CommonRenderingStyles.setStrokeColor(graphics2d);
@@ -641,6 +641,236 @@
}
/**
+ * 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 testClipLinePathByRoundRectangleShapeDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // set clip region and draw the path
+ drawLinePathClippedByRoundRectangleShape(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 testClipCubicPathByRoundRectangleShapeDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // set clip region and draw the path
+ drawCubicPathClippedByRoundRectangleShape(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 testClipQuadraticPathByRoundRectangleShapeDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // set clip region and draw the path
+ drawQuadraticPathClippedByRoundRectangleShape(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 testClipClosedPathByRoundRectangleShapeDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // set clip region and draw the path
+ drawClosedPathClippedByRoundRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if closed crossed 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 testClipCrossedClosedPathByRoundRectangleShapeDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // set clip region and draw the path
+ drawCrossedClosedPathClippedByRoundRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if line path could be clipped by a round 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 testClipLinePathByRoundRectangleShapeDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(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 thick stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipQuadraticPathByRoundRectangleShapeDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(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 thick stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCubicPathByRoundRectangleShapeDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(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 thick stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipClosedPathByRoundRectangleShapeDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(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 thick stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCrossedClosedPathByRoundRectangleShapeDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip round rectangle
+ CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // set clip region and draw the path
+ drawCrossedClosedPathClippedByRoundRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args
More information about the distro-pkg-dev
mailing list