/hg/gfx-test: Added four test cases to the following test:
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Sep 3 09:30:16 PDT 2012
changeset 408898949c65 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=408898949c65
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Sep 03 18:32:49 2012 +0200
Added four test cases to the following test:
src/org/gfxtest/testsuites/PrintTestCubicCurves.java.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/PrintTestCubicCurves.java | 142 +++++++++++++++++++
2 files changed, 147 insertions(+), 0 deletions(-)
diffs (178 lines):
diff -r 54be940ff585 -r 408898949c65 ChangeLog
--- a/ChangeLog Wed Aug 29 17:56:15 2012 +0200
+++ b/ChangeLog Mon Sep 03 18:32:49 2012 +0200
@@ -1,3 +1,8 @@
+2012-09-03 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/PrintTestCubicCurves.java:
+ Added four test cases to this test.
+
2012-08-29 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/PrintTestCubicCurves.java:
diff -r 54be940ff585 -r 408898949c65 src/org/gfxtest/testsuites/PrintTestCubicCurves.java
--- a/src/org/gfxtest/testsuites/PrintTestCubicCurves.java Wed Aug 29 17:56:15 2012 +0200
+++ b/src/org/gfxtest/testsuites/PrintTestCubicCurves.java Mon Sep 03 18:32:49 2012 +0200
@@ -40,6 +40,7 @@
package org.gfxtest.testsuites;
+import java.awt.BasicStroke;
import java.awt.Graphics2D;
import java.awt.Shape;
import java.awt.geom.CubicCurve2D;
@@ -47,6 +48,9 @@
import org.gfxtest.callbacks.CubicCurveDrawCallbacks;
+import org.gfxtest.framework.ColorPalette;
+import org.gfxtest.framework.GrayscalePalette;
+import org.gfxtest.framework.HSBPalette;
import org.gfxtest.framework.PrintTest;
import org.gfxtest.framework.TestImage;
import org.gfxtest.framework.TestResult;
@@ -185,6 +189,144 @@
}
/**
+ * Test basic behavior of method Graphics.draw(Shape).
+ * Cubic curves are rendered with default width and default end caps.
+ * Color of all rendered curves are selected from a palette.
+ * All rendered cubic curves are represented by a Shape object.
+ *
+ * @param image
+ * image to which lines are to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testDrawCubicCurvesColorPalette(TestImage image, Graphics2D graphics)
+ {
+ drawCubicCurve(image, graphics, CUBIC_CURVE_STEP, new CubicCurveDrawCallbacks()
+ {
+ /**
+ * Callback function called before each cubic curve is rendered.
+ */
+ @Override
+ public void iterationCallBack(int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int index)
+ {
+ // set curve color
+ this.graphics.setColor(ColorPalette.getColor(index));
+ return;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test basic behavior of method Graphics.draw(Shape).
+ * Cubic curves are rendered with default width and default end caps.
+ * Color of all rendered curves are selected from a grayscale palette.
+ * All rendered cubic curves are represented by a Shape object.
+ *
+ * @param image
+ * image to which lines are to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testDrawCubicCurvesGrayScale(TestImage image, Graphics2D graphics)
+ {
+ drawCubicCurve(image, graphics, CUBIC_CURVE_STEP, new CubicCurveDrawCallbacks()
+ {
+ /**
+ * Callback function called before each cubic curve is rendered.
+ */
+ @Override
+ public void iterationCallBack(int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int index)
+ {
+ // compute grayscale value
+ float gray = y1 * 1.0f / this.image.getHeight();
+ // set curve color
+ this.graphics.setColor(GrayscalePalette.createGrayscaleColor(gray));
+ return;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test basic behavior of method Graphics.draw(Shape).
+ * Cubic curves are rendered with default width and default end caps.
+ * All rendered cubic curves are represented by a Shape object.
+ *
+ * @param image
+ * image to which lines are to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testDrawCubicCurvesColorScale(TestImage image, Graphics2D graphics)
+ {
+ drawCubicCurve(image, graphics, CUBIC_CURVE_STEP, new CubicCurveDrawCallbacks()
+ {
+ /**
+ * Callback function called before each cubic curve is rendered.
+ */
+ @Override
+ public void iterationCallBack(int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int index)
+ {
+ // compute hue value
+ float hue = y1 * 1.0f / this.image.getHeight();
+ // set curve color
+ this.graphics.setColor(HSBPalette.createHsbColor(hue));
+ return;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test basic behavior of method Graphics.draw(Shape).
+ * Cubic curves are rendered with various width and default end caps.
+ * Color of all rendered curves are selected from a grayscale palette.
+ * All rendered cubic curves are represented by a Shape object.
+ *
+ * @param image
+ * image to which lines are to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testDrawCubicCurvesChangeWidth(TestImage image, Graphics2D graphics)
+ {
+ drawCubicCurve(image, graphics, CUBIC_CURVE_STEP, new CubicCurveDrawCallbacks()
+ {
+ /**
+ * Stroke width.
+ */
+ float strokeWidth = 0.0f;
+
+ /**
+ * Callback function called before each cubic curve is rendered.
+ */
+ @Override
+ public void iterationCallBack(int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int index)
+ {
+ // set stroke width
+ this.graphics.setStroke(new BasicStroke(this.strokeWidth));
+ // set new stroke width
+ this.strokeWidth = this.strokeWidth < MAX_STROKE_WIDTH ? this.strokeWidth + STROKE_WIDTH_DELTA : this.strokeWidth;
+ return;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args
More information about the distro-pkg-dev
mailing list