/hg/gfx-test: * Makefile: added new classes to compile

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Aug 11 04:18:07 PDT 2011


changeset 554e6adab4f4 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=554e6adab4f4
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Aug 11 13:19:50 2011 +0200

	* Makefile: added new classes to compile
	* src/org/gfxtest/framework/CommonRenderingStyles.java: Added
	class containing static methods for setting various rendering
	styles used for drawing graphics entities in gfx. tests.
	* src/org/gfxtest/framework/CommonShapesRenderer.java: Added class
	containing static methods for rendering common shapes onto
	specified graphics canvas.
	* src/org/gfxtest/framework/GfxTest.java: Javadoc.


diffstat:

 ChangeLog                                            |   11 +
 Makefile                                             |    2 +
 src/org/gfxtest/framework/CommonRenderingStyles.java |  187 +++++++++++
 src/org/gfxtest/framework/CommonShapesRenderer.java  |  313 +++++++++++++++++++
 src/org/gfxtest/framework/GfxTest.java               |   34 +-
 5 files changed, 543 insertions(+), 4 deletions(-)

diffs (truncated from 625 to 500 lines):

diff -r 2d2f7eecc246 -r 554e6adab4f4 ChangeLog
--- a/ChangeLog	Tue Aug 09 16:46:47 2011 +0200
+++ b/ChangeLog	Thu Aug 11 13:19:50 2011 +0200
@@ -1,3 +1,14 @@
+2011-08-11  Pavel Tisnovsky  <ptisnovs at redhat.com>
+	* Makefile: added new classes to compile
+	* src/org/gfxtest/framework/CommonRenderingStyles.java:
+	Added class containing static methods for setting various rendering
+	styles used for drawing graphics entities in gfx. tests.
+	* src/org/gfxtest/framework/CommonShapesRenderer.java:
+	Added class containing static methods for rendering common shapes onto
+	specified graphics canvas.
+	* src/org/gfxtest/framework/GfxTest.java:
+	Javadoc.
+
 2011-08-09  Pavel Tisnovsky  <ptisnovs at redhat.com>
 	* src/org/gfxtest/testsuites/ColorPaint.java:
 	Created new test suite containing 12 gfx.tests.
diff -r 2d2f7eecc246 -r 554e6adab4f4 Makefile
--- a/Makefile	Tue Aug 09 16:46:47 2011 +0200
+++ b/Makefile	Thu Aug 11 13:19:50 2011 +0200
@@ -75,6 +75,8 @@
 	$(CLASSES)/$(FRAMEWORK_DIR)/annotations/Transformations.class \
 	$(CLASSES)/$(FRAMEWORK_DIR)/annotations/Transformation.class \
 	$(CLASSES)/$(FRAMEWORK_DIR)/annotations/Zoom.class \
+	$(CLASSES)/$(FRAMEWORK_DIR)/CommonRenderingStyles.class \
+	$(CLASSES)/$(FRAMEWORK_DIR)/CommonShapesRenderer.class \
 	$(CLASSES)/$(FRAMEWORK_DIR)/EntityRenderingStyle.class \
 	$(CLASSES)/$(FRAMEWORK_DIR)/TestResult.class \
 	$(CLASSES)/$(FRAMEWORK_DIR)/ParameterNotFoundException.class \
