/hg/gfx-test: Added new tests: rendering CAG areas using wide an...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Sep 22 08:57:21 PDT 2011
changeset bc3c1c37b226 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=bc3c1c37b226
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Sep 22 17:59:04 2011 +0200
Added new tests: rendering CAG areas using wide and extra wide
stroke to the test
src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java.
Some helper methods were also added to this test class.
diffstat:
ChangeLog | 6 +
src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java | 312 +++++++++-
2 files changed, 314 insertions(+), 4 deletions(-)
diffs (350 lines):
diff -r 829297d71c1d -r bc3c1c37b226 ChangeLog
--- a/ChangeLog Tue Sep 20 13:51:42 2011 +0200
+++ b/ChangeLog Thu Sep 22 17:59:04 2011 +0200
@@ -1,3 +1,9 @@
+2011-09-22 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java:
+ Added new tests: rendering CAG areas using wide and extra wide stroke,
+ some helper methods were also added to this test class.
+
2011-09-20 Pavel Tisnovsky <ptisnovs at redhat.com>
* Makefile: added new class to compile
diff -r 829297d71c1d -r bc3c1c37b226 src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java
--- a/src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java Tue Sep 20 13:51:42 2011 +0200
+++ b/src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java Thu Sep 22 17:59:04 2011 +0200
@@ -252,18 +252,82 @@
}
/**
- * Create new area constructed from smaller circle and rectangle using union
- * operation.
+ * Create new area constructed from smaller circle placed inside a rectangle
+ * using union operation.
*
* @param image
* image to which area is to be drawn
* @return newly created area containing one rectangle
*/
- private Area createAreaFromSmallerCircleAndRectangleUsingUnionOperator(TestImage image)
+ private Area createAreaFromSmallerCircleInsideRectangleUsingUnionOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createCenteredRectangularArea(image));
+ area.add(createSmallerCenteredCircularArea(image));
+ return area;
+ }
+
+ /**
+ * Create new area constructed from smaller circle placed inside a rectangle
+ * using subtract operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one rectangle
+ */
+ private Area createAreaFromSmallerCircleInsideRectangleUsingSubtractOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createCenteredRectangularArea(image));
+ area.subtract(createSmallerCenteredCircularArea(image));
+ return area;
+ }
+
+ /**
+ * Create new area constructed from smaller circle placed inside a rectangle
+ * using inverse subtract operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one rectangle
+ */
+ private Area createAreaFromSmallerCircleInsideRectangleUsingInverseSubtractOperator(TestImage image)
{
Area area = new Area();
area.add(createSmallerCenteredCircularArea(image));
- area.add(createCenteredRectangularArea(image));
+ area.subtract(createCenteredRectangularArea(image));
+ return area;
+ }
+
+ /**
+ * Create new area constructed from smaller circle placed inside a rectangle
+ * using intersect operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one rectangle
+ */
+ private Area createAreaFromSmallerCircleInsideRectangleUsingIntersectOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createSmallerCenteredCircularArea(image));
+ area.intersect(createCenteredRectangularArea(image));
+ return area;
+ }
+
+ /**
+ * Create new area constructed from smaller circle placed inside a rectangle
+ * using XOR operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one rectangle
+ */
+ private Area createAreaFromSmallerCircleInsideRectangleUsingXorOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createSmallerCenteredCircularArea(image));
+ area.exclusiveOr(createCenteredRectangularArea(image));
return area;
}
@@ -380,6 +444,246 @@
/**
* Checks the process of creating and rendering new geometric shape
* constructed from circle and rectangle using union operator. The shape is
+ * rendered using wide stroke.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigCircleRectangleUnionWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // create area using union operator
+ Area area = createAreaFromBiggerCircleAndRectangleUsingUnionOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from circle and rectangle using intersect operator. The shape
+ * is rendered using wide stroke.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigCircleRectangleIntersectWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // create area using intersect operator
+ Area area = createAreaFromBiggerCircleAndRectangleUsingIntersectOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from circle and rectangle using subtract operator. The shape
+ * is rendered using wide stroke.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigCircleRectangleSubtractWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // create area using subtract operator
+ Area area = createAreaFromBiggerCircleAndRectangleUsingSubtractOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from circle and rectangle using inverse subtract operator.
+ * The shape is rendered using wide stroke.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigCircleRectangleInverseSubtractWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // create area using inverse subtract operator
+ Area area = createAreaFromBiggerCircleAndRectangleUsingInverseSubtractOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from circle and rectangle using Xor operator.
+ * The shape is rendered using wide stroke.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigCircleRectangleXorWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // create area using XOR operator
+ Area area = createAreaFromBiggerCircleAndRectangleUsingXorOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from circle and rectangle using union operator. The shape is
+ * rendered using extra wide stroke.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigCircleRectangleUnionExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set extra wide stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // create area using union operator
+ Area area = createAreaFromBiggerCircleAndRectangleUsingUnionOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from circle and rectangle using intersect operator. The shape
+ * is rendered using extra wide stroke.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigCircleRectangleIntersectExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set extra wide stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // create area using intersect operator
+ Area area = createAreaFromBiggerCircleAndRectangleUsingIntersectOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from circle and rectangle using subtract operator. The shape
+ * is rendered using extra wide stroke.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigCircleRectangleSubtractExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set extra wide stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // create area using subtract operator
+ Area area = createAreaFromBiggerCircleAndRectangleUsingSubtractOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from circle and rectangle using inverse subtract operator.
+ * The shape is rendered using extra wide stroke.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigCircleRectangleInverseSubtractExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set extra wide stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // create area using inverse subtract operator
+ Area area = createAreaFromBiggerCircleAndRectangleUsingInverseSubtractOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from circle and rectangle using Xor operator.
+ * The shape is rendered using extra wide stroke.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBigCircleRectangleXorExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set extra wide stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // create area using XOR operator
+ Area area = createAreaFromBiggerCircleAndRectangleUsingXorOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from circle and rectangle using union operator. The shape is
* rendered using color fill.
*
* @param image
More information about the distro-pkg-dev
mailing list