/hg/gfx-test: Five new tests added into CAGOperationsOnChordAndR...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Jan 7 02:50:01 PST 2014
changeset dbc725e7433d in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=dbc725e7433d
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Jan 07 11:53:59 2014 +0100
Five new tests added into CAGOperationsOnChordAndRectangle test suite.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java | 115 ++++++++++
2 files changed, 120 insertions(+), 0 deletions(-)
diffs (137 lines):
diff -r 9d4807b9f0c5 -r dbc725e7433d ChangeLog
--- a/ChangeLog Mon Jan 06 11:20:02 2014 +0100
+++ b/ChangeLog Tue Jan 07 11:53:59 2014 +0100
@@ -1,3 +1,8 @@
+2014-01-07 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java:
+ Five new tests added into CAGOperationsOnChordAndRectangle test suite.
+
2014-01-06 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java:
diff -r 9d4807b9f0c5 -r dbc725e7433d src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java Mon Jan 06 11:20:02 2014 +0100
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java Tue Jan 07 11:53:59 2014 +0100
@@ -490,6 +490,121 @@
}
/**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from chord and rectangle using inverse subtract operator.
+ * The shape is rendered using color fill.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigChordRectangleInverseSubtractColorPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set fill color
+ CommonRenderingStyles.setFillColor(graphics2d);
+ // create area using inverse subtract operator
+ Area area = CommonCAGOperations.createAreaFromBiggerChordAndRectangleUsingInverseSubtractOperator(image);
+ // fill the area
+ graphics2d.fill(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from chord and rectangle using intersect operator.
+ * The shape is rendered using color fill.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigChordRectangleIntersectColorPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set fill color
+ CommonRenderingStyles.setFillColor(graphics2d);
+ // create area using intersect operator
+ Area area = CommonCAGOperations.createAreaFromBiggerChordAndRectangleUsingIntersectOperator(image);
+ // fill the area
+ graphics2d.fill(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from chord and rectangle using XOR operator.
+ * The shape is rendered using color fill.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigChordRectangleXorColorPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set fill color
+ CommonRenderingStyles.setFillColor(graphics2d);
+ // create area using Xor operator
+ Area area = CommonCAGOperations.createAreaFromBiggerChordAndRectangleUsingXorOperator(image);
+ // fill the area
+ graphics2d.fill(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from chord and rectangle using union operator. The shape is
+ * rendered using radial gradient fill.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigChordRectangleUnionRadialGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set radial gradient fill
+ CommonRenderingStyles.setRadialGradientFill(image, graphics2d);
+ // create area using union operator
+ Area area = CommonCAGOperations.createAreaFromBiggerChordAndRectangleUsingUnionOperator(image);
+ // fill the area
+ graphics2d.fill(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from chord and rectangle using subtract operator. The shape is
+ * rendered using radial gradient fill.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigChordRectangleSubtractRadialGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set radial gradient fill
+ CommonRenderingStyles.setRadialGradientFill(image, graphics2d);
+ // create area using subtract operator
+ Area area = CommonCAGOperations.createAreaFromBiggerChordAndRectangleUsingSubtractOperator(image);
+ // fill the area
+ graphics2d.fill(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args not used in this case
More information about the distro-pkg-dev
mailing list