/hg/gfx-test: 2011-12-07 Pavel Tisnovsky <ptisnovs at redhat.com>
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Dec 7 02:05:51 PST 2011
changeset fe1013f76915 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=fe1013f76915
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Dec 07 11:08:08 2011 +0100
2011-12-07 Pavel Tisnovsky <ptisnovs at redhat.com>
*
src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java:
Added new tests - rendering using gradient paint. Reformating of
Javadoc.
* src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java:
Added fourteen new tests to this test suite (incl. transparency
tests).
diffstat:
ChangeLog | 8 +
src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java | 133 ++++-
src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java | 268 +++++++++-
3 files changed, 393 insertions(+), 16 deletions(-)
diffs (truncated from 554 to 500 lines):
diff -r f866b8c554e0 -r fe1013f76915 ChangeLog
--- a/ChangeLog Tue Dec 06 11:46:32 2011 +0100
+++ b/ChangeLog Wed Dec 07 11:08:08 2011 +0100
@@ -1,3 +1,11 @@
+2011-12-07 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java:
+ Added new tests - rendering using gradient paint. Reformating of
+ Javadoc.
+ * src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java:
+ Added fourteen new tests to this test suite (incl. transparency tests).
+
2011-12-06 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java:
diff -r f866b8c554e0 -r fe1013f76915 src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java Tue Dec 06 11:46:32 2011 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java Wed Dec 07 11:08:08 2011 +0100
@@ -295,7 +295,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintRed000(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 0% transparency
+ // draw circle clipped by rectangle using alpha paint with 0%
+ // transparency
drawCircleClippedByRectangleAlphaPaintRed(image, graphics2d, 0);
// test result
return TestResult.PASSED;
@@ -313,7 +314,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintRed025(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 25% transparency
+ // draw circle clipped by rectangle using alpha paint with 25%
+ // transparency
drawCircleClippedByRectangleAlphaPaintRed(image, graphics2d, 25);
// test result
return TestResult.PASSED;
@@ -331,7 +333,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintRed050(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 50% transparency
+ // draw circle clipped by rectangle using alpha paint with 50%
+ // transparency
drawCircleClippedByRectangleAlphaPaintRed(image, graphics2d, 50);
// test result
return TestResult.PASSED;
@@ -349,7 +352,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintRed075(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 75% transparency
+ // draw circle clipped by rectangle using alpha paint with 75%
+ // transparency
drawCircleClippedByRectangleAlphaPaintRed(image, graphics2d, 75);
// test result
return TestResult.PASSED;
@@ -367,7 +371,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintRed100(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 100% transparency
+ // draw circle clipped by rectangle using alpha paint with 100%
+ // transparency
drawCircleClippedByRectangleAlphaPaintRed(image, graphics2d, 100);
// test result
return TestResult.PASSED;
@@ -385,7 +390,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintGreen000(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 0% transparency
+ // draw circle clipped by rectangle using alpha paint with 0%
+ // transparency
drawCircleClippedByRectangleAlphaPaintGreen(image, graphics2d, 0);
// test result
return TestResult.PASSED;
@@ -403,7 +409,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintGreen025(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 25% transparency
+ // draw circle clipped by rectangle using alpha paint with 25%
+ // transparency
drawCircleClippedByRectangleAlphaPaintGreen(image, graphics2d, 25);
// test result
return TestResult.PASSED;
@@ -421,7 +428,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintGreen050(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 50% transparency
+ // draw circle clipped by rectangle using alpha paint with 50%
+ // transparency
drawCircleClippedByRectangleAlphaPaintGreen(image, graphics2d, 50);
// test result
return TestResult.PASSED;
@@ -439,7 +447,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintGreen075(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 75% transparency
+ // draw circle clipped by rectangle using alpha paint with 75%
+ // transparency
drawCircleClippedByRectangleAlphaPaintGreen(image, graphics2d, 75);
// test result
return TestResult.PASSED;
@@ -457,7 +466,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintGreen100(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 100% transparency
+ // draw circle clipped by rectangle using alpha paint with 100%
+ // transparency
drawCircleClippedByRectangleAlphaPaintGreen(image, graphics2d, 100);
// test result
return TestResult.PASSED;
@@ -475,7 +485,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintBlue000(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 0% transparency
+ // draw circle clipped by rectangle using alpha paint with 0%
+ // transparency
drawCircleClippedByRectangleAlphaPaintBlue(image, graphics2d, 0);
// test result
return TestResult.PASSED;
@@ -493,7 +504,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintBlue025(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 25% transparency
+ // draw circle clipped by rectangle using alpha paint with 25%
+ // transparency
drawCircleClippedByRectangleAlphaPaintBlue(image, graphics2d, 25);
// test result
return TestResult.PASSED;
@@ -511,7 +523,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintBlue050(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 50% transparency
+ // draw circle clipped by rectangle using alpha paint with 50%
+ // transparency
drawCircleClippedByRectangleAlphaPaintBlue(image, graphics2d, 50);
// test result
return TestResult.PASSED;
@@ -529,7 +542,8 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintBlue075(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 75% transparency
+ // draw circle clipped by rectangle using alpha paint with 75%
+ // transparency
drawCircleClippedByRectangleAlphaPaintBlue(image, graphics2d, 75);
// test result
return TestResult.PASSED;
@@ -547,13 +561,102 @@
*/
public TestResult testClipCircleByRectangleShapeAlphaPaintBlue100(TestImage image, Graphics2D graphics2d)
{
- // draw circle clipped by rectangle using alpha paint with 100% transparency
+ // draw circle clipped by rectangle using alpha paint with 100%
+ // transparency
drawCircleClippedByRectangleAlphaPaintBlue(image, graphics2d, 100);
// test result
return TestResult.PASSED;
}
/**
+ * Check if circle shape could be clipped by a rectangle shape. Circle is
+ * rendered using horizontal gradient paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleAreaHorizontalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set horizontal gradient paint
+ CommonRenderingStyles.setHorizontalGradientFill(image, graphics2d);
+ // set clip region and render filled circle
+ drawFilledCircleClippedByRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangle shape. Circle is
+ * rendered using vertical gradient paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleAreaVerticalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set vertical gradient paint
+ CommonRenderingStyles.setVerticalGradientFill(image, graphics2d);
+ // set clip region and render filled circle
+ drawFilledCircleClippedByRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangle shape. Circle is
+ * rendered using diagonal gradient paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleAreaDiagonalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set diagonal gradient paint
+ CommonRenderingStyles.setDiagonalGradientFill(image, graphics2d);
+ // set clip region and render filled circle
+ drawFilledCircleClippedByRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangle shape. Circle is
+ * rendered using radial gradient paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleAreaRadialGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set radial gradient paint
+ CommonRenderingStyles.setRadialGradientFill(image, graphics2d);
+ // set clip region and render filled circle
+ drawFilledCircleClippedByRectangleShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args
diff -r f866b8c554e0 -r fe1013f76915 src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java Tue Dec 06 11:46:32 2011 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java Wed Dec 07 11:08:08 2011 +0100
@@ -147,7 +147,7 @@
private void drawFilledCircleUsingAlphaPaint(TestImage image, Graphics2D graphics2d)
{
// create clip area
- CommonClippingOperations.createClipUsingRectangleShape(image, graphics2d);
+ CommonClippingOperations.createClipUsingRoundRectangleShape(image, graphics2d);
// fill the shape
CommonShapesRenderer.drawFilledCircle(image, graphics2d);
}
@@ -307,6 +307,196 @@
/**
* Check if circle shape could be clipped by a round rectangular shape.
+ * Circle is rendered using alpha paint with red color at 0% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintRed000(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 0%
+ // transparency
+ drawCircleClippedByRoundRectangleAlphaPaintRed(image, graphics2d, 0);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a round rectangular shape.
+ * Circle is rendered using alpha paint with red color at 25% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintRed025(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 25%
+ // transparency
+ drawCircleClippedByRoundRectangleAlphaPaintRed(image, graphics2d, 25);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a round rectangular shape.
+ * Circle is rendered using alpha paint with red color at 50% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintRed050(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 50%
+ // transparency
+ drawCircleClippedByRoundRectangleAlphaPaintRed(image, graphics2d, 50);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a round rectangular shape.
+ * Circle is rendered using alpha paint with red color at 75% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintRed075(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 75%
+ // transparency
+ drawCircleClippedByRoundRectangleAlphaPaintRed(image, graphics2d, 75);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a round rectangular shape.
+ * Circle is rendered using alpha paint with red color at 100% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintRed100(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 100%
+ // transparency
+ drawCircleClippedByRoundRectangleAlphaPaintRed(image, graphics2d, 100);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a round rectangular shape.
+ * Circle is rendered using alpha paint with green color at 0% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintGreen000(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 0%
+ // transparency
+ drawCircleClippedByRoundRectangleAlphaPaintGreen(image, graphics2d, 0);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a round rectangular shape.
+ * Circle is rendered using alpha paint with green color at 25% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintGreen025(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 25%
+ // transparency
+ drawCircleClippedByRoundRectangleAlphaPaintGreen(image, graphics2d, 25);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a round rectangular shape.
+ * Circle is rendered using alpha paint with green color at 50% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintGreen050(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 50%
+ // transparency
+ drawCircleClippedByRoundRectangleAlphaPaintGreen(image, graphics2d, 50);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a round rectangular shape.
+ * Circle is rendered using alpha paint with green color at 75% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintGreen075(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 75%
+ // transparency
+ drawCircleClippedByRoundRectangleAlphaPaintGreen(image, graphics2d, 75);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a round rectangular shape.
+ * Circle is rendered using alpha paint with green color at 100% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintGreen100(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 100%
+ // transparency
+ drawCircleClippedByRoundRectangleAlphaPaintGreen(image, graphics2d, 100);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a round rectangular shape.
* Circle is rendered using alpha paint with blue color at 0% transparency.
*
* @param image
@@ -325,6 +515,82 @@
}
/**
+ * Check if circle shape could be clipped by a round rectangular shape.
+ * Circle is rendered using alpha paint with blue color at 25% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintBlue025(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 25%
+ // transparency
+ drawCircleClippedByRoundRectangleAlphaPaintBlue(image, graphics2d, 25);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a round rectangular shape.
+ * Circle is rendered using alpha paint with blue color at 50% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
More information about the distro-pkg-dev
mailing list