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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Oct 27 08:21:02 PDT 2011


changeset 3d9ea42c564f in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=3d9ea42c564f
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Oct 27 17:23:04 2011 +0200

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

	 * Makefile: added new class to compile
	    * src/org/gfxtest/testsuites/Clipping.java: Created new class
	containing tests checking rendering using clipping area.


diffstat:

 ChangeLog                                |    7 +
 Makefile                                 |    7 +-
 src/org/gfxtest/testsuites/Clipping.java |  317 +++++++++++++++++++++++++++++++
 3 files changed, 329 insertions(+), 2 deletions(-)

diffs (359 lines):

diff -r abf2b91650dc -r 3d9ea42c564f ChangeLog
--- a/ChangeLog	Mon Oct 24 16:32:55 2011 +0200
+++ b/ChangeLog	Thu Oct 27 17:23:04 2011 +0200
@@ -1,3 +1,10 @@
+2011-10-27  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* Makefile: added new class to compile
+	* src/org/gfxtest/testsuites/Clipping.java:
+	Created new class containing tests checking rendering
+	using clipping area.
+
 2011-10-24  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* Makefile: added new class to compile
diff -r abf2b91650dc -r 3d9ea42c564f Makefile
--- a/Makefile	Mon Oct 24 16:32:55 2011 +0200
+++ b/Makefile	Thu Oct 27 17:23:04 2011 +0200
@@ -143,7 +143,8 @@
 	$(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnTwoConcentricCircles.class \
 	$(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnTwoOverlappingRectangles.class \
 	$(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnCircleAndRectangle.class \
-	$(CLASSES)/$(TESTSUITE_DIR)/TexturePaint.class
+	$(CLASSES)/$(TESTSUITE_DIR)/TexturePaint.class \
+	$(CLASSES)/$(TESTSUITE_DIR)/Clipping.class
 
 COMPARE_RESULTS = \
 	$(RESULTS)/Areas \
@@ -189,7 +190,9 @@
 	$(RESULTS)/CAGOperationsOnTwoTouchingCircles \
 	$(RESULTS)/CAGOperationsOnTwoConcentricCircles \
 	$(RESULTS)/CAGOperationsOnTwoOverlappingRectangles \
-	$(RESULTS)/CAGOperationsOnCircleAndRectangle
+	$(RESULTS)/CAGOperationsOnCircleAndRectangle \
+	$(RESULTS)/TexturePaint \
+	$(RESULTS)/Clipping
 
 # targets for all test suites
 TESTSUITES = $(shell ls -1 src/org/gfxtest/testsuites | sed -n -e 's/\([A-Za-z0-9]*\)\.java/\1/p')
diff -r abf2b91650dc -r 3d9ea42c564f src/org/gfxtest/testsuites/Clipping.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/testsuites/Clipping.java	Thu Oct 27 17:23:04 2011 +0200
@@ -0,0 +1,317 @@
+/*
+  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.testsuites;
+
+
+
+import java.awt.Color;
+import java.awt.Graphics2D;
+import java.awt.Shape;
+import java.awt.geom.Ellipse2D;
+import java.awt.geom.Rectangle2D;
+
+
+
+import org.gfxtest.framework.CommonRenderingStyles;
+import org.gfxtest.framework.CommonShapesRenderer;
+import org.gfxtest.framework.GfxTest;
+import org.gfxtest.framework.TestImage;
+import org.gfxtest.framework.TestResult;
+import org.gfxtest.framework.annotations.TestType;
+import org.gfxtest.framework.annotations.TestTypes;
+import org.gfxtest.framework.annotations.Transformation;
+import org.gfxtest.framework.annotations.Transformations;
+import org.gfxtest.framework.annotations.Zoom;
+
+
+
+/**
+ * This test check if clipping is working correctly for various types of clips
+ * and various types of rendered shapes.
+ * 
+ * @author Pavel Tisnovsky
+ */
+ at TestType(TestTypes.RENDER_TEST)
+ at Transformation(Transformations.NONE)
+ at Zoom(1)
+public class Clipping extends GfxTest
+{
+    /**
+     * Color used for rendering shape which is drawn along clip region.
+     */
+    private static final Color CLIP_SHAPE_COLOR = Color.MAGENTA.darker();
+
+    /**
+     * Computes width of the clip region.
+     * 
+     * @param image
+     *            work image
+     * @return width of the clip region
+     */
+    private static int computeClipRegionWidth(TestImage image)
+    {
+        // compute width first
+        int width = 2 * image.getWidth() / 3;
+        // we need to align clip area with the grid
+        width = width - (width % image.getGrid());
+        return width - 1;
+    }
+
+    /**
+     * Compute height of the clip region.
+     * 
+     * @param image
+     *            work image
+     * @return height of the clip region
+     */
+    private static int computeClipRegionHeight(TestImage image)
+    {
+        // compute height first
+        int height = 2 * image.getHeight() / 3;
+        // we need to align clip area with the grid
+        height = height - (height % image.getGrid());
+        return height - 1;
+    }
+
+    /**
+     * Render the rectangle around the clip area. Clip area could have different
+     * shape but should be inside this rectangle.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     */
+    private void renderClipRectangle(TestImage image, Graphics2D graphics2d)
+    {
+        // compute size of clip area
+        final int width = computeClipRegionWidth(image) + 1;
+        final int height = computeClipRegionHeight(image) + 1;
+        // draw rectangle around the clip area
+        graphics2d.setColor(CLIP_SHAPE_COLOR);
+        graphics2d.drawRect(0, 0, width, height);
+    }
+
+    /**
+     * Render the ellipse around the clip area. Clip area could have different
+     * shape but should be inside this ellipse.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     */
+    private void renderClipEllipse(TestImage image, Graphics2D graphics2d)
+    {
+        // compute size of clip area
+        final int width = computeClipRegionWidth(image) + 1;
+        final int height = computeClipRegionHeight(image) + 1;
+        // draw rectangle around the clip area
+        graphics2d.setColor(CLIP_SHAPE_COLOR);
+        graphics2d.drawOval(0, 0, width, height);
+    }
+
+    /**
+     * Create clip region using rectangle area (not rectangular shape)
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     */
+    private static void createClipUsingRectangleArea(TestImage image, Graphics2D graphics2d)
+    {
+        // compute size of clip area
+        final int width = computeClipRegionWidth(image);
+        final int height = computeClipRegionHeight(image);
+        // apply clip rectangle area
+        graphics2d.setClip(1, 1, width, height);
+    }
+
+    /**
+     * Create clip region using rectangular shape (not rectangle area).
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     */
+    private static void createClipUsingRectangleShape(TestImage image, Graphics2D graphics2d)
+    {
+        // compute size of clip area
+        final int width = computeClipRegionWidth(image);
+        final int height = computeClipRegionHeight(image);
+        // create clip shape
+        Shape clipShape = new Rectangle2D.Float(1, 1, width, height);
+        // and apply it
+        graphics2d.setClip(clipShape);
+    }
+
+    /**
+     * Create clip region using elliptic shape.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     */
+    private static void createClipUsingEllipseShape(TestImage image, Graphics2D graphics2d)
+    {
+        // compute size of clip area
+        final int width = computeClipRegionWidth(image);
+        final int height = computeClipRegionHeight(image);
+        // create clip shape
+        Shape clipShape = new Ellipse2D.Float(1, 1, width, height);
+        // and apply it
+        graphics2d.setClip(clipShape);
+    }
+
+    /**
+     * Check if circle shape could be clipped by a rectangle area. Circle is
+     * rendered using stroke paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRectangleAreaStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip rectangle
+        renderClipRectangle(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // create clip area
+        createClipUsingRectangleArea(image, graphics2d);
+        // draw the area
+        CommonShapesRenderer.drawCircle(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a rectangle area. Circle is
+     * rendered using color paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRectangleAreaColorPaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip rectangle
+        renderClipRectangle(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics2d);
+        // create clip area
+        createClipUsingRectangleArea(image, graphics2d);
+        // fill the area
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a rectangle. Circle is rendered
+     * using stroke paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRectangleShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip rectangle
+        renderClipRectangle(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // create clip area
+        createClipUsingRectangleShape(image, graphics2d);
+        // draw the area
+        CommonShapesRenderer.drawCircle(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a ellipse. Circle is rendered
+     * using stroke paint.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByEllipseShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // render clip rectangle
+        renderClipRectangle(image, graphics2d);
+        // and also clip ellipse
+        renderClipEllipse(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // create clip area
+        createClipUsingEllipseShape(image, graphics2d);
+        // draw the area
+        CommonShapesRenderer.drawCircle(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Entry point to the test suite.
+     * 
+     * @param args
+     *            graphics test configuration
+     */
+    public static void main(String[] args)
+    {
+        new Clipping().runTestSuite(args);
+    }
+}



More information about the distro-pkg-dev mailing list