/hg/gfx-test: * src/org/gfxtest/testsuites/ClippingCircleByRecta...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Tue Feb 28 03:00:16 PST 2012


changeset a8e84666e1a5 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=a8e84666e1a5
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Feb 28 12:02:52 2012 +0100

	* src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java:
	Added mising empty line (minor).
	     * src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java:
	Added new test cases.


diffstat:

 ChangeLog                                                           |    7 +
 src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java      |    1 +
 src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java |  274 +++++++++-
 3 files changed, 277 insertions(+), 5 deletions(-)

diffs (338 lines):

diff -r 31433950c5cd -r a8e84666e1a5 ChangeLog
--- a/ChangeLog	Mon Feb 27 18:19:42 2012 +0100
+++ b/ChangeLog	Tue Feb 28 12:02:52 2012 +0100
@@ -1,3 +1,10 @@
+2012-02-28  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java:
+	Added mising empty line (minor).
+	* src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java:
+	Added new test cases.
+
 2012-02-27  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java:
diff -r 31433950c5cd -r a8e84666e1a5 src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java	Mon Feb 27 18:19:42 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java	Tue Feb 28 12:02:52 2012 +0100
@@ -963,6 +963,7 @@
         // test result
         return TestResult.PASSED;
     }
+
     /**
      * Entry point to the test suite.
      * 
diff -r 31433950c5cd -r a8e84666e1a5 src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java	Mon Feb 27 18:19:42 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java	Tue Feb 28 12:02:52 2012 +0100
@@ -131,7 +131,7 @@
      */
     private void drawCircleClippedByRoundRectangleAlphaPaintRed(TestImage image, Graphics2D graphics2d, int transparency)
     {
-        // render clip rectangle
+        // render clip round rectangle
         CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
         // set stroke color
         CommonRenderingStyles.setStrokeColor(graphics2d);
@@ -156,7 +156,7 @@
      */
     private void drawCircleClippedByRoundRectangleAlphaPaintGreen(TestImage image, Graphics2D graphics2d, int transparency)
     {
-        // render clip rectangle
+        // render clip round rectangle
         CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
         // set stroke color
         CommonRenderingStyles.setStrokeColor(graphics2d);
@@ -181,7 +181,7 @@
      */
     private void drawCircleClippedByRoundRectangleAlphaPaintBlue(TestImage image, Graphics2D graphics2d, int transparency)
     {
-        // render clip rectangle
+        // render clip round rectangle
         CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
         // set stroke color
         CommonRenderingStyles.setStrokeColor(graphics2d);
@@ -267,9 +267,9 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeZeroWideStrokePaint(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRoundRectangleShapeZeroWideStrokePaint(TestImage image, Graphics2D graphics2d)
     {
-        // render clip rectangle which is used as a base for clip shape
+        // render clip round rectangle which is used as a base for clip shape
         CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
         // set stroke width
         CommonRenderingStyles.setStrokeZeroThick(graphics2d);
@@ -701,6 +701,270 @@
     }
 
     /**
+     * Check if circle shape could be clipped by a round rectangle shape. Circle is
+     * rendered using texture paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRoundRectangleShapeDiagonalCheckerTexturePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip round rectangle which is used as a base for clip shape
+        CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+        // set the texture
+        CommonRenderingStyles.setTextureFillUsingDiagonalCheckerTexture(image, graphics2d);
+        // set clip region and render filled circle
+        drawFilledCircleClippedByRoundRectangleShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a round rectangle shape. Circle is
+     * rendered using texture paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRoundRectangleShapeGridTexturePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip round rectangle which is used as a base for clip shape
+        CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+        // set the texture
+        CommonRenderingStyles.setTextureFillUsingGridTexture(image, graphics2d);
+        // set clip region and render filled circle
+        drawFilledCircleClippedByRoundRectangleShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a round rectangle shape. Circle is
+     * rendered using texture paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRoundRectangleShapeDiagonalGridTexturePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip round rectangle which is used as a base for clip shape
+        CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+        // set the texture
+        CommonRenderingStyles.setTextureFillUsingDiagonalGridTexture(image, graphics2d);
+        // set clip region and render filled circle
+        drawFilledCircleClippedByRoundRectangleShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a round rectangle shape. Circle is
+     * rendered using texture paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRoundRectangleShapeColorDotsTexturePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip round rectangle which is used as a base for clip shape
+        CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+        // set the texture
+        CommonRenderingStyles.setTextureFillUsingColorDotsTexture(image, graphics2d);
+        // set clip region and render filled circle
+        drawFilledCircleClippedByRoundRectangleShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a round rectangle shape. Circle is
+     * rendered using texture paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRoundRectangleShapeHorizontalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip round rectangle which is used as a base for clip shape
+        CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+        // set the texture
+        CommonRenderingStyles.setTextureFillUsingHorizontalStripesTexture(image, graphics2d);
+        // set clip region and render filled circle
+        drawFilledCircleClippedByRoundRectangleShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a round rectangle shape. Circle is
+     * rendered using texture paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRoundRectangleShapeVerticalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip round rectangle which is used as a base for clip shape
+        CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+        // set the texture
+        CommonRenderingStyles.setTextureFillUsingVerticalStripesTexture(image, graphics2d);
+        // set clip region and render filled circle
+        drawFilledCircleClippedByRoundRectangleShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a round rectangle shape. Circle is
+     * rendered using texture paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRoundRectangleShapeDiagonalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip round rectangle which is used as a base for clip shape
+        CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+        // set the texture
+        CommonRenderingStyles.setTextureFillUsingDiagonalStripesTexture(image, graphics2d);
+        // set clip region and render filled circle
+        drawFilledCircleClippedByRoundRectangleShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a round rectangle shape. Circle is
+     * rendered using texture paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRoundRectangleShapeHorizontalColorStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip round rectangle which is used as a base for clip shape
+        CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+        // set the texture
+        CommonRenderingStyles.setTextureFillUsingHorizontalColorStripesTexture(image, graphics2d);
+        // set clip region and render filled circle
+        drawFilledCircleClippedByRoundRectangleShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a round rectangle shape. Circle is
+     * rendered using texture paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRoundRectangleShapeVerticalColorStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip round rectangle which is used as a base for clip shape
+        CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+        // set the texture
+        CommonRenderingStyles.setTextureFillUsingVerticalColorStripesTexture(image, graphics2d);
+        // set clip region and render filled circle
+        drawFilledCircleClippedByRoundRectangleShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a round rectangle shape. Circle is
+     * rendered using texture paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRoundRectangleShapeRGB1TexturePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip round rectangle which is used as a base for clip shape
+        CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+        // set the texture
+        CommonRenderingStyles.setTextureFillUsingRGBTexture1(image, graphics2d);
+        // set clip region and render filled circle
+        drawFilledCircleClippedByRoundRectangleShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a round rectangle shape. Circle is
+     * rendered using texture paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRoundRectangleShapeRGB2TexturePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip round rectangle which is used as a base for clip shape
+        CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+        // set the texture
+        CommonRenderingStyles.setTextureFillUsingRGBTexture2(image, graphics2d);
+        // set clip region and render filled circle
+        drawFilledCircleClippedByRoundRectangleShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a round rectangle shape. Circle is
+     * rendered using texture paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRoundRectangleShapeRGB3TexturePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip round rectangle which is used as a base for clip shape
+        CommonClippingOperations.renderClipRoundRectangle(image, graphics2d);
+        // set the texture
+        CommonRenderingStyles.setTextureFillUsingRGBTexture3(image, graphics2d);
+        // set clip region and render filled circle
+        drawFilledCircleClippedByRoundRectangleShape(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
      * Entry point to the test suite.
      * 
      * @param args



More information about the distro-pkg-dev mailing list