/hg/gfx-test: * src/org/gfxtest/testsuites/ClippingPathByRectang...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Mar 23 03:04:18 PDT 2012
changeset 39e27deb5d4e in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=39e27deb5d4e
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Mar 23 11:06:45 2012 +0100
* src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java:
Fixed name of one test.
* src/org/gfxtest/testsuites/ClippingPathByRectangleShape.java:
Added new tests to this test suite.
diffstat:
ChangeLog | 7 +
src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java | 2 +-
src/org/gfxtest/testsuites/ClippingPathByRectangleShape.java | 366 ++++++++++-
3 files changed, 344 insertions(+), 31 deletions(-)
diffs (480 lines):
diff -r 9d033e2f3f68 -r 39e27deb5d4e ChangeLog
--- a/ChangeLog Thu Mar 22 10:41:44 2012 +0100
+++ b/ChangeLog Fri Mar 23 11:06:45 2012 +0100
@@ -1,3 +1,10 @@
+2012-03-23 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java:
+ Fixed name of one test.
+ * src/org/gfxtest/testsuites/ClippingPathByRectangleShape.java:
+ Added new tests to this test suite.
+
2012-03-22 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java:
diff -r 9d033e2f3f68 -r 39e27deb5d4e src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java
--- a/src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java Thu Mar 22 10:41:44 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingPathByRectangleArea.java Fri Mar 23 11:06:45 2012 +0100
@@ -692,7 +692,7 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testQuadraticPathByRectangleAreaDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ public TestResult testClipQuadraticPathByRectangleAreaDashedStrokePaint(TestImage image, Graphics2D graphics2d)
{
// render clip rectangle
CommonClippingOperations.renderClipRectangle(image, graphics2d);
diff -r 9d033e2f3f68 -r 39e27deb5d4e src/org/gfxtest/testsuites/ClippingPathByRectangleShape.java
--- a/src/org/gfxtest/testsuites/ClippingPathByRectangleShape.java Thu Mar 22 10:41:44 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingPathByRectangleShape.java Fri Mar 23 11:06:45 2012 +0100
@@ -417,7 +417,7 @@
// set stroke width
CommonRenderingStyles.setStrokeThickWidth(graphics2d);
// set clip region and draw the path
- drawCrossedClosedPathClippedByRectangleShape(image, graphics2d);
+ drawLinePathClippedByRectangleShape(image, graphics2d);
// test result
return TestResult.PASSED;
}
@@ -537,7 +537,7 @@
// set stroke width
CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
// set clip region and draw the path
- drawCrossedClosedPathClippedByRectangleShape(image, graphics2d);
+ drawLinePathClippedByRectangleShape(image, graphics2d);
// test result
return TestResult.PASSED;
}
@@ -661,6 +661,50 @@
}
/**
+ * Check if cubic path could be clipped by a 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 testClipCubicPathByRectangleShapeDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // set clip region and draw the path
+ drawCubicPathClippedByRectangleShape(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 default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipQuadraticPathByRectangleShapeDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // set clip region and draw the path
+ drawQuadraticPathClippedByRectangleShape(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 default stroke width.
*
@@ -683,6 +727,28 @@
}
/**
+ * Check if closed crossed path could be clipped by a 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 testClipCrossedClosedPathByRectangleShapeDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(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.
*
@@ -707,6 +773,54 @@
}
/**
+ * Check if quadratic 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 testClipQuadraticPathByRectangleShapeDashedThickStrokePaint(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
+ 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 thick stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCubicPathByRectangleShapeDashedThickStrokePaint(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
+ 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 thick stroke width.
*
@@ -731,6 +845,30 @@
}
/**
+ * Check if crossed 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 testClipCrossedClosedPathByRectangleShapeDashedThickStrokePaint(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
+ 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.
*
@@ -747,7 +885,7 @@
// set stroke width
CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
// set dashed pattern
- CommonRenderingStyles.setDashedStrokePatternForExtraThickPaths(graphics2d);
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
// set clip region and draw the path
drawLinePathClippedByRectangleShape(image, graphics2d);
// test result
@@ -755,6 +893,54 @@
}
/**
+ * Check if quadratic 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 testClipQuadraticPathByRectangleShapeDashedExtraThickStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(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 thick stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCubicPathByRectangleShapeDashedExtraThickStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(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 thick stroke width.
*
@@ -771,7 +957,7 @@
// set stroke width
CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
// set dashed pattern
- CommonRenderingStyles.setDashedStrokePatternForExtraThickPaths(graphics2d);
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
// set clip region and draw the path
drawClosedPathClippedByRectangleShape(image, graphics2d);
// test result
@@ -779,8 +965,152 @@
}
/**
+ * Check if crossed 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 testClipCrossedClosedPathByRectangleShapeDashedExtraThickStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(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 zero stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipLinePathByRectangleShapeDashedZeroThickStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(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 testClipQuadraticPathByRectangleShapeDashedZeroThickStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(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 testClipCubicPathByRectangleShapeDashedZeroThickStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(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 testClipClosedPathByRectangleShapeDashedZeroThickStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(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 testClipCrossedClosedPathByRectangleShapeDashedZeroThickStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(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 and using round cap style.
+ * using dotted stroke paint with normal stroke width and using round cap style.
*
* @param image
* work image
@@ -793,7 +1123,7 @@
// render clip rectangle
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set stroke width
- CommonRenderingStyles.setStrokeThickWidth(graphics2d, BasicStroke.CAP_ROUND);
+ //CommonRenderingStyles.setStrokeThickWidth(graphics2d, BasicStroke.CAP_ROUND);
// set dashed pattern
CommonRenderingStyles.setDashedStrokePattern(graphics2d, new float[] {1,20});
// set clip region and draw the path
@@ -803,30 +1133,6 @@
}
/**
- * 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;
- }
-
- /**
* Entry point to the test suite.
*
* @param args
More information about the distro-pkg-dev
mailing list