/hg/gfx-test: Test suite enhancements src/org/gfxtest/testsuites...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Apr 3 00:37:40 PDT 2013


changeset 2ac0d3616507 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=2ac0d3616507
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Apr 03 09:40:52 2013 +0200

	Test suite enhancements src/org/gfxtest/testsuites/BitBltBasicTests.


diffstat:

 ChangeLog                                        |     5 +
 src/org/gfxtest/testsuites/BitBltBasicTests.java |  1348 +++++++++++----------
 2 files changed, 734 insertions(+), 619 deletions(-)

diffs (truncated from 2185 to 500 lines):

diff -r d0577f29f8d0 -r 2ac0d3616507 ChangeLog
--- a/ChangeLog	Tue Apr 02 10:03:50 2013 +0200
+++ b/ChangeLog	Wed Apr 03 09:40:52 2013 +0200
@@ -1,3 +1,8 @@
+2013-04-03  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/BitBltBasicTests.java:
+	Test suite enhancements.
+
 2013-04-02  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/framework/CommonBitmapOperations.java:
diff -r d0577f29f8d0 -r 2ac0d3616507 src/org/gfxtest/testsuites/BitBltBasicTests.java
--- a/src/org/gfxtest/testsuites/BitBltBasicTests.java	Tue Apr 02 10:03:50 2013 +0200
+++ b/src/org/gfxtest/testsuites/BitBltBasicTests.java	Wed Apr 03 09:40:52 2013 +0200
@@ -169,6 +169,21 @@
     }
 
     /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_INT_BGR.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d)
