/hg/gfx-test: Eight new tests added tests into the test suite Pa...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Feb 8 00:56:53 PST 2013
changeset 322a567e89ed in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=322a567e89ed
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Feb 08 09:59:53 2013 +0100
Eight new tests added tests into the test suite Paths.java:
testCubicPathFloatDashedStrokePaint(),
testCubicPathDoubleDashedStrokePaint(),
testQuadraticPathFloatDashedStrokePaint(),
testQuadraticPathDoubleDashedStrokePaint(),
testCrossedClosedPathFloatDashedStrokePaint(),
testCrossedClosedPathDoubleDashedStrokePaint(),
testClosedPathFloatDashedStrokePaint() and
testClosedPathDoubleDashedStrokePaint().
diffstat:
ChangeLog | 13 ++
src/org/gfxtest/testsuites/Paths.java | 160 ++++++++++++++++++++++++++++++++++
2 files changed, 173 insertions(+), 0 deletions(-)
diffs (190 lines):
diff -r 4bb286f2122b -r 322a567e89ed ChangeLog
--- a/ChangeLog Thu Feb 07 10:41:24 2013 +0100
+++ b/ChangeLog Fri Feb 08 09:59:53 2013 +0100
@@ -1,3 +1,16 @@
+2013-02-08 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/Paths.java:
+ Eight new tests added tests into the test suite Paths.java:
+ testCubicPathFloatDashedStrokePaint(),
+ testCubicPathDoubleDashedStrokePaint(),
+ testQuadraticPathFloatDashedStrokePaint(),
+ testQuadraticPathDoubleDashedStrokePaint(),
+ testCrossedClosedPathFloatDashedStrokePaint(),
+ testCrossedClosedPathDoubleDashedStrokePaint(),
+ testClosedPathFloatDashedStrokePaint() and
+ testClosedPathDoubleDashedStrokePaint().
+
2013-02-07 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java:
diff -r 4bb286f2122b -r 322a567e89ed src/org/gfxtest/testsuites/Paths.java
--- a/src/org/gfxtest/testsuites/Paths.java Thu Feb 07 10:41:24 2013 +0100
+++ b/src/org/gfxtest/testsuites/Paths.java Fri Feb 08 09:59:53 2013 +0100
@@ -1228,6 +1228,166 @@
}
/**
+ * Check if cubic 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 testCubicPathFloatDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // draw the path
+ drawCubicPathFloat(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 default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testCubicPathDoubleDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // draw the path
+ drawCubicPathDouble(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 default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testQuadraticPathFloatDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // draw the path
+ drawQuadraticPathFloat(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 default stroke width.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testQuadraticPathDoubleDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // draw the path
+ drawQuadraticPathDouble(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if closed crossed 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 testCrossedClosedPathFloatDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // draw the path
+ drawCrossedPathFloat(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if closed crossed 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 testCrossedClosedPathDoubleDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // draw the path
+ drawCrossedPathDouble(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 testClosedPathFloatDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // draw the path
+ drawClosedPathFloat(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 testClosedPathDoubleDashedStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set dashed pattern
+ CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+ // draw the path
+ drawClosedPathDouble(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args
More information about the distro-pkg-dev
mailing list