/hg/gfx-test: New tests added into CAGOperationsOnChordAndRectan...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Oct 21 09:14:03 UTC 2014
changeset 5d4193a00a75 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=5d4193a00a75
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Oct 21 11:15:19 2014 +0200
New tests added into CAGOperationsOnChordAndRectangle.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java | 185 ++++++++++
2 files changed, 190 insertions(+), 0 deletions(-)
diffs (212 lines):
diff -r 25e13a04f67e -r 5d4193a00a75 ChangeLog
--- a/ChangeLog Fri Oct 17 10:50:00 2014 +0200
+++ b/ChangeLog Tue Oct 21 11:15:19 2014 +0200
@@ -1,3 +1,8 @@
+2014-10-21 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java:
+ New tests added into CAGOperationsOnChordAndRectangle.
+
2014-10-17 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/CAGOperationsOnTwoOverlappingRectangles.java:
diff -r 25e13a04f67e -r 5d4193a00a75 src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java Fri Oct 17 10:50:00 2014 +0200
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java Tue Oct 21 11:15:19 2014 +0200
@@ -2716,6 +2716,190 @@
}
/**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from a chord inside a rectangle using inverse subtract operator.
+ * The shape is rendered using vertical 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 testOverlappingChordAndRectangleInverseSubtractVerticalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set vertical gradient fill
+ CommonRenderingStyles.setVerticalGradientFill(image, graphics2d);
+ // create area using inverse subtract operator
+ Area area = CommonCAGOperations.createAreaFromOverlappingChordAndRectangleUsingInverseSubtractOperator(image);
+ // fill the area
+ graphics2d.fill(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from a chord inside a rectangle using intersect operator. The shape is
+ * rendered using vertical 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 testOverlappingChordAndRectangleIntersectVerticalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set vertical gradient fill
+ CommonRenderingStyles.setVerticalGradientFill(image, graphics2d);
+ // create area using intersect operator
+ Area area = CommonCAGOperations.createAreaFromOverlappingChordAndRectangleUsingIntersectOperator(image);
+ // fill the area
+ graphics2d.fill(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from a chord inside a rectangle using XOR operator. The shape is
+ * rendered using vertical 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 testOverlappingChordAndRectangleXorVerticalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set vertical gradient fill
+ CommonRenderingStyles.setVerticalGradientFill(image, graphics2d);
+ // create area using XOR operator
+ Area area = CommonCAGOperations.createAreaFromOverlappingChordAndRectangleUsingXorOperator(image);
+ // fill the area
+ graphics2d.fill(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from a chord inside a rectangle using union operator. The shape is
+ * rendered using diagonal 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 testOverlappingChordAndRectangleUnionDiagonalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set diagonal gradient fill
+ CommonRenderingStyles.setDiagonalGradientFill(image, graphics2d);
+ // create area using union operator
+ Area area = CommonCAGOperations.createAreaFromOverlappingChordAndRectangleUsingUnionOperator(image);
+ // fill the area
+ graphics2d.fill(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from a chord inside a rectangle using subtract operator. The shape is
+ * rendered using diagonal 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 testOverlappingChordAndRectangleSubtractDiagonalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set diagonal gradient fill
+ CommonRenderingStyles.setDiagonalGradientFill(image, graphics2d);
+ // create area using subtract operator
+ Area area = CommonCAGOperations.createAreaFromOverlappingChordAndRectangleUsingSubtractOperator(image);
+ // fill the area
+ graphics2d.fill(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from a chord inside a rectangle using inverse subtract operator.
+ * The shape is rendered using diagonal 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 testOverlappingChordAndRectangleInverseSubtractDiagonalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set diagonal gradient fill
+ CommonRenderingStyles.setDiagonalGradientFill(image, graphics2d);
+ // create area using inverse subtract operator
+ Area area = CommonCAGOperations.createAreaFromOverlappingChordAndRectangleUsingInverseSubtractOperator(image);
+ // fill the area
+ graphics2d.fill(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from a chord inside a rectangle using intersect operator. The shape is
+ * rendered using diagonal 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 testOverlappingChordAndRectangleIntersectDiagonalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set diagonal gradient fill
+ CommonRenderingStyles.setDiagonalGradientFill(image, graphics2d);
+ // create area using intersect operator
+ Area area = CommonCAGOperations.createAreaFromOverlappingChordAndRectangleUsingIntersectOperator(image);
+ // fill the area
+ graphics2d.fill(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from a chord inside a rectangle using XOR operator. The shape is
+ * rendered using diagonal 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 testOverlappingChordAndRectangleXorDiagonalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set diagonal gradient fill
+ CommonRenderingStyles.setDiagonalGradientFill(image, graphics2d);
+ // create area using XOR operator
+ Area area = CommonCAGOperations.createAreaFromOverlappingChordAndRectangleUsingXorOperator(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
@@ -2724,4 +2908,5 @@
{
new CAGOperationsOnChordAndRectangle().runTestSuite(args);
}
+
}
More information about the distro-pkg-dev
mailing list