/hg/gfx-test: * src/org/gfxtest/framework/PrintTest.java:
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu May 24 02:38:54 PDT 2012
changeset ab51d1f4d8ba in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=ab51d1f4d8ba
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu May 24 11:41:36 2012 +0200
* src/org/gfxtest/framework/PrintTest.java:
Added new constants required by tests.
* src/org/gfxtest/testsuites/PrintTestArcs.java:
Basic functionality of this test suite.
diffstat:
ChangeLog | 7 +
src/org/gfxtest/framework/PrintTest.java | 10 +
src/org/gfxtest/testsuites/PrintTestArcs.java | 146 +++++++++++++++++++++++++-
3 files changed, 162 insertions(+), 1 deletions(-)
diffs (202 lines):
diff -r 9d3dfd9343a9 -r ab51d1f4d8ba ChangeLog
--- a/ChangeLog Tue May 22 12:03:36 2012 +0200
+++ b/ChangeLog Thu May 24 11:41:36 2012 +0200
@@ -1,3 +1,10 @@
+2012-05-24 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/framework/PrintTest.java:
+ Added new constants required by tests.
+ * src/org/gfxtest/testsuites/PrintTestArcs.java:
+ Basic functionality of this test suite.
+
2012-05-22 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/PrintTestCircles.java:
diff -r 9d3dfd9343a9 -r ab51d1f4d8ba src/org/gfxtest/framework/PrintTest.java
--- a/src/org/gfxtest/framework/PrintTest.java Tue May 22 12:03:36 2012 +0200
+++ b/src/org/gfxtest/framework/PrintTest.java Thu May 24 11:41:36 2012 +0200
@@ -70,6 +70,16 @@
protected static final int CIRCLE_RADIUS_STEP = 10;
/**
+ * Offset between two arcs.
+ */
+ protected static final int ARC_RADIUS_STEP = 10;
+
+ /**
+ * Minimum radius of a circle or an arc.
+ */
+ protected static final int MINIMUM_RADIUS = 10;
+
+ /**
* Horizontal distance between two lines.
*/
protected static final int HORIZONTAL_STEP = 10;
diff -r 9d3dfd9343a9 -r ab51d1f4d8ba src/org/gfxtest/testsuites/PrintTestArcs.java
--- a/src/org/gfxtest/testsuites/PrintTestArcs.java Tue May 22 12:03:36 2012 +0200
+++ b/src/org/gfxtest/testsuites/PrintTestArcs.java Thu May 24 11:41:36 2012 +0200
@@ -40,7 +40,14 @@
package org.gfxtest.testsuites;
+import java.awt.Color;
+import java.awt.Graphics2D;
+
+
+
import org.gfxtest.framework.PrintTest;
+import org.gfxtest.framework.TestImage;
+import org.gfxtest.framework.TestResult;
import org.gfxtest.framework.annotations.GraphicsPrimitive;
import org.gfxtest.framework.annotations.GraphicsPrimitives;
import org.gfxtest.framework.annotations.RenderStyle;
@@ -65,7 +72,86 @@
@Zoom(1)
public class PrintTestArcs extends PrintTest
{
-
+
+ /**
+ * Method which renders set of arcs using various colors and
+ * stroke styles. For each arc, the callback function/method is called to
+ * perform all required setup.
+ *
+ * @param image
+ * image to which arcs are to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @param radiusStep
+ * between two near arcs
+ * @param arcDrawCallback
+ * class containing set of callback methods
+ */
+ private void drawArcs(TestImage image, Graphics2D graphics2d, int radiusStep, CommonArcDrawCallbacks arcDrawCallback)
+ {
+ // setup rendering
+ arcDrawCallback.setup(image, graphics2d);
+
+ // image width and height
+ final int width = image.getWidth();
+ final int height = image.getHeight();
+
+ // horizontal coordinates of arc center
+ final int xc = width >> 1;
+ final int yc = height >> 1;
+
+ // maximum radius
+ final int maxRadius = Math.min(width, height) - BORDER;
+
+ // index to color palette
+ int colorIndex = 0;
+
+ // arc start angle
+ int startAngle = 0;
+
+ // draw all arcs onto a paper
+ for (int radius = MINIMUM_RADIUS; radius < maxRadius; radius += radiusStep)
+ {
+ // setup can be made for each arc
+ arcDrawCallback.iterationCallBack(xc, yc, radius, maxRadius, colorIndex++);
+ startAngle += 4;
+ // render the arc
+ graphics2d.drawArc(xc - radius, yc - radius, radius << 1, radius << 1, startAngle, 270);
+ }
+
+ // cleanup rendering
+ arcDrawCallback.cleanup();
+ }
+
+ /**
+ * Test basic behavior of method Graphics.drawOval().
+ * Color of all rendered arcs are set to black.
+ *
+ * @param image
+ * image to which arcs are to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testDrawArcBasicStyle(TestImage image, Graphics2D graphics2d)
+ {
+ drawArcs(image, graphics2d, ARC_RADIUS_STEP, new CommonArcDrawCallbacks()
+ {
+ /**
+ * Callback function called before each arc is rendered.
+ */
+ @Override
+ public void iterationCallBack(int x, int y, int radius, int maxRadius, int index)
+ {
+ // nothing need to be changed
+ return;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
/**
* Entry point to the test suite.
*
@@ -77,3 +163,61 @@
new PrintTestArcs().runTestSuite(args);
}
}
+
+/**
+ * Class representing set of callback methods called for each rendered arc.
+ *
+ * @author Pavel Tisnovsky
+ */
+abstract class CommonArcDrawCallbacks
+{
+ /**
+ * Image to which arcs are to be drawn.
+ */
+ protected TestImage image;
+
+ /**
+ * Graphics canvas.
+ */
+ protected Graphics2D graphics;
+
+ /**
+ * Setup phase.
+ *
+ * @param image
+ * image to which arcs are to be drawn
+ * @param graphics2d
+ * graphics canvas
+ */
+ public void setup(TestImage image, Graphics2D graphics)
+ {
+ this.image = image;
+ this.graphics = graphics;
+ // set drawing color
+ graphics.setColor(Color.BLACK);
+ }
+
+ /**
+ * This method is called for each rendered horizontal arc.
+ *
+ * @param x
+ * horizontal coordinate of a arc center
+ * @param y
+ * vertical coordinate of a arc center
+ * @param radius
+ * arc radius
+ * @param maxRadius
+ * maximum allowable arc radius
+ * @param colorIndex
+ * color index
+ */
+ public abstract void iterationCallBack(int x, int y, int radius, int maxRadius, int colorIndex);
+
+ /**
+ * Cleanup phase.
+ */
+ public void cleanup()
+ {
+ return;
+ }
+}
More information about the distro-pkg-dev
mailing list