/hg/gfx-test: 2011-10-13 Pavel Tisnovsky <ptisnovs at redhat.com>

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Oct 13 06:07:18 PDT 2011


changeset 9704d28cde8d in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=9704d28cde8d
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Oct 13 15:09:11 2011 +0200

	2011-10-13 Pavel Tisnovsky <ptisnovs at redhat.com>

	 * src/org/gfxtest/framework/CommonShapesRenderer.java:
	Helper method for drawing empty rounded rectangle. Renamed
	one method used by test cases.
		* src/org/gfxtest/testsuites/RadialGradientPaint.java: Renamed
	method calls due to changes in CommonShapesRenderer
		* src/org/gfxtest/testsuites/ColorPaint.java: Added 28 new
	rendering tests.


diffstat:

 ChangeLog                                           |   10 +
 src/org/gfxtest/framework/CommonShapesRenderer.java |   26 +-
 src/org/gfxtest/testsuites/ColorPaint.java          |  707 +++++++++++++++++++-
 src/org/gfxtest/testsuites/RadialGradientPaint.java |    4 +-
 4 files changed, 740 insertions(+), 7 deletions(-)

diffs (truncated from 827 to 500 lines):

diff -r 6a430486209a -r 9704d28cde8d ChangeLog
--- a/ChangeLog	Wed Oct 12 11:16:52 2011 +0200
+++ b/ChangeLog	Thu Oct 13 15:09:11 2011 +0200
@@ -1,3 +1,13 @@
+2011-10-13  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/framework/CommonShapesRenderer.java:
+	Helper method for drawing empty rounded rectangle.
+	Renamed one method used by test cases.
+	* src/org/gfxtest/testsuites/RadialGradientPaint.java:
+	Renamed method calls due to changes in CommonShapesRenderer
+	* src/org/gfxtest/testsuites/ColorPaint.java:
+	Added 28 new rendering tests.
+
 2011-10-12  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/framework/CommonShapesRenderer.java:
diff -r 6a430486209a -r 9704d28cde8d src/org/gfxtest/framework/CommonShapesRenderer.java
--- a/src/org/gfxtest/framework/CommonShapesRenderer.java	Wed Oct 12 11:16:52 2011 +0200
+++ b/src/org/gfxtest/framework/CommonShapesRenderer.java	Thu Oct 13 15:09:11 2011 +0200
@@ -179,6 +179,30 @@
     }
 
     /**
+     * Draw rounded rectangle onto the graphics canvas.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void drawRoundedRectangle(TestImage image, Graphics2D graphics)
+    {
+        // calculate center of the image
+        int xc = image.getCenterX();
+        int yc = image.getCenterY();
+
+        // calculate radius of circle
+        int radius = calculateRadius(image);
+
+        // draw the rounded rectangle
+        graphics.drawRoundRect(xc - radius, yc - radius, radius << 1, radius << 1, ROUND_RECT_RADIUS, ROUND_RECT_RADIUS);
+
+        // draw crosses at interesting points of image
+        drawCrossesForBasicShapes(graphics, xc, yc, radius);
+    }
+
+    /**
      * Draw filled arc onto the graphics canvas.
      * 
      * @param image
@@ -282,7 +306,7 @@
      * @param graphics
      *            graphics context for image
      */
-    public static void drawFilledRoundRect(TestImage image, Graphics2D graphics)
+    public static void drawFilledRoundedRectangle(TestImage image, Graphics2D graphics)
     {
         // calculate center of the image
         int xc = image.getCenterX();
diff -r 6a430486209a -r 9704d28cde8d src/org/gfxtest/testsuites/ColorPaint.java
--- a/src/org/gfxtest/testsuites/ColorPaint.java	Wed Oct 12 11:16:52 2011 +0200
+++ b/src/org/gfxtest/testsuites/ColorPaint.java	Thu Oct 13 15:09:11 2011 +0200
@@ -158,7 +158,7 @@
         CommonRenderingStyles.setTransparentFillColor(graphics, color, transparency);
         // draw the rounded rectangle
         // filled by semi-transparent color
-        CommonShapesRenderer.drawFilledRoundRect(image, graphics);
+        CommonShapesRenderer.drawFilledRoundedRectangle(image, graphics);
         // test return value
         return TestResult.PASSED;
     }
