/hg/gfx-test: Eight tests added into the test suite Paths.java.

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Tue Feb 19 00:33:55 PST 2013


changeset 7db8a30325b5 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=7db8a30325b5
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Feb 19 09:37:03 2013 +0100

	Eight tests added into the test suite Paths.java.


diffstat:

 ChangeLog                             |    7 +-
 src/org/gfxtest/testsuites/Paths.java |  176 ++++++++++++++++++++++++++++++++++
 2 files changed, 182 insertions(+), 1 deletions(-)

diffs (200 lines):

diff -r 5b0110c99263 -r 7db8a30325b5 ChangeLog
--- a/ChangeLog	Mon Feb 18 09:30:47 2013 +0100
+++ b/ChangeLog	Tue Feb 19 09:37:03 2013 +0100
@@ -1,4 +1,9 @@
-2013-02-11  Pavel Tisnovsky  <ptisnovs at redhat.com>
+2013-02-19  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/Paths.java:
+	Eight tests added into the test suite Paths.java.
+
+2013-02-18  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/Paths.java:
 	Additional tests added into the test suite Paths.java.
diff -r 5b0110c99263 -r 7db8a30325b5 src/org/gfxtest/testsuites/Paths.java
--- a/src/org/gfxtest/testsuites/Paths.java	Mon Feb 18 09:30:47 2013 +0100
+++ b/src/org/gfxtest/testsuites/Paths.java	Tue Feb 19 09:37:03 2013 +0100
@@ -1434,6 +1434,182 @@
     }
 
     /**
+     * Check if cubic path could be clipped by an ellipse 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 testCubicPathFloatDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(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 thick stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCubicPathDoubleDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(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 thick stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testQuadraticPathFloatDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(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 thick stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testQuadraticPathDoubleDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(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 thick stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCrossedClosedPathFloatDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(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 thick stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCrossedClosedPathDoubleDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(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 thick stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClosedPathFloatDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(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 thick stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClosedPathDoubleDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(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