/hg/gfx-test: Added new tests to a test suite PrintTestRoundRect...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Jun 27 06:21:18 PDT 2012
changeset cf65ce58068f in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=cf65ce58068f
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Jun 27 15:23:59 2012 +0200
Added new tests to a test suite PrintTestRoundRectangles
* src/org/gfxtest/testsuites/PrintTestCircles.java:
Removed unused import.
* src/org/gfxtest/testsuites/PrintTestRoundRectangles.java:
Added five new tests to this test suite.
diffstat:
ChangeLog | 7 +
src/org/gfxtest/testsuites/PrintTestCircles.java | 1 -
src/org/gfxtest/testsuites/PrintTestRoundRectangles.java | 193 ++++++++++++++-
3 files changed, 197 insertions(+), 4 deletions(-)
diffs (261 lines):
diff -r 3a93ddd621d9 -r cf65ce58068f ChangeLog
--- a/ChangeLog Tue Jun 26 12:27:14 2012 +0200
+++ b/ChangeLog Wed Jun 27 15:23:59 2012 +0200
@@ -1,3 +1,10 @@
+2012-06-27 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/PrintTestCircles.java:
+ Removed unused import.
+ * src/org/gfxtest/testsuites/PrintTestRoundRectangles.java:
+ Added five new tests to this test suite.
+
2012-06-26 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/PrintTestRectangles.java:
diff -r 3a93ddd621d9 -r cf65ce58068f src/org/gfxtest/testsuites/PrintTestCircles.java
--- a/src/org/gfxtest/testsuites/PrintTestCircles.java Tue Jun 26 12:27:14 2012 +0200
+++ b/src/org/gfxtest/testsuites/PrintTestCircles.java Wed Jun 27 15:23:59 2012 +0200
@@ -41,7 +41,6 @@
package org.gfxtest.testsuites;
import java.awt.BasicStroke;
-import java.awt.Color;
import java.awt.Graphics2D;
diff -r 3a93ddd621d9 -r cf65ce58068f src/org/gfxtest/testsuites/PrintTestRoundRectangles.java
--- a/src/org/gfxtest/testsuites/PrintTestRoundRectangles.java Tue Jun 26 12:27:14 2012 +0200
+++ b/src/org/gfxtest/testsuites/PrintTestRoundRectangles.java Wed Jun 27 15:23:59 2012 +0200
@@ -42,11 +42,14 @@
+import java.awt.BasicStroke;
import java.awt.Graphics2D;
import org.gfxtest.callbacks.RectangleDrawCallbacks;
+import org.gfxtest.framework.ColorPalette;
+import org.gfxtest.framework.GrayscalePalette;
import org.gfxtest.framework.PrintTest;
import org.gfxtest.framework.TestImage;
import org.gfxtest.framework.TestResult;
@@ -89,7 +92,7 @@
* @param rectangleDrawCallbacks
* class containing set of callback methods
*/
- private static void drawRectangles(TestImage image, Graphics2D graphics, int step, RectangleDrawCallbacks rectangleDrawCallbacks)
+ private static void drawRoundRectangles(TestImage image, Graphics2D graphics, int step, RectangleDrawCallbacks rectangleDrawCallbacks)
{
// setup rendering
rectangleDrawCallbacks.setup(image, graphics);
@@ -135,7 +138,7 @@
}
/**
- * Test basic behavior of method Graphics.drawRect(). Rectangles are
+ * Test basic behavior of method Graphics.drawRoundRect(). Round rectangles are
* rendered with default width and default end caps. Color of all rendered
* rectangles are set to black.
*
@@ -147,7 +150,7 @@
*/
public TestResult testDrawRoundRectanglesBasicStyle(TestImage image, Graphics2D graphics)
{
- drawRectangles(image, graphics, RECTANGLE_STEP, new RectangleDrawCallbacks()
+ drawRoundRectangles(image, graphics, RECTANGLE_STEP, new RectangleDrawCallbacks()
{
/**
* Callback function called before each rectangle is rendered.
@@ -164,6 +167,190 @@
}
/**
+ * Test basic behavior of method Graphics.drawRoundRect(). Round rectangles are
+ * rendered with default width and default end caps. Color of all rendered
+ * rectangles are selected from a palette.
+ *
+ * @param image
+ * image to which circles are to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testDrawRoundRectanglesColorPalette(TestImage image, Graphics2D graphics2d)
+ {
+ drawRoundRectangles(image, graphics2d, RECTANGLE_STEP, new RectangleDrawCallbacks()
+ {
+ /**
+ * Callback function called before each rectangle is rendered.
+ */
+ @Override
+ public void iterationCallBack(int x1, int y1, int x2, int y2, int index)
+ {
+ // set new circle color to index
+ this.graphics.setColor(ColorPalette.getColor(index));
+ return;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test basic behavior of method Graphics.drawRoundRect(). Round rectangles are
+ * rendered with default width and default end caps. Color of all rendered
+ * rectangles are selected from a palette.
+ *
+ * @param image
+ * image to which circles are to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testDrawRoundRectanglesColorPaletteInv(TestImage image, Graphics2D graphics2d)
+ {
+ drawRoundRectangles(image, graphics2d, RECTANGLE_STEP, new RectangleDrawCallbacks()
+ {
+ /**
+ * Callback function called before each rectangle is rendered.
+ */
+ @Override
+ public void iterationCallBack(int x1, int y1, int x2, int y2, int index)
+ {
+ // set new circle color according to index
+ this.graphics.setColor(ColorPalette.getColor(MAX_COLOR_INDEX - index));
+ return;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test basic behavior of method Graphics.drawRoundRect(). Round rectangles are
+ * rendered with default width and default end caps. Color of all rendered
+ * rectangles are selected from a grascale palette.
+ *
+ * @param image
+ * image to which circles are to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testDrawRoundRectanglesGrayScale(TestImage image, Graphics2D graphics2d)
+ {
+ drawRoundRectangles(image, graphics2d, RECTANGLE_STEP, new RectangleDrawCallbacks()
+ {
+ /**
+ * Callback function called before each rectangle is rendered.
+ */
+ @Override
+ public void iterationCallBack(int x1, int y1, int x2, int y2, int index)
+ {
+ // compute grayscale value
+ float gray = (x2 - x1) * 1.0f / (this.image.getWidth());
+ // clamp the grayscale value
+ if (gray > 1.0f)
+ {
+ gray = 1.0f;
+ }
+ // set circle color
+ this.graphics.setColor(GrayscalePalette.createGrayscaleColor(gray));
+ return;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test basic behavior of method Graphics.drawRoundRect(). Round rectangles are
+ * rendered with default width and default end caps. Color of all rendered
+ * rectangles are selected from a grascale palette.
+ *
+ * @param image
+ * image to which circles are to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testDrawRoundRectanglesGrayScaleInv(TestImage image, Graphics2D graphics2d)
+ {
+ drawRoundRectangles(image, graphics2d, RECTANGLE_STEP, new RectangleDrawCallbacks()
+ {
+ /**
+ * Callback function called before each rectangle is rendered.
+ */
+ @Override
+ public void iterationCallBack(int x1, int y1, int x2, int y2, int index)
+ {
+ // compute grayscale value
+ float gray = 1.0f - (x2 - x1) * 1.0f / (this.image.getWidth());
+ // clamp the grayscale value
+ if (gray < 0.0f)
+ {
+ gray = 0.0f;
+ }
+ // set circle color
+ this.graphics.setColor(GrayscalePalette.createGrayscaleColor(gray));
+ return;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test basic behavior of method Graphics.drawRoundRect(). Round rectangles are
+ * rendered with various width and default end caps. Color of all rendered
+ * rectangles are set to black.
+ *
+ * @param image
+ * image to which circles are to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testDrawRoundRectanglesChangeWidth(TestImage image, Graphics2D graphics2d)
+ {
+ drawRoundRectangles(image, graphics2d, RECTANGLE_STEP * 3 / 2, new RectangleDrawCallbacks()
+ {
+ /**
+ * Stroke width which is changed in each iteration.
+ */
+ private float strokeWidth = MIN_STROKE_WIDTH;
+
+ /**
+ * Callback function called before each rectangle is rendered.
+ */
+ @Override
+ public void iterationCallBack(int x1, int y1, int x2, int y2, int index)
+ {
+ // set stroke width
+ this.graphics.setStroke(new BasicStroke(this.strokeWidth));
+ // and change it for the next iteration
+ changeStrokeWidth();
+ return;
+ }
+
+ /**
+ * Changes stroke width.
+ */
+ private void changeStrokeWidth()
+ {
+ this.strokeWidth = this.strokeWidth < MAX_STROKE_WIDTH ? this.strokeWidth + STROKE_WIDTH_DELTA : this.strokeWidth;
+ }
+ });
+
+ // test return value
+ 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