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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Oct 12 02:22:02 PDT 2011


changeset 6a430486209a in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=6a430486209a
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Oct 12 11:16:52 2011 +0200

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

	 * src/org/gfxtest/framework/CommonShapesRenderer.java:
	Helper method for drawing empty arc.
		* src/org/gfxtest/testsuites/ColorPaint.java: Added 14 new
	rendering tests.


diffstat:

 ChangeLog                                           |    7 +
 src/org/gfxtest/framework/CommonShapesRenderer.java |   24 +
 src/org/gfxtest/testsuites/ColorPaint.java          |  477 +++++++++++++++++++-
 3 files changed, 505 insertions(+), 3 deletions(-)

diffs (truncated from 577 to 500 lines):

diff -r a7b36c39d7c3 -r 6a430486209a ChangeLog
--- a/ChangeLog	Tue Oct 11 11:13:26 2011 +0200
+++ b/ChangeLog	Wed Oct 12 11:16:52 2011 +0200
@@ -1,3 +1,10 @@
+2011-10-12  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/framework/CommonShapesRenderer.java:
+	Helper method for drawing empty arc.
+	* src/org/gfxtest/testsuites/ColorPaint.java:
+	Added 14 new rendering tests.
+
 2011-10-11  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/framework/CommonRenderingStyles.java:
diff -r a7b36c39d7c3 -r 6a430486209a src/org/gfxtest/framework/CommonShapesRenderer.java
--- a/src/org/gfxtest/framework/CommonShapesRenderer.java	Tue Oct 11 11:13:26 2011 +0200
+++ b/src/org/gfxtest/framework/CommonShapesRenderer.java	Wed Oct 12 11:16:52 2011 +0200
@@ -179,6 +179,30 @@
     }
 
     /**
+     * Draw filled arc 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 drawArc(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 empty arc
+        graphics.drawArc(xc - radius, yc - radius, radius << 1, radius << 1, 0, 135 + 180);
+
+        // draw crosses at interesting points of image
+        drawCrossesForBasicShapes(graphics, xc, yc, radius);
+    }
+
+    /**
      * Draw filled circle onto the graphics canvas.
      * 
      * @param image
diff -r a7b36c39d7c3 -r 6a430486209a src/org/gfxtest/testsuites/ColorPaint.java
--- a/src/org/gfxtest/testsuites/ColorPaint.java	Tue Oct 11 11:13:26 2011 +0200
+++ b/src/org/gfxtest/testsuites/ColorPaint.java	Wed Oct 12 11:16:52 2011 +0200
@@ -79,12 +79,143 @@
         // set fill color
         CommonRenderingStyles.setTransparentFillColor(graphics, color, transparency);
         // draw the circle
+        // filled by semi-transparent color
         CommonShapesRenderer.drawFilledCircle(image, graphics);
         // test return value
         return TestResult.PASSED;
     }
 
     /**
+     * This method renders transparent arc using given color and transparency
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @param color
+     *            circle fill color
+     * @param transparency
+     *            circle fill color transparency
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    private static TestResult renderTransparentArc(TestImage image, Graphics2D graphics, Color color, int transparency)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillColor(graphics, color, transparency);
+        // draw the arc
+        // filled by semi-transparent color
+        CommonShapesRenderer.drawFilledArc(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * This method renders transparent rectangle using given color and transparency
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @param color
+     *            circle fill color
+     * @param transparency
+     *            circle fill color transparency
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    private static TestResult renderTransparentRectangle(TestImage image, Graphics2D graphics, Color color, int transparency)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillColor(graphics, color, transparency);
+        // draw the rectangle
+        // filled by semi-transparent color
+        CommonShapesRenderer.drawFilledRectangle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * This method renders transparent rounded rectangle using given color and transparency
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @param color
+     *            circle fill color
+     * @param transparency
+     *            circle fill color transparency
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    private static TestResult renderTransparentRoundedRectangle(TestImage image, Graphics2D graphics, Color color, int transparency)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillColor(graphics, color, transparency);
+        // draw the rounded rectangle
+        // filled by semi-transparent color
+        CommonShapesRenderer.drawFilledRoundRect(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * This method renders transparent polygon using given color and transparency
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @param color
+     *            circle fill color
+     * @param transparency
+     *            circle fill color transparency
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    private static TestResult renderTransparentPolygon(TestImage image, Graphics2D graphics, Color color, int transparency)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillColor(graphics, color, transparency);
+        // draw the polygon
+        // filled by semi-transparent color
+        CommonShapesRenderer.drawFilledPolygon(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * This method renders transparent closed path using given color and transparency
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @param color
+     *            circle fill color
+     * @param transparency
+     *            circle fill color transparency
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    private static TestResult renderTransparentClosedPath(TestImage image, Graphics2D graphics, Color color, int transparency)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillColor(graphics, color, transparency);
+        // draw the closed path
+        // filled by semi-transparent color
+        CommonShapesRenderer.drawFilledClosedPath(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
      * Test if circle drawn by graphics.drawOval() is rendered correctly.
      * 
      * @param image
@@ -444,6 +575,69 @@
     }
 
     /**
+     * Test if arc drawn by graphics.drawArc() 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 testArcBasicStrokeEmptyFill(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // draw the arc
+        CommonShapesRenderer.drawArc(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if arc drawn by graphics.drawArc() is rendered correctly.
+     * Stroke of the arc 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 testArcThickStrokeEmptyFill(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set 10 pixels wide stroke
+        CommonRenderingStyles.setStrokeThickWidth(graphics);
+        // draw the arc
+        CommonShapesRenderer.drawArc(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if arc drawn by graphics.drawArc() is rendered correctly.
+     * Stroke of the arc 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 testArcExtraThickStrokeEmptyFill(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set 30 pixels wide stroke
+        CommonRenderingStyles.setStrokeExtraThickWidth(graphics);
+        // draw the arc
+        CommonShapesRenderer.drawArc(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
      * Test if filled arc drawn by graphics.fillArc() is rendered correctly.
      * 
      * @param image
@@ -452,8 +646,10 @@
      *            graphics context for image
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testArcColorFill(TestImage image, Graphics2D graphics)
+    public TestResult testArcBasicStrokeColorFill(TestImage image, Graphics2D graphics)
     {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
         // set fill color
         CommonRenderingStyles.setFillColor(graphics);
         // draw the arc
@@ -463,6 +659,281 @@
     }
 
     /**
+     * Test if filled arc drawn by graphics.fillArc() is rendered correctly.
+     * Stroke of the arc 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 testArcThickStrokeColorFill(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 arc
+        CommonShapesRenderer.drawFilledArc(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if filled arc drawn by graphics.fillArc() is rendered correctly.
+     * Stroke of the arc 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 testArcExtraThickStrokeColorFill(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 arc
+        CommonShapesRenderer.drawFilledArc(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 testArcTransparentRed0FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentArc(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 testArcTransparentRed25FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentArc(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 testArcTransparentRed50FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentArc(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 testArcTransparentRed75FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentArc(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 testArcTransparentRed100FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentArc(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 testArcTransparentGreen0FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentArc(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 testArcTransparentGreen25FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentArc(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 testArcTransparentGreen50FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentArc(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 testArcTransparentGreen75FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentArc(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 testArcTransparentGreen100FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentArc(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 testArcTransparentBlue0FillColor(TestImage image, Graphics2D graphics)
+    {
+        return renderTransparentArc(image, graphics, Color.blue, 0);
+    }
+
+    /**
+     * Test color paint using semi transparent color - blue at 25% of
+     * transparency.
+     * 
+     * @param image



More information about the distro-pkg-dev mailing list