/hg/gfx-test: Created new test suite containing common methods u...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri Jul 19 02:03:12 PDT 2013


changeset 2832ec70cb82 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=2832ec70cb82
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Jul 19 11:06:54 2013 +0200

	Created new test suite containing common methods used by more
	specialized tests. Refactoring. Minor fixing - typos etc.


diffstat:

 ChangeLog                                               |   10 +
 src/org/gfxtest/testsuites/BitBltAffineTransformOp.java |   10 +-
 src/org/gfxtest/testsuites/BitBltBufferedImageOp.java   |  209 ++++++++++++++++
 src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java |  166 ++++++------
 4 files changed, 307 insertions(+), 88 deletions(-)

diffs (truncated from 1028 to 500 lines):

diff -r e1575e9881b7 -r 2832ec70cb82 ChangeLog
--- a/ChangeLog	Thu Jul 18 10:25:25 2013 +0200
+++ b/ChangeLog	Fri Jul 19 11:06:54 2013 +0200
@@ -1,3 +1,13 @@
+2013-07-19  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/BitBltBufferedImageOp.java:
+	Created new test suite containing common methods used by more
+	specialized tests.
+	* src/org/gfxtest/testsuites/BitBltAffineTransformOp.java:
+	Refactoring.
+	* src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java:
+	Minor fixing - typos etc.
+
 2013-07-18  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/framework/CommonBitmapOperations.java:
diff -r e1575e9881b7 -r 2832ec70cb82 src/org/gfxtest/testsuites/BitBltAffineTransformOp.java
--- a/src/org/gfxtest/testsuites/BitBltAffineTransformOp.java	Thu Jul 18 10:25:25 2013 +0200
+++ b/src/org/gfxtest/testsuites/BitBltAffineTransformOp.java	Fri Jul 19 11:06:54 2013 +0200
@@ -91,7 +91,7 @@
      *            selected raster operation
      * @return test result status - PASSED, FAILED or ERROR
      */
-    private TestResult doBitBltEmptyBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
+    protected TestResult doBitBltEmptyBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
                     BufferedImageOp rasterOp)
     {
         return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, rasterOp);
@@ -109,7 +109,7 @@
      *            selected raster operation
      * @return test result status - PASSED, FAILED or ERROR
      */
-    private TestResult doBitBltCheckerBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
+    protected TestResult doBitBltCheckerBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
                     BufferedImageOp rasterOp)
     {
         return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, rasterOp);
@@ -127,7 +127,7 @@
      *            selected raster operation
      * @return test result status - PASSED, FAILED or ERROR
      */
-    private TestResult doBitBltDiagonalCheckerBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
+    protected TestResult doBitBltDiagonalCheckerBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
                     BufferedImageOp rasterOp)
     {
         return CommonBitmapOperations.doBitBltTestWithDiagonalCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, rasterOp);
@@ -145,7 +145,7 @@
      *            selected raster operation
      * @return test result status - PASSED, FAILED or ERROR
      */
-    private TestResult doBitBltGridBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
+    protected TestResult doBitBltGridBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
                     BufferedImageOp rasterOp)
     {
         return CommonBitmapOperations.doBitBltTestWithGridImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, rasterOp);
@@ -163,7 +163,7 @@
      *            selected raster operation
      * @return test result status - PASSED, FAILED or ERROR
      */
-    private TestResult doBitBltDiagonalGridBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
+    protected TestResult doBitBltDiagonalGridBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
                     BufferedImageOp rasterOp)
     {
         return CommonBitmapOperations.doBitBltTestWithDiagonalGridImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, rasterOp);
