/hg/gfx-test: Added ten new test cases to a test

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Tue Sep 13 06:11:44 PDT 2011


changeset 3e4f4c420eba in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=3e4f4c420eba
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Sep 13 15:13:33 2011 +0200

	Added ten new test cases to a test
	src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java


diffstat:

 ChangeLog                                                 |    5 +
 src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java |  240 ++++++++++++++
 2 files changed, 245 insertions(+), 0 deletions(-)

diffs (262 lines):

diff -r b07fde3d88fd -r 3e4f4c420eba ChangeLog
--- a/ChangeLog	Mon Sep 12 15:10:51 2011 +0200
+++ b/ChangeLog	Tue Sep 13 15:13:33 2011 +0200
@@ -1,3 +1,8 @@
+2011-09-13  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java:
+	Added ten new test cases.
+
 2011-09-12  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* Makefile: added new class to compile
diff -r b07fde3d88fd -r 3e4f4c420eba src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java	Mon Sep 12 15:10:51 2011 +0200
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java	Tue Sep 13 15:13:33 2011 +0200
@@ -339,6 +339,246 @@
     }
 
     /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two rectangles using union operator. The shape is
+     * rendered using color paint (fill).
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testUnionColorPaint(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics);
+        // create area using union operator
+        Area area = createAreaFromRectanglesUsingUnionOperator(image);
+        // draw the area
+        graphics.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two rectangles using subtract operator. The shape is
+     * rendered using color paint (fill).
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testSubtractColorPaint(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics);
+        // create area using subtract operator
+        Area area = createAreaFromRectanglesUsingSubtractOperator(image);
+        // draw the area
+        graphics.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two rectangles using inverse subtract operator. The
+     * shape is rendered using color paint (fill).
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testInverseSubtractColorPaint(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics);
+        // create area using inverse subtract operator
+        Area area = createAreaFromRectanglesUsingInverseSubtractOperator(image);
+        // draw the area
+        graphics.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two rectangles using intersect operator. The
+     * shape is rendered using color paint (fill).
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testIntersectColorPaint(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics);
+        // create area using intersect operator
+        Area area = createAreaFromRectanglesUsingIntersectOperator(image);
+        // draw the area
+        graphics.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two rectangles using XOR operator. The
+     * shape is rendered using color paint (fill).
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testXorColorPaint(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setFillColor(graphics);
+        // create area using XOR operator
+        Area area = createAreaFromRectanglesUsingXorOperator(image);
+        // draw the area
+        graphics.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two rectangles using union operator. The shape is
+     * rendered using horizontal gradient color paint (fill).
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testUnionHorizontalGradiendPaint(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setHorizontalGradientFill(image, graphics);
+        // create area using union operator
+        Area area = createAreaFromRectanglesUsingUnionOperator(image);
+        // draw the area
+        graphics.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two rectangles using subtract operator. The shape is
+     * rendered using horizontal gradient color paint (fill).
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testSubtractHorizontalGradiendPaint(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setHorizontalGradientFill(image, graphics);
+        // create area using subtract operator
+        Area area = createAreaFromRectanglesUsingSubtractOperator(image);
+        // draw the area
+        graphics.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two rectangles using inverse subtract operator. The
+     * shape is rendered using horizontal gradient color paint (fill).
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testInverseSubtractHorizontalGradiendPaint(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setHorizontalGradientFill(image, graphics);
+        // create area using inverse subtract operator
+        Area area = createAreaFromRectanglesUsingInverseSubtractOperator(image);
+        // draw the area
+        graphics.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two rectangles using intersect operator. The
+     * shape is rendered using horizontal gradient color paint (fill).
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testIntersectHorizontalGradiendPaint(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setHorizontalGradientFill(image, graphics);
+        // create area using intersect operator
+        Area area = createAreaFromRectanglesUsingIntersectOperator(image);
+        // draw the area
+        graphics.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two rectangles using XOR operator. The
+     * shape is rendered using horizontal gradient color paint (fill).
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testXorHorizontalGradiendPaint(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set fill color
+        CommonRenderingStyles.setHorizontalGradientFill(image, graphics);
+        // create area using XOR operator
+        Area area = createAreaFromRectanglesUsingXorOperator(image);
+        // draw the area
+        graphics.fill(area);
+        return TestResult.PASSED;
+    }
+
+    /**
      * Entry point to the test suite.
      * 
      * @param args



More information about the distro-pkg-dev mailing list