+    {
+        // create new buffered image and then perform basic BitBlt test.
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_INT_BGR);
+    }
+
+    /**
      * Test basic BitBlt operation for empty buffered image with type TYPE_INT_RGB.
      *
      * @param image
@@ -184,21 +199,6 @@
     }
 
     /**
-     * Test basic BitBlt operation for empty buffered image with type TYPE_INT_BGR.
-     *
-     * @param image
-     *            image used as a destination for BitBlt-type operations
-     * @param graphics2d
-     *            graphics canvas
-     * @return test result status - PASSED, FAILED or ERROR
-     */
-    public TestResult testBitBltEmptyBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d)
-    {
-        // create new buffered image and then perform basic BitBlt test.
-        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_INT_BGR);
-    }
-
-    /**
      * Test basic BitBlt operation for empty buffered image with type TYPE_INT_ARGB.
      *
      * @param image
@@ -229,6 +229,21 @@
     }
 
     /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_USHORT_555_RGB.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageTypeUshort555RGB(TestImage image, Graphics2D graphics2d)
+    {
+        // create new buffered image and then perform basic BitBlt test.
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_USHORT_555_RGB);
+    }
+
+    /**
      * Test basic BitBlt operation for empty buffered image with type TYPE_USHORT_565_RGB.
      *
      * @param image
@@ -244,21 +259,6 @@
     }
 
     /**
-     * Test basic BitBlt operation for empty buffered image with type TYPE_USHORT_555_RGB.
-     *
-     * @param image
-     *            image used as a destination for BitBlt-type operations
-     * @param graphics2d
-     *            graphics canvas
-     * @return test result status - PASSED, FAILED or ERROR
-     */
-    public TestResult testBitBltEmptyBufferedImageTypeUshort555RGB(TestImage image, Graphics2D graphics2d)
-    {
-        // create new buffered image and then perform basic BitBlt test.
-        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_USHORT_555_RGB);
-    }
-
-    /**
      * Test basic BitBlt operation for empty buffered image with type TYPE_USHORT_GRAY.
      *
      * @param image
@@ -364,6 +364,21 @@
     }
 
     /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_INT_BGR.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d)
+    {
+        // create new buffered image and then perform basic BitBlt test.
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_INT_BGR);
+    }
+
+    /**
      * Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB.
      *
      * @param image
@@ -379,21 +394,6 @@
     }
 
     /**
-     * Test basic BitBlt operation for checker buffered image with type TYPE_INT_BGR.
-     *
-     * @param image
-     *            image used as a destination for BitBlt-type operations
-     * @param graphics2d
-     *            graphics canvas
-     * @return test result status - PASSED, FAILED or ERROR
-     */
-    public TestResult testBitBltCheckerBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d)
-    {
-        // create new buffered image and then perform basic BitBlt test.
-        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_INT_BGR);
-    }
-
-    /**
      * Test basic BitBlt operation for checker buffered image with type TYPE_INT_ARGB.
      *
      * @param image
@@ -424,6 +424,21 @@
     }
 
     /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_USHORT_555_RGB.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageTypeUshort555RGB(TestImage image, Graphics2D graphics2d)
+    {
+        // create new buffered image and then perform basic BitBlt test.
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_USHORT_555_RGB);
+    }
+
+    /**
      * Test basic BitBlt operation for checker buffered image with type TYPE_USHORT_565_RGB.
      *
      * @param image
@@ -439,21 +454,6 @@
     }
 
     /**
-     * Test basic BitBlt operation for checker buffered image with type TYPE_USHORT_555_RGB.
-     *
-     * @param image
-     *            image used as a destination for BitBlt-type operations
-     * @param graphics2d
-     *            graphics canvas
-     * @return test result status - PASSED, FAILED or ERROR
-     */
-    public TestResult testBitBltCheckerBufferedImageTypeUshort555RGB(TestImage image, Graphics2D graphics2d)
-    {
-        // create new buffered image and then perform basic BitBlt test.
-        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_USHORT_555_RGB);
-    }
-
-    /**
      * Test basic BitBlt operation for checker buffered image with type TYPE_USHORT_GRAY.
      *
      * @param image
@@ -559,6 +559,21 @@
     }
 
     /**
+     * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_INT_BGR.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltDiagonalCheckerBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d)
+    {
+        // create new buffered image and then perform basic BitBlt test.
+        return CommonBitmapOperations.doBitBltTestWithDiagonalCheckerImage(image, graphics2d, BufferedImage.TYPE_INT_BGR);
+    }
+
+    /**
      * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_INT_RGB.
      *
      * @param image
@@ -574,21 +589,6 @@
     }
 
     /**
-     * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_INT_BGR.
-     *
-     * @param image
-     *            image used as a destination for BitBlt-type operations
-     * @param graphics2d
-     *            graphics canvas
-     * @return test result status - PASSED, FAILED or ERROR
-     */
-    public TestResult testBitBltDiagonalCheckerBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d)
-    {
-        // create new buffered image and then perform basic BitBlt test.
-        return CommonBitmapOperations.doBitBltTestWithDiagonalCheckerImage(image, graphics2d, BufferedImage.TYPE_INT_BGR);
-    }
-
-    /**
      * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_INT_ARGB.
      *
      * @param image
@@ -619,6 +619,21 @@
     }
 
     /**
+     * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_USHORT_555_RGB.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltDiagonalCheckerBufferedImageTypeUshort555RGB(TestImage image, Graphics2D graphics2d)
+    {
+        // create new buffered image and then perform basic BitBlt test.
+        return CommonBitmapOperations.doBitBltTestWithDiagonalCheckerImage(image, graphics2d, BufferedImage.TYPE_USHORT_555_RGB);
+    }
+
+    /**
      * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_USHORT_565_RGB.
      *
      * @param image
@@ -634,21 +649,6 @@
     }
 
     /**
-     * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_USHORT_555_RGB.
-     *
-     * @param image
-     *            image used as a destination for BitBlt-type operations
-     * @param graphics2d
-     *            graphics canvas
-     * @return test result status - PASSED, FAILED or ERROR
-     */
-    public TestResult testBitBltDiagonalCheckerBufferedImageTypeUshort555RGB(TestImage image, Graphics2D graphics2d)
-    {
-        // create new buffered image and then perform basic BitBlt test.
-        return CommonBitmapOperations.doBitBltTestWithDiagonalCheckerImage(image, graphics2d, BufferedImage.TYPE_USHORT_555_RGB);
-    }
-
-    /**
      * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_USHORT_GRAY.
      *
      * @param image
@@ -754,6 +754,21 @@
     }
 
     /**
+     * Test basic BitBlt operation for grid buffered image with type TYPE_INT_BGR.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltGridBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d)
+    {
+        // create new buffered image and then perform basic BitBlt test.
+        return CommonBitmapOperations.doBitBltTestWithGridImage(image, graphics2d, BufferedImage.TYPE_INT_BGR);
+    }
+
+    /**
      * Test basic BitBlt operation for grid buffered image with type TYPE_INT_RGB.
      *
      * @param image
@@ -769,21 +784,6 @@
     }
 
     /**
-     * Test basic BitBlt operation for grid buffered image with type TYPE_INT_BGR.
-     *
-     * @param image
-     *            image used as a destination for BitBlt-type operations
-     * @param graphics2d
-     *            graphics canvas
-     * @return test result status - PASSED, FAILED or ERROR
-     */
-    public TestResult testBitBltGridBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d)
-    {
-        // create new buffered image and then perform basic BitBlt test.
-        return CommonBitmapOperations.doBitBltTestWithGridImage(image, graphics2d, BufferedImage.TYPE_INT_BGR);
-    }
-
-    /**
      * Test basic BitBlt operation for grid buffered image with type TYPE_INT_ARGB.
      *
      * @param image
@@ -814,6 +814,21 @@
     }
 
     /**
+     * Test basic BitBlt operation for grid buffered image with type TYPE_USHORT_555_RGB.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltGridBufferedImageTypeUshort555RGB(TestImage image, Graphics2D graphics2d)
+    {
+        // create new buffered image and then perform basic BitBlt test.
+        return CommonBitmapOperations.doBitBltTestWithGridImage(image, graphics2d, BufferedImage.TYPE_USHORT_555_RGB);
+    }
+
+    /**
      * Test basic BitBlt operation for grid buffered image with type TYPE_USHORT_565_RGB.
      *
      * @param image
@@ -829,21 +844,6 @@
     }
 
     /**
-     * Test basic BitBlt operation for grid buffered image with type TYPE_USHORT_555_RGB.
-     *
-     * @param image
-     *            image used as a destination for BitBlt-type operations
-     * @param graphics2d
-     *            graphics canvas
-     * @return test result status - PASSED, FAILED or ERROR
-     */
-    public TestResult testBitBltGridBufferedImageTypeUshort555RGB(TestImage image, Graphics2D graphics2d)
-    {
-        // create new buffered image and then perform basic BitBlt test.
-        return CommonBitmapOperations.doBitBltTestWithGridImage(image, graphics2d, BufferedImage.TYPE_USHORT_555_RGB);
-    }
-
-    /**
      * Test basic BitBlt operation for grid buffered image with type TYPE_USHORT_GRAY.
      *
      * @param image
@@ -950,6 +950,21 @@
     }
 
     /**
+     * Test basic BitBlt operation for diagonal grid buffered image with type TYPE_INT_BGR.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltDiagonalGridBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d)
+    {
+        // create new buffered image and then perform basic BitBlt test.
+        return CommonBitmapOperations.doBitBltTestWithDiagonalGridImage(image, graphics2d, BufferedImage.TYPE_INT_BGR);
+    }
+
+    /**
      * Test basic BitBlt operation for diagonal grid buffered image with type TYPE_INT_RGB.
      *
      * @param image
@@ -965,21 +980,6 @@
     }
 
     /**
-     * Test basic BitBlt operation for diagonal grid buffered image with type TYPE_INT_BGR.
-     *
-     * @param image
-     *            image used as a destination for BitBlt-type operations
-     * @param graphics2d
-     *            graphics canvas
-     * @return test result status - PASSED, FAILED or ERROR
-     */
-    public TestResult testBitBltDiagonalGridBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d)
-    {
-        // create new buffered image and then perform basic BitBlt test.
-        return CommonBitmapOperations.doBitBltTestWithDiagonalGridImage(image, graphics2d, BufferedImage.TYPE_INT_BGR);
-    }
-
-    /**
      * Test basic BitBlt operation for diagonal grid buffered image with type TYPE_INT_ARGB.
      *
      * @param image
@@ -1010,6 +1010,21 @@
     }
 
     /**
+     * Test basic BitBlt operation for diagonal grid buffered image with type TYPE_USHORT_555_RGB.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltDiagonalGridBufferedImageTypeUshort555RGB(TestImage image, Graphics2D graphics2d)
+    {
+        // create new buffered image and then perform basic BitBlt test.
+        return CommonBitmapOperations.doBitBltTestWithDiagonalGridImage(image, graphics2d, BufferedImage.TYPE_USHORT_555_RGB);
+    }
+
+    /**
      * Test basic BitBlt operation for diagonal grid buffered image with type TYPE_USHORT_565_RGB.
      *
      * @param image
@@ -1025,21 +1040,6 @@
     }
 
     /**
-     * Test basic BitBlt operation for diagonal grid buffered image with type TYPE_USHORT_555_RGB.
-     *
-     * @param image
-     *            image used as a destination for BitBlt-type operations
-     * @param graphics2d
-     *            graphics canvas
-     * @return test result status - PASSED, FAILED or ERROR
-     */
-    public TestResult testBitBltDiagonalGridBufferedImageTypeUshort555RGB(TestImage image, Graphics2D graphics2d)
-    {
-        // create new buffered image and then perform basic BitBlt test.
-        return CommonBitmapOperations.doBitBltTestWithDiagonalGridImage(image, graphics2d, BufferedImage.TYPE_USHORT_555_RGB);
-    }
-
-    /**
      * Test basic BitBlt operation for diagonal grid buffered image with type TYPE_USHORT_GRAY.
      *
      * @param image
@@ -1146,6 +1146,21 @@
     }
 
     /**
+     * Test basic BitBlt operation for horizontal stripes buffered image with type TYPE_INT_BGR.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltHorizontalStripesBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d)
+    {
+        // create new buffered image and then perform basic BitBlt test.
+        return CommonBitmapOperations.doBitBltTestWithHorizontalStripesImage(image, graphics2d, BufferedImage.TYPE_INT_BGR);
+    }
+
+    /**
      * Test basic BitBlt operation for horizontal stripes buffered image with type TYPE_INT_RGB.
      *
      * @param image
@@ -1161,21 +1176,6 @@
     }
 
     /**
-     * Test basic BitBlt operation for horizontal stripes buffered image with type TYPE_INT_BGR.
-     *
-     * @param image
-     *            image used as a destination for BitBlt-type operations
-     * @param graphics2d
-     *            graphics canvas
-     * @return test result status - PASSED, FAILED or ERROR
-     */
-    public TestResult testBitBltHorizontalStripesBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d)
-    {
-        // create new buffered image and then perform basic BitBlt test.
-        return CommonBitmapOperations.doBitBltTestWithHorizontalStripesImage(image, graphics2d, BufferedImage.TYPE_INT_BGR);
-    }
-
-    /**
      * Test basic BitBlt operation for horizontal stripes buffered image with type TYPE_INT_ARGB.
      *
      * @param image
@@ -1206,6 +1206,21 @@



More information about the distro-pkg-dev mailing list