diff -r 2d2f7eecc246 -r 554e6adab4f4 src/org/gfxtest/framework/CommonRenderingStyles.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/framework/CommonRenderingStyles.java	Thu Aug 11 13:19:50 2011 +0200
@@ -0,0 +1,187 @@
+/*
+  Java gfx-test framework
+
+   Copyright (C) 2010, 2011  Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING.  If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library.  Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module.  An independent module is a module which is not derived from
+or based on this library.  If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so.  If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package org.gfxtest.framework;
+
+import java.awt.BasicStroke;
+import java.awt.Color;
+import java.awt.Graphics2D;
+
+
+
+/**
+ * This class contains static methods for setting various rendering styles used
+ * for drawing entities in gfx. tests.
+ * 
+ * @author Pavel Tisnovsky
+ */
+public class CommonRenderingStyles
+{
+    /**
+     * Stroke width used for drawing "thick" curves.
+     */
+    private static final int STROKE_WIDTH_THICK = 10;
+
+    /**
+     * Stroke width used for drawing extra "thick" curves.
+     */
+    private static final int STROKE_WIDTH_EXTRA_THICK = 30;
+
+    /**
+     * Default stroke color.
+     */
+    private static final Color DEFAULT_STROKE_COLOR = Color.BLACK;
+
+    /**
+     * Default fill color.
+     */
+    private static final Color DEFAULT_FILL_COLOR = Color.GREEN.darker();
+
+    /**
+     * Set default stroke color.
+     * 
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setStrokeColor(Graphics2D graphics)
+    {
+        graphics.setColor(DEFAULT_STROKE_COLOR);
+    }
+
+    /**
+     * Set default fill color.
+     * 
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setFillColor(Graphics2D graphics)
+    {
+        graphics.setPaint(DEFAULT_FILL_COLOR);
+    }
+
+    /**
+     * Set zero pixels wide stroke and default cap and join style.
+     * 
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setStrokeZeroThick(Graphics2D graphics)
+    {
+        graphics.setStroke(new BasicStroke(0));
+    }
+
+    /**
+     * Set 10 pixels wide stroke and default cap and join style.
+     * 
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setStrokeThickWidth(Graphics2D graphics)
+    {
+        graphics.setStroke(new BasicStroke(STROKE_WIDTH_THICK));
+    }
+
+    /**
+     * Set 10 pixels wide stroke and specified cap style.
+     * 
+     * @param graphics
+     *            graphics context for image
+     * @param capStyle
+     *            the decoration of the ends of a BasicStroke
+     */
+    public static void setStrokeThickWidth(Graphics2D graphics, int capStyle)
+    {
+        graphics.setStroke(new BasicStroke(STROKE_WIDTH_THICK, capStyle, BasicStroke.JOIN_BEVEL));
+    }
+
+    /**
+     * Set 10 pixels wide stroke and specified cap style and join style.
+     * 
+     * @param graphics
+     *            graphics context for image
+     * @param capStyle
+     *            the decoration of the ends of a BasicStroke
+     * @param joinStyle
+     *            the decoration applied where path segments meet
+     */
+    public static void setStrokeThickWidth(Graphics2D graphics, int capStyle, int joinStyle)
+    {
+        graphics.setStroke(new BasicStroke(STROKE_WIDTH_THICK, capStyle, joinStyle));
+    }
+
+    /**
+     * Set 30 pixels wide stroke.
+     *
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setStrokeExtraThickWidth(Graphics2D graphics)
+    {
+        graphics.setStroke(new BasicStroke(STROKE_WIDTH_EXTRA_THICK));
+    }
+
+    /**
+     * Set 30 pixels wide stroke and specified cap style.
+     * 
+     * @param graphics
+     *            graphics context for image
+     * @param capStyle
+     *            the decoration of the ends of a BasicStroke
+     */
+    public static void setStrokeExtraThickWidth(Graphics2D graphics, int capStyle)
+    {
+        graphics.setStroke(new BasicStroke(STROKE_WIDTH_EXTRA_THICK, capStyle, BasicStroke.JOIN_BEVEL));
+    }
+
+    /**
+     * Set 30 pixels wide stroke and specified cap style and join style.
+     * 
+     * @param graphics
+     *            graphics context for image
+     * @param capStyle
+     *            the decoration of the ends of a BasicStroke
+     * @param joinStyle
+     *            the decoration applied where path segments meet
+     */
+    public static void setStrokeExtraThickWidth(Graphics2D graphics, int capStyle, int joinStyle)
+    {
+        graphics.setStroke(new BasicStroke(STROKE_WIDTH_EXTRA_THICK, capStyle, joinStyle));
+    }
+}
diff -r 2d2f7eecc246 -r 554e6adab4f4 src/org/gfxtest/framework/CommonShapesRenderer.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/framework/CommonShapesRenderer.java	Thu Aug 11 13:19:50 2011 +0200
@@ -0,0 +1,313 @@
+/*
+  Java gfx-test framework
+
+   Copyright (C) 2010, 2011  Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING.  If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library.  Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module.  An independent module is a module which is not derived from
+or based on this library.  If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so.  If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package org.gfxtest.framework;
+
+import java.awt.Graphics2D;
+import java.awt.geom.Path2D;
+
+
+
+/**
+ * This class contains static methods for rendering common shapes (circles,
+ * rectangles etc.) onto specified graphics canvas. These methods can be called
+ * from gfx. tests.
+ *
+ * @author Pavel Tisnovsky
+ */
+public class CommonShapesRenderer
+{
+    /**
+     * Radius of all four corners of rounded rectangle.
+     */
+    private static final int ROUND_RECT_RADIUS = 80;
+
+    /**
+     * Calculate radius of circle/arc/rectangle based on image size.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @return radius
+     */
+    private static int calculateRadius(TestImage image)
+    {
+        return Math.min(image.getWidth(), image.getHeight()) / 3;
+    }
+
+    /**
+     * Draw cross into graphics canvas, to mark shape's end points, curves's
+     * control points etc. Size of cross is stored in constant CROSS_SIZE.
+     * 
+     * @param graphics
+     *            graphics context for the image created by test case
+     * @param x
+     *            x-coordinate of the cross center
+     * @param y
+     *            y-coordinate of the cross center
+     * @param size
+     *            size of cross (measured in pixels)
+     */
+    private static void drawCross(Graphics2D graphics, int x, int y)
+    {
+        GfxTest.drawCross(graphics, x, y);
+    }
+
+    /**
+     * Draw cross into graphics canvas, to mark shape's end points, curves's
+     * control points etc. Size of cross is stored in constant CROSS_SIZE.
+     * 
+     * @param graphics
+     *            graphics context for the image created by test case
+     * @param x
+     *            x-coordinate of the cross center
+     * @param y
+     *            y-coordinate of the cross center
+     */
+    private static void drawCross(Graphics2D graphics, int x, int y, int crossSize)
+    {
+        GfxTest.drawCross(graphics, x, y, crossSize);
+    }
+
+    /**
+     * Draw crosses at interesting points of image.
+     * 
+     * @param graphics
+     *            graphics context for image
+     * @param xc
+     *            center of image
+     * @param yc
+     *            center of image
+     * @param radius
+     *            radius of shape(s)
+     */
+    public static void drawCrossesForBasicShapes(Graphics2D graphics, int xc, int yc, int radius)
+    {
+        // move in vertical direction
+        for (int y = yc - radius; y <= yc + radius; y += radius)
+        {
+            // move in horizontal direction
+            for (int x = xc - radius; x <= xc + radius; x += radius)
+            {
+                drawCross(graphics, x, y);
+            }
+        }
+    }
+
+    /**
+     * Draw circle 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 drawCircle(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 circle
+        graphics.drawOval(xc - radius, yc - radius, radius << 1, radius << 1);
+
+        // draw crosses at interesting points of image
+        drawCrossesForBasicShapes(graphics, xc, yc, radius);
+    }
+
+    /**
+     * Draw filled circle 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 drawFilledCircle(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 filled circle
+        graphics.fillOval(xc - radius, yc - radius, radius << 1, radius << 1);
+
+        // draw crosses at interesting points of image
+        drawCrossesForBasicShapes(graphics, xc, yc, radius);
+    }
+
+    /**
+     * 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 drawFilledArc(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 filled arc
+        graphics.fillArc(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 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 drawFilledRect(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 filled rectangle
+        graphics.fillRect(xc - radius, yc - radius, radius << 1, radius << 1);
+
+        // draw crosses at interesting points of image
+        drawCrossesForBasicShapes(graphics, xc, yc, radius);
+    }
+
+    /**
+     * Draw filled 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 drawFilledRoundRect(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 filled rectangle round rectangle
+        graphics.fillRoundRect(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 polygon 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 drawFilledPolygon(TestImage image, Graphics2D graphics)
+    {
+        // calculate image size
+        int w = image.getWidth();
+        int h = image.getHeight();
+
+        // polygon vertexes
+        int xPoints[] = new int[] { GfxTest.OFFSET, w >> 1, w >> 1, w - GfxTest.OFFSET };
+        int yPoints[] = new int[] { h >> 1, GfxTest.OFFSET, h - GfxTest.OFFSET, h >> 1 };
+
+        // draw the polygon
+        graphics.fillPolygon(xPoints, yPoints, xPoints.length);
+
+        // draw crosses at interesting points of image
+        drawCross(graphics, GfxTest.OFFSET, h >> 1, GfxTest.CROSS_SIZE);



More information about the distro-pkg-dev mailing list