@@ -934,7 +934,7 @@
     }
 
     /**
-     * Test if filled rectangle drawn by graphics.fillRect() is rendered correctly.
+     * Test if rectangle drawn by graphics.drawOval() is rendered correctly.
      * 
      * @param image
      *            image to which two dimensional shape is to be rendered
@@ -942,8 +942,73 @@
      *            graphics context for image
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testRectangleColorFill(TestImage image, Graphics2D graphics)
+    public TestResult testRectangleBasicStrokeEmptyFill(TestImage image, Graphics2D graphics)
     {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // draw the rectangle
+        CommonShapesRenderer.drawRectangle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if rectangle drawn by graphics.drawOval() is rendered correctly.
+     * Stroke of the rectangle is 10 pixels wide.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleThickStrokeEmptyFill(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set 10 pixels wide stroke
+        CommonRenderingStyles.setStrokeThickWidth(graphics);
+        // draw the rectangle
+        CommonShapesRenderer.drawRectangle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if rectangle drawn by graphics.drawOval() is rendered correctly.
+     * Stroke of the rectangle is 30 pixels wide.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleExtraThickStrokeEmptyFill(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set 30 pixels wide stroke
+        CommonRenderingStyles.setStrokeExtraThickWidth(graphics);
+        // draw the rectangle
+        CommonShapesRenderer.drawRectangle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if filled rectangle drawn by graphics.fillOval() is rendered correctly.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleBasicStrokeColorFill(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
         // set fill color
         CommonRenderingStyles.setFillColor(graphics);
         // draw the rectangle
@@ -953,6 +1018,640 @@
     }
 
     /**
+     * Test if filled rectangle drawn by graphics.fillOval() is rendered correctly.
+     * Stroke of the rectangle is 10 pixels wide (but it cannot affect the draw
+     * process).
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleThickStrokeColorFill(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set 10 pixels wide stroke
+        CommonRenderingStyles.setStrokeThickWidth(graphics);
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics);
+        // draw the rectangle
+        CommonShapesRenderer.drawFilledRectangle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if filled rectangle drawn by graphics.fillOval() is rendered correctly.
+     * Stroke of the rectangle is 30 pixels wide (but it cannot affect the draw
+     * process).
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleExtraThickStrokeColorFill(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set 30 pixels wide stroke
+        CommonRenderingStyles.setStrokeExtraThickWidth(graphics);
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics);
+        // draw the rectangle
+        CommonShapesRenderer.drawFilledRectangle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test color paint using semi transparent color - red at 0% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentRed0FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.red, 0);
+    }
+
+    /**
+     * Test color paint using semi transparent color - red at 25% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentRed25FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.red, 25);
+    }
+
+    /**
+     * Test color paint using semi transparent color - red at 50% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentRed50FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.red, 50);
+    }
+
+    /**
+     * Test color paint using semi transparent color - red at 75% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentRed75FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.red, 75);
+    }
+
+    /**
+     * Test color paint using semi transparent color - red at 100% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentRed100FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.red, 100);
+    }
+
+    /**
+     * Test color paint using semi transparent color - green at 0% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentGreen0FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.green, 0);
+    }
+
+    /**
+     * Test color paint using semi transparent color - green at 25% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentGreen25FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.green, 25);
+    }
+
+    /**
+     * Test color paint using semi transparent color - green at 50% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentGreen50FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.green, 50);
+    }
+
+    /**
+     * Test color paint using semi transparent color - green at 75% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentGreen75FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.green, 75);
+    }
+
+    /**
+     * Test color paint using semi transparent color - green at 100% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentGreen100FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.green, 100);
+    }
+
+    /**
+     * Test color paint using semi transparent color - blue at 0% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentBlue0FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.blue, 0);
+    }
+
+    /**
+     * Test color paint using semi transparent color - blue at 25% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentBlue25FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.blue, 25);
+    }
+
+    /**
+     * Test color paint using semi transparent color - blue at 50% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentBlue50FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.blue, 50);
+    }
+
+    /**
+     * Test color paint using semi transparent color - blue at 75% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentBlue75FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.blue, 75);
+    }
+
+    /**
+     * Test color paint using semi transparent color - blue at 100% of
+     * transparency.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRectangleTransparentBlue100FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentRectangle(image, graphics, Color.blue, 100);
+    }
+
+    /**
+     * Test if rectangle drawn by graphics.drawOval() is rendered correctly.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRoundedRectangleBasicStrokeEmptyFill(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // draw the rectangle
+        CommonShapesRenderer.drawRectangle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if rounded rectangle drawn by graphics.drawOval() is rendered correctly.
+     * Stroke of the rounded rectangle is 10 pixels wide.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRoundedRectangleThickStrokeEmptyFill(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set 10 pixels wide stroke
+        CommonRenderingStyles.setStrokeThickWidth(graphics);
+        // draw the rounded rectangle
+        CommonShapesRenderer.drawRoundedRectangle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if rounded rectangle drawn by graphics.drawOval() is rendered correctly.
+     * Stroke of the rounded rectangle is 30 pixels wide.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testRoundedRectangleExtraThickStrokeEmptyFill(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set 30 pixels wide stroke
+        CommonRenderingStyles.setStrokeExtraThickWidth(graphics);
+        // draw the rounded rectangle
+        CommonShapesRenderer.drawRoundedRectangle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if filled rounded rectangle drawn by graphics.fillOval() is rendered correctly.
+     * 



More information about the distro-pkg-dev mailing list