/hg/gfx-test: 2011-12-08 Pavel Tisnovsky <ptisnovs at redhat.com>
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Dec 8 02:54:57 PST 2011
changeset f1181d8e0365 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=f1181d8e0365
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Dec 08 11:57:09 2011 +0100
2011-12-08 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/framework/CommonPathsGenerator.java:
Created new class containing methods used by test suites
which work with paths.
* src/org/gfxtest/framework/CommonRenderingStyles.java: Added
two methods used by tests.
* src/org/gfxtest/framework/GfxTest.java: Changed to support
print tests (not really finished yet).
* Makefile: updated
diffstat:
ChangeLog | 11 +
Makefile | 1 +
src/org/gfxtest/framework/CommonPathsGenerator.java | 215 +++++++++++++++++++
src/org/gfxtest/framework/CommonRenderingStyles.java | 28 ++
src/org/gfxtest/framework/GfxTest.java | 100 ++++++--
5 files changed, 331 insertions(+), 24 deletions(-)
diffs (443 lines):
diff -r fe1013f76915 -r f1181d8e0365 ChangeLog
--- a/ChangeLog Wed Dec 07 11:08:08 2011 +0100
+++ b/ChangeLog Thu Dec 08 11:57:09 2011 +0100
@@ -1,3 +1,14 @@
+2011-12-08 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/framework/CommonPathsGenerator.java:
+ Created new class containing methods used by test suites
+ which work with paths.
+ * src/org/gfxtest/framework/CommonRenderingStyles.java:
+ Added two methods used by tests.
+ * src/org/gfxtest/framework/GfxTest.java:
+ Changed to support print tests (not really finished yet).
+ * Makefile: updated
+
2011-12-07 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java:
diff -r fe1013f76915 -r f1181d8e0365 Makefile
--- a/Makefile Wed Dec 07 11:08:08 2011 +0100
+++ b/Makefile Thu Dec 08 11:57:09 2011 +0100
@@ -80,6 +80,7 @@
$(CLASSES)/$(FRAMEWORK_DIR)/CommonRenderingStyles.class \
$(CLASSES)/$(FRAMEWORK_DIR)/CommonShapesRenderer.class \
$(CLASSES)/$(FRAMEWORK_DIR)/CommonClippingOperations.class \
+ $(CLASSES)/$(FRAMEWORK_DIR)/CommonPathsGenerator.class \
$(CLASSES)/$(FRAMEWORK_DIR)/EntityRenderingStyle.class \
$(CLASSES)/$(FRAMEWORK_DIR)/TestResult.class \
$(CLASSES)/$(FRAMEWORK_DIR)/ParameterNotFoundException.class \
diff -r fe1013f76915 -r f1181d8e0365 src/org/gfxtest/framework/CommonPathsGenerator.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/framework/CommonPathsGenerator.java Thu Dec 08 11:57:09 2011 +0100
@@ -0,0 +1,215 @@
+/*
+ Java gfx-test framework
+
+ Copyright (C) 2010, 2011 Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package org.gfxtest.framework;
+
+import java.awt.geom.Path2D;
+
+
+
+/**
+ * This class contains static methods used to create various types of paths.
+ *
+ * @author Pavel Tisnovsky
+ */
+public class CommonPathsGenerator
+{
+ /**
+ * Default Y offset of curve end points.
+ */
+ private static final int DEFAULT_Y_OFFSET_FOR_QUADRATIC_CURVES = 40;
+
+ /**
+ * Create new path using Path2D.Float() which contains just one quadratic
+ * curve.
+ *
+ * @param width
+ * canvas width
+ * @param height
+ * canvas height
+ * @return created path
+ */
+ public static Path2D createQuadraticPathFloat(int width, int height)
+ {
+ return createQuadraticPathFloat(width, height, 0);
+ }
+
+ /**
+ * Create new path using Path2D.Float() which contains just one quadratic
+ * curve.
+ *
+ * @param width
+ * canvas width
+ * @param height
+ * canvas height
+ * @param yoffset
+ * vertical offset
+ * @return created path
+ */
+ public static Path2D createQuadraticPathFloat(int width, int height, int yoffset)
+ {
+ Path2D path = new Path2D.Float();
+ // start point
+ int x1 = computeQuadraticPathX1(width);
+ int y1 = computeQuadraticPathY1() + yoffset;
+ // control point
+ int x2 = computeQuadraticPathX2(width);
+ int y2 = computeQuadraticPathY2(height) + yoffset;
+ // end point
+ int x3 = computeQuadraticPathX3(width);
+ int y3 = computeQuadraticPathY3() + yoffset;
+ path.moveTo(x1, y1);
+ path.quadTo(x2, y2, x3, y3);
+ return path;
+ }
+
+ /**
+ * Create new path using Path2D.Double() which contains just one quadratic
+ * curve.
+ *
+ * @param width
+ * canvas width
+ * @param height
+ * canvas height
+ * @return created path
+ */
+ public static Path2D createQuadraticPathDouble(int width, int height)
+ {
+ return createQuadraticPathDouble(width, height, 0);
+ }
+
+ /**
+ * Create new path using Path2D.Double() which contains just one quadratic
+ * curve.
+ *
+ * @param width
+ * canvas width
+ * @param height
+ * canvas height
+ * @param yoffset
+ * vertical offset
+ * @return created path
+ */
+ public static Path2D createQuadraticPathDouble(int width, int height, int yoffset)
+ {
+ Path2D path = new Path2D.Double();
+ // start point
+ int x1 = computeQuadraticPathX1(width);
+ int y1 = computeQuadraticPathY1() + yoffset;
+ // control point
+ int x2 = computeQuadraticPathX2(width);
+ int y2 = computeQuadraticPathY2(height) + yoffset;
+ // end point
+ int x3 = computeQuadraticPathX3(width);
+ int y3 = computeQuadraticPathY3() + yoffset;
+ path.moveTo(x1, y1);
+ path.quadTo(x2, y2, x3, y3);
+ return path;
+ }
+
+ /**
+ * Compute X coordinate of first curve end point.
+ *
+ * @param width
+ * canvas width
+ * @return X coordinate of first curve end point.
+ */
+ public static int computeQuadraticPathX1(int width)
+ {
+ return width >> 2;
+ }
+
+ /**
+ * Compute X coordinate of curve control point.
+ *
+ * @param width
+ * canvas width
+ * @return X coordinate of curve control point.
+ */
+ public static int computeQuadraticPathX2(int width)
+ {
+ return width >> 1;
+ }
+
+ /**
+ * Compute X coordinate of second curve end point.
+ *
+ * @param width
+ * canvas width
+ * @return X coordinate of second curve end point.
+ */
+ public static int computeQuadraticPathX3(int width)
+ {
+ return width * 3 / 4;
+ }
+
+ /**
+ * Compute Y coordinate of first curve end point.
+ *
+ * @return Y coordinate of first curve end point.
+ */
+ public static int computeQuadraticPathY1()
+ {
+ return DEFAULT_Y_OFFSET_FOR_QUADRATIC_CURVES;
+ }
+
+ /**
+ * Compute Y coordinate of curve control point.
+ *
+ * @param height
+ * canvas height
+ * @return Y coordinate of curve control point.
+ */
+ public static int computeQuadraticPathY2(int height)
+ {
+ return DEFAULT_Y_OFFSET_FOR_QUADRATIC_CURVES + height * 2 / 3;
+ }
+
+ /**
+ * Compute Y coordinate of second curve end point.
+ *
+ * @return Y coordinate of second curve end point.
+ */
+ public static int computeQuadraticPathY3()
+ {
+ return DEFAULT_Y_OFFSET_FOR_QUADRATIC_CURVES;
+ }
+
+}
diff -r fe1013f76915 -r f1181d8e0365 src/org/gfxtest/framework/CommonRenderingStyles.java
--- a/src/org/gfxtest/framework/CommonRenderingStyles.java Wed Dec 07 11:08:08 2011 +0100
+++ b/src/org/gfxtest/framework/CommonRenderingStyles.java Thu Dec 08 11:57:09 2011 +0100
@@ -1189,6 +1189,34 @@
}
/**
+ * Set 10 pixels wide stroke and specified cap style.
+ *
+ * @param graphics
+ * graphics context for image
+ * @param capStyle
+ * the decoration of the ends of a BasicStroke
+ */
+ public static void setStrokeZeroThick(Graphics2D graphics, int capStyle)
+ {
+ graphics.setStroke(new BasicStroke(0, capStyle, BasicStroke.JOIN_BEVEL));
+ }
+
+ /**
+ * Set 10 pixels wide stroke and specified cap style and join style.
+ *
+ * @param graphics
+ * graphics context for image
+ * @param capStyle
+ * the decoration of the ends of a BasicStroke
+ * @param joinStyle
+ * the decoration applied where path segments meet
+ */
+ public static void setStrokeZeroThick(Graphics2D graphics, int capStyle, int joinStyle)
+ {
+ graphics.setStroke(new BasicStroke(0, capStyle, joinStyle));
+ }
+
+ /**
* Set 10 pixels wide stroke and default cap and join style.
*
* @param graphics
diff -r fe1013f76915 -r f1181d8e0365 src/org/gfxtest/framework/GfxTest.java
--- a/src/org/gfxtest/framework/GfxTest.java Wed Dec 07 11:08:08 2011 +0100
+++ b/src/org/gfxtest/framework/GfxTest.java Thu Dec 08 11:57:09 2011 +0100
@@ -48,8 +48,17 @@
import java.lang.reflect.Method;
import org.gfxtest.common.ConfigurationException;
+import org.gfxtest.framework.annotations.TestType;
import org.gfxtest.framework.annotations.Zoom;
+
+
+/**
+ * Base class which should be extended by each test suite. Only methods which
+ * name begins with "test..." are run as test methods.
+ *
+ * @author Pavel Tisnovsky
+ */
public abstract class GfxTest
{
protected Log log = null;
@@ -92,6 +101,9 @@
*/
public static final int OFFSET = 80;
+ /**
+ * Step between two arc radiuses.
+ */
protected static final int ARC_STEP = 10;
/**
@@ -211,11 +223,13 @@
*/
private void runAllTests(GfxTestConfiguration configuration)
{
+ Class<? extends GfxTest> testClass = getClass();
this.log.logBegin("common tests"); //$NON-NLS-1$
- Method[] methods = getClass().getDeclaredMethods();
+ Method[] methods = testClass.getDeclaredMethods();
+ TestType testType = testClass.getAnnotation(TestType.class);
for (Method method : methods)
{
- tryToInvokeTestMethod(configuration, method);
+ tryToInvokeTestMethod(testType, configuration, method);
}
this.log.logEnd("common tests"); //$NON-NLS-1$
this.log.logBegin("other tests"); //$NON-NLS-1$
@@ -409,42 +423,70 @@
this.log.logSet("arc height", entityRenderingStyle.getArcHeight());
}
- private void tryToInvokeTestMethod(GfxTestConfiguration configuration, Method method)
+ private void tryToInvokeTestMethod(TestType testType, GfxTestConfiguration configuration, Method method)
{
String methodName = method.getName();
if (method.getName().startsWith("test")) //$NON-NLS-1$
{
this.log.logBegin(methodName);
- int zoom = getZoom();
- TestImage image = new TestImage(configuration, zoom);
- Graphics2D gc = image.getGraphics();
- TestResult result = null;
+ switch (testType.value())
+ {
+ case RENDER_TEST:
+ tryToRunRenderTest(configuration, method, methodName);
+ break;
+ case PRINT_TEST:
+ tryToRunPrintTest(configuration, method, methodName);
+ break;
+ }
+ }
+ }
+
+ /**
+ * @param configuration
+ * @param method
+ * @param methodName
+ */
+ private void tryToRunRenderTest(GfxTestConfiguration configuration, Method method, String methodName)
+ {
+ int zoom = getZoom();
+ TestImage image = new TestImage(configuration, zoom);
+ Graphics2D gc = image.getGraphics();
+ TestResult result = null;
+ try
+ {
+ result = (TestResult) method.invoke(this, new Object[] { image, gc });
+ }
+ catch (Exception e)
+ {
+ e.printStackTrace();
+ result = TestResult.ERROR;
+ }
+ finally
+ {
+ gc.dispose();
+ logTestResult(result);
try
{
- result = (TestResult) method.invoke(this, new Object[] { image, gc });
+ writeZoomedImage(configuration, image, methodName, zoom);
}
- catch (Exception e)
+ catch (IOException e)
{
e.printStackTrace();
- result = TestResult.ERROR;
}
- finally
- {
- gc.dispose();
- logTestResult(result);
- try
- {
- writeZoomedImage(configuration, image, methodName, zoom);
- }
- catch (IOException e)
- {
- e.printStackTrace();
- }
- this.log.logEnd(methodName);
- }
+ this.log.logEnd(methodName);
}
}
+ /**
+ * @param configuration
+ * @param method
+ * @param methodName
+ */
+ private void tryToRunPrintTest(GfxTestConfiguration configuration, Method method, String methodName)
+ {
+ // TODO
+ }
+
private void writeZoomedImage(GfxTestConfiguration configuration, TestImage sourceImage, String methodName, int zoom) throws IOException
{
if (zoom == 1)
@@ -497,6 +539,16 @@
}
/**
+ * Returns test type set by annotation.
+ *
+ * @return actual test type value
+ */
+ protected TestType getTestType()
+ {
+ return this.getClass().getAnnotation(TestType.class);
+ }
+
+ /**
* Write test result to log file.
*
* @param result status of the last invoked test
More information about the distro-pkg-dev
mailing list