diff -r e1575e9881b7 -r 2832ec70cb82 src/org/gfxtest/testsuites/BitBltBufferedImageOp.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/testsuites/BitBltBufferedImageOp.java	Fri Jul 19 11:06:54 2013 +0200
@@ -0,0 +1,209 @@
+/*
+  Java gfx-test framework
+
+   Copyright (C) 2012, 2013  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.Graphics2D;
+import java.awt.image.BufferedImage;
+import java.awt.image.BufferedImageOp;
+
+
+
+import org.gfxtest.framework.CommonBitmapOperations;
+import org.gfxtest.framework.GfxTest;
+import org.gfxtest.framework.TestImage;
+import org.gfxtest.framework.TestResult;
+import org.gfxtest.framework.annotations.BitBltOperation;
+import org.gfxtest.framework.annotations.BitBltOperations;
+import org.gfxtest.framework.annotations.GraphicsPrimitive;
+import org.gfxtest.framework.annotations.GraphicsPrimitives;
+import org.gfxtest.framework.annotations.RenderStyle;
+import org.gfxtest.framework.annotations.RenderStyles;
+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;
+
+
+
+ at TestType(TestTypes.RENDER_TEST)
+ at GraphicsPrimitive(GraphicsPrimitives.COMMON_BITMAP)
+ at RenderStyle(RenderStyles.NORMAL)
+ at BitBltOperation(BitBltOperations.BITBLT)
+ at Transformation(Transformations.VARIOUS)
+ at Zoom(1)
+public class BitBltBufferedImageOp extends GfxTest
+{
+    /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @param rasterOp
+     *            selected raster operation
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    protected TestResult doBitBltEmptyBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
+                    BufferedImageOp rasterOp)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, rasterOp);
+    }
+
+    /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @param rasterOp
+     *            selected raster operation
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    protected TestResult doBitBltEmptyBufferedImageType4ByteABGR(TestImage image, Graphics2D graphics2d,
+                    BufferedImageOp rasterOp)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_4BYTE_ABGR, rasterOp);
+    }
+
+    /**
+     * Test basic BitBlt operation for buffered image containing checker pattern
+     * with type TYPE_3BYTE_BGR
+     * 
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @param rasterOp
+     *            selected raster operation
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    protected TestResult doBitBltCheckerBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
+                    BufferedImageOp rasterOp)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, rasterOp);
+    }
+
+    /**
+     * Test basic BitBlt operation for buffered image containing diagonal checker pattern
+     * with type TYPE_3BYTE_BGR
+     * 
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @param rasterOp
+     *            selected raster operation
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    protected TestResult doBitBltDiagonalCheckerBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
+                    BufferedImageOp rasterOp)
+    {
+        return CommonBitmapOperations.doBitBltTestWithDiagonalCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, rasterOp);
+    }
+
+    /**
+     * Test basic BitBlt operation for buffered image containing grid pattern
+     * with type TYPE_3BYTE_BGR
+     * 
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @param rasterOp
+     *            selected raster operation
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    protected TestResult doBitBltGridBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
+                    BufferedImageOp rasterOp)
+    {
+        return CommonBitmapOperations.doBitBltTestWithGridImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, rasterOp);
+    }
+
+    /**
+     * Test basic BitBlt operation for buffered image containing diagonal grid pattern
+     * with type TYPE_3BYTE_BGR
+     * 
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @param rasterOp
+     *            selected raster operation
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    protected TestResult doBitBltDiagonalGridBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
+                    BufferedImageOp rasterOp)
+    {
+        return CommonBitmapOperations.doBitBltTestWithDiagonalGridImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, rasterOp);
+    }
+
+    /**
+     * Test basic BitBlt operation for buffered image containing horizontal stripes pattern
+     * with type TYPE_3BYTE_BGR
+     * 
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @param rasterOp
+     *            selected raster operation
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    protected TestResult doBitBltHorizontalStripesBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
+                    BufferedImageOp rasterOp)
+    {
+        return CommonBitmapOperations.doBitBltTestWithHorizontalStripesImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, rasterOp);
+    }
+
+    /**
+     * Entry point to the test suite.
+     *
+     * @param args not used in this case
+     */
+    public static void main(String[] args)
+    {
+        new BitBltBufferedImageOp().runTestSuite(args);
+    }
+    
+}
diff -r e1575e9881b7 -r 2832ec70cb82 src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java
--- a/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java	Thu Jul 18 10:25:25 2013 +0200
+++ b/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java	Fri Jul 19 11:06:54 2013 +0200
@@ -85,7 +85,7 @@
      * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_RGB
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @param backgroundColor
@@ -105,7 +105,7 @@
      * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @param backgroundColor
@@ -125,7 +125,7 @@
      * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR_PRE
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @param backgroundColor
@@ -145,7 +145,7 @@
      * Test basic BitBlt operation for empty buffered image with type TYPE_INT_ARGB
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @param backgroundColor
@@ -165,7 +165,7 @@
      * Test basic BitBlt operation for empty buffered image with type TYPE_INT_ARGB_PRE
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @param backgroundColor
@@ -185,7 +185,7 @@
      * Test basic BitBlt operation for empty buffered image with type TYPE_INT_BGR
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @param backgroundColor
@@ -205,7 +205,7 @@
      * Test basic BitBlt operation for empty buffered image with type TYPE_INT_RGB
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @param backgroundColor
@@ -225,7 +225,7 @@
      * Test basic BitBlt operation for empty buffered image with type TYPE_USHORT_555_RGB
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @param backgroundColor
@@ -245,7 +245,7 @@
      * Test basic BitBlt operation for empty buffered image with type TYPE_USHORT_565_RGB
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @param backgroundColor
@@ -265,7 +265,7 @@
      * Test basic BitBlt operation for empty buffered image with type TYPE_USHORT_GRAY
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @param backgroundColor
@@ -285,7 +285,7 @@
      * Test basic BitBlt operation for empty buffered image with type TYPE_BYTE_BINARY
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @param backgroundColor
@@ -305,7 +305,7 @@
      * Test basic BitBlt operation for empty buffered image with type TYPE_BYTE_GRAY
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @param backgroundColor
@@ -325,7 +325,7 @@
      * Test basic BitBlt operation for empty buffered image with type TYPE_BYTE_INDEXED
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @param backgroundColor
@@ -362,7 +362,7 @@
      * Background color is set to Color.black.
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
@@ -377,7 +377,7 @@
      * Background color is set to Color.black.
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
@@ -392,7 +392,7 @@
      * Background color is set to Color.black.
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
@@ -407,7 +407,7 @@
      * Background color is set to Color.black.
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
@@ -422,7 +422,7 @@
      * Background color is set to Color.black.
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
@@ -437,7 +437,7 @@
      * Background color is set to Color.red.
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
@@ -452,7 +452,7 @@
      * Background color is set to Color.red.
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
@@ -467,7 +467,7 @@
      * Background color is set to Color.red.
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
@@ -482,7 +482,7 @@
      * Background color is set to Color.red.
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
@@ -497,7 +497,7 @@
      * Background color is set to Color.red.
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
@@ -512,7 +512,7 @@
      * Background color is set to Color.green.
      *
      * @param image
-     *            image to used as a destination for BitBlt-type operations
+     *            image to be used as a destination for BitBlt-type operations
      * @param graphics2d
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
@@ -527,7 +527,7 @@
      * Background color is set to Color.green.
      *



More information about the distro-pkg-dev mailing list