/hg/gfx-test: Fixed test names and added five helper methods into

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed May 22 01:15:31 PDT 2013


changeset f9cf11fe37b7 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=f9cf11fe37b7
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed May 22 10:18:54 2013 +0200

	Fixed test names and added five helper methods into
	ClippingCircleByRectangleArea.


diffstat:

 ChangeLog                                                     |    6 +
 src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java |  157 ++++++++-
 2 files changed, 147 insertions(+), 16 deletions(-)

diffs (292 lines):

diff -r b683ef37b88a -r f9cf11fe37b7 ChangeLog
--- a/ChangeLog	Tue May 21 11:42:52 2013 +0200
+++ b/ChangeLog	Wed May 22 10:18:54 2013 +0200
@@ -1,3 +1,9 @@
+2013-05-22  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java:
+	Fixed test names and added five helper methods into
+	ClippingCircleByRectangleArea.
+
 2013-05-21  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java:
diff -r b683ef37b88a -r f9cf11fe37b7 src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java	Tue May 21 11:42:52 2013 +0200
+++ b/src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java	Wed May 22 10:18:54 2013 +0200
@@ -119,7 +119,32 @@
     }
 
     /**
-    * Draw circle clipped by a rectangle area. Circle is drawn using alpha paint with
+     * Draw circle clipped by rectangle area. Circle is drawn using alpha paint with
+     * black color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByRectangleAreaAlphaPaintBlack(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip rectangle
+        CommonClippingOperations.renderClipRectangle(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillBlackColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingRectangleArea(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
+     * Draw circle clipped by a rectangle area. Circle is drawn using alpha paint with
      * red color and selected transparency.
      * 
      * @param image
@@ -194,6 +219,106 @@
     }
 
     /**
+     * Draw circle clipped by rectangle. Circle is drawn using alpha paint with
+     * magenta color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByRectangleAreaAlphaPaintMagenta(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip rectangle
+        CommonClippingOperations.renderClipRectangle(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillMagentaColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingRectangleArea(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
+     * Draw circle clipped by rectangle. Circle is drawn using alpha paint with
+     * cyan color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByRectangleAreaAlphaPaintCyan(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip rectangle
+        CommonClippingOperations.renderClipRectangle(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillCyanColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingRectangleArea(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
+     * Draw circle clipped by rectangle. Circle is drawn using alpha paint with
+     * yellow color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByRectangleAreaAlphaPaintYellow(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip rectangle
+        CommonClippingOperations.renderClipRectangle(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillYellowColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingRectangleArea(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
+     * Draw circle clipped by rectangle. Circle is drawn using alpha paint with
+     * white color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByRectangleAreaAlphaPaintWhite(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip rectangle
+        CommonClippingOperations.renderClipRectangle(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillWhiteColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingRectangleArea(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
      * Check if circle shape could be clipped by a rectangle area. Circle is
      * rendered using stroke paint.
      * 
@@ -315,7 +440,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintRed000(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintRed000(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 0% transparency
         drawCircleClippedByRectangleAreaAlphaPaintRed(image, graphics2d, 0);
@@ -333,7 +458,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintRed025(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintRed025(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 25% transparency
         drawCircleClippedByRectangleAreaAlphaPaintRed(image, graphics2d, 25);
@@ -351,7 +476,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintRed050(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintRed050(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 50% transparency
         drawCircleClippedByRectangleAreaAlphaPaintRed(image, graphics2d, 50);
@@ -369,7 +494,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintRed075(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintRed075(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 75% transparency
         drawCircleClippedByRectangleAreaAlphaPaintRed(image, graphics2d, 75);
@@ -387,7 +512,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintRed100(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintRed100(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 100% transparency
         drawCircleClippedByRectangleAreaAlphaPaintRed(image, graphics2d, 100);
@@ -405,7 +530,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintGreen000(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintGreen000(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 0% transparency
         drawCircleClippedByRectangleAreaAlphaPaintGreen(image, graphics2d, 0);
@@ -423,7 +548,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintGreen025(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintGreen025(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 25% transparency
         drawCircleClippedByRectangleAreaAlphaPaintGreen(image, graphics2d, 25);
@@ -441,7 +566,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintGreen050(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintGreen050(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 50% transparency
         drawCircleClippedByRectangleAreaAlphaPaintGreen(image, graphics2d, 50);
@@ -459,7 +584,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintGreen075(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintGreen075(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 75% transparency
         drawCircleClippedByRectangleAreaAlphaPaintGreen(image, graphics2d, 75);
@@ -477,7 +602,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintGreen100(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintGreen100(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 100% transparency
         drawCircleClippedByRectangleAreaAlphaPaintGreen(image, graphics2d, 100);
@@ -495,7 +620,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintBlue000(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintBlue000(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 0% transparency
         drawCircleClippedByRectangleAreaAlphaPaintBlue(image, graphics2d, 0);
@@ -513,7 +638,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintBlue025(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintBlue025(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 25% transparency
         drawCircleClippedByRectangleAreaAlphaPaintBlue(image, graphics2d, 25);
@@ -531,7 +656,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintBlue050(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintBlue050(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 50% transparency
         drawCircleClippedByRectangleAreaAlphaPaintBlue(image, graphics2d, 50);
@@ -549,7 +674,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintBlue075(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintBlue075(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 75% transparency
         drawCircleClippedByRectangleAreaAlphaPaintBlue(image, graphics2d, 75);
@@ -567,7 +692,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testClipCircleByRectangleShapeAlphaPaintBlue100(TestImage image, Graphics2D graphics2d)
+    public TestResult testClipCircleByRectangleAreaAlphaPaintBlue100(TestImage image, Graphics2D graphics2d)
     {
         // draw circle clipped by rectangle area using alpha paint with 100% transparency
         drawCircleClippedByRectangleAreaAlphaPaintBlue(image, graphics2d, 100);



More information about the distro-pkg-dev mailing list