/hg/gfx-test: * src/org/gfxtest/testsuites/SpecialCases.java:
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Sep 2 01:38:01 PDT 2011
changeset 6c985b5ee97e in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=6c985b5ee97e
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Sep 02 10:39:52 2011 +0200
* src/org/gfxtest/testsuites/SpecialCases.java: Added 6 new test
cases, added JavaDoc to existing test cases.
diffstat:
ChangeLog | 4 +
src/org/gfxtest/testsuites/SpecialCases.java | 406 ++++++++++++++++++++------
2 files changed, 318 insertions(+), 92 deletions(-)
diffs (467 lines):
diff -r a70769863697 -r 6c985b5ee97e ChangeLog
--- a/ChangeLog Fri Aug 19 16:06:59 2011 +0200
+++ b/ChangeLog Fri Sep 02 10:39:52 2011 +0200
@@ -1,3 +1,7 @@
+2011-09-02 Pavel Tisnovsky <ptisnovs at redhat.com>
+ * src/org/gfxtest/testsuites/SpecialCases.java:
+ Added 6 new test cases, added JavaDoc to existing test cases.
+
2011-08-19 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/framework/CommonRenderingStyles.java:
Added methods supporting rendering shapes filled by radial gradient
diff -r a70769863697 -r 6c985b5ee97e src/org/gfxtest/testsuites/SpecialCases.java
--- a/src/org/gfxtest/testsuites/SpecialCases.java Fri Aug 19 16:06:59 2011 +0200
+++ b/src/org/gfxtest/testsuites/SpecialCases.java Fri Sep 02 10:39:52 2011 +0200
@@ -46,14 +46,16 @@
import org.gfxtest.framework.*;
import org.gfxtest.framework.annotations.*;
+
+
/**
* This test renders various special cases, such as curves with cusps, curves
* with identical control points, curves with width such that the offset curves
* have cusps, curves with very high curvatures, paths such as moveTo(0, 0);
- * p.lineTo(100,100);p.lineTo(100,100); (we test this last one to make sure
- * that the join is drawn even though the lines are at an angle of 180 degrees.
- * For each path, we draw it, and we also draw its stroked version.
- *
+ * p.lineTo(100,100);p.lineTo(100,100); (we test this last one to make sure that
+ * the join is drawn even though the lines are at an angle of 180 degrees. For
+ * each path, we draw it, and we also draw its stroked version.
+ *
* @author Pavel Tisnovsky
* @author Denis Lila
*/
@@ -63,123 +65,343 @@
@Zoom(1)
public class SpecialCases extends GfxTest
{
- private void drawPath(Path2D p, float pw, Graphics2D g, int w) {
- BasicStroke s = new BasicStroke(pw, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_ROUND);
- g.setColor(java.awt.Color.black);
- Shape shape = s.createStrokedShape(p);
- g.draw(shape);
- g.translate(w, 0);
- Stroke orig = g.getStroke();
- g.setStroke(s);
- g.draw(p);
- g.setStroke(orig);
- g.translate(-w, 0);
+ /**
+ * Draw path onto the specified graphics context. Path is drawn as the path
+ * itself and also as outline.
+ *
+ * @param path
+ * path to be drawn
+ * @param pw
+ * width of the path
+ * @param graphics
+ * graphics context for image
+ * @param width
+ * width of the canvas
+ */
+ private void drawPath(Path2D path, float pw, Graphics2D graphics, int width)
+ {
+ BasicStroke basicStroke = new BasicStroke(pw, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_ROUND);
+ graphics.setColor(java.awt.Color.black);
+ Shape shape = basicStroke.createStrokedShape(path);
+ graphics.draw(shape);
+ graphics.translate(width, 0);
+ Stroke orig = graphics.getStroke();
+ graphics.setStroke(basicStroke);
+ graphics.draw(path);
+ graphics.setStroke(orig);
+ graphics.translate(-width, 0);
}
+ /**
+ * Test drawing of line segments with identical vertexes.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testIdenticalVertexesV(TestImage image, Graphics2D graphics)
+ {
+ int width = image.getWidth() / 2;
+ int height = image.getHeight();
+ int size = Math.min(width, height);
+ Path2D path = new Path2D.Double();
+ for (double d = 0.1; d < 1.0; d += 0.2)
+ {
+ path.moveTo(d * size, 0.1 * size);
+ path.lineTo(d * size, d * size);
+ }
+ drawPath(path, 0.15f * size, graphics, width);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test drawing of line segments with identical vertexes.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testIdenticalVertexesH(TestImage image, Graphics2D graphics)
+ {
+ int width = image.getWidth() / 2;
+ int height = image.getHeight();
+ int size = Math.min(width, height);
+ Path2D path = new Path2D.Double();
+ for (double d = 0.1; d < 1.0; d += 0.2)
+ {
+ path.moveTo(0.1 * size, d * size);
+ path.lineTo(d * size, d * size);
+ }
+ drawPath(path, 0.15f * size, graphics, width);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test drawing of Bezier cubic curves with identical control points.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
public TestResult testIdenticalCtrlCub(TestImage image, Graphics2D graphics)
{
- int w = image.getWidth()/2;
- int h = image.getHeight();
- int s = Math.min(w, h);
- Path2D p = new Path2D.Double();
- p.moveTo(0, 0);
+ int width = image.getWidth() / 2;
+ int height = image.getHeight();
+ int size = Math.min(width, height);
+ Path2D path = new Path2D.Double();
+ path.moveTo(0, 0);
// identical first 2 points
- p.curveTo(0, 0, 0.1*s, 0.2*s, 0.2*s, 0.2*s);
+ path.curveTo(0, 0, 0.1 * size, 0.2 * size, 0.2 * size, 0.2 * size);
// identical 2nd and 3rd points
- p.curveTo(0.35*s, 0.8*s, 0.35*s, 0.8*s, 0.45*s, 0.1*s);
+ path.curveTo(0.35 * size, 0.8 * size, 0.35 * size, 0.8 * size, 0.45 * size, 0.1 * size);
// identical 3rd and 4th points.
- p.curveTo(0.60*s, 0.1*s, 0.60*s, 0.70*s, 0.60*s, 0.70*s);
+ path.curveTo(0.60 * size, 0.1 * size, 0.60 * size, 0.70 * size, 0.60 * size, 0.70 * size);
// identical first 3 points
- p.curveTo(0.6*s, 0.7*s, 0.6*s, 0.7*s, 0.5*s, 0.8*s);
+ path.curveTo(0.6 * size, 0.7 * size, 0.6 * size, 0.7 * size, 0.5 * size, 0.8 * size);
// identical last 3 points
- p.curveTo(0.3*s, 0.8*s, 0.3*s, 0.8*s, 0.3*s, 0.8*s);
+ path.curveTo(0.3 * size, 0.8 * size, 0.3 * size, 0.8 * size, 0.3 * size, 0.8 * size);
// all points identical
- p.moveTo(0.1*s, 0.8*s);p.curveTo(0.1*s, 0.8*s, 0.1*s, 0.8*s, 0.1*s, 0.8*s);
- drawPath(p, 0.15f*s, graphics, w);
+ path.moveTo(0.1 * size, 0.8 * size);
+ path.curveTo(0.1 * size, 0.8 * size, 0.1 * size, 0.8 * size, 0.1 * size, 0.8 * size);
+ drawPath(path, 0.15f * size, graphics, width);
return TestResult.PASSED;
}
+
+ /**
+ * Test drawing of Bezier quadratic curves with identical control points.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
public TestResult testIdenticalCtrlQuad(TestImage image, Graphics2D graphics)
{
- int w = image.getWidth()/2;
- int h = image.getHeight();
- int s = Math.min(w, h);
- Path2D p = new Path2D.Double();
- p.moveTo(0, 0);
+ int width = image.getWidth() / 2;
+ int height = image.getHeight();
+ int size = Math.min(width, height);
+ Path2D path = new Path2D.Double();
+ path.moveTo(0, 0);
// identical first 2 points
- p.quadTo(0, 0, 0.1*s, 0.2*s);
+ path.quadTo(0, 0, 0.1 * size, 0.2 * size);
// identical 2nd and 3rd points
- p.quadTo(0.7*s, 0.6*s, 0.7*s, 0.6*s);
+ path.quadTo(0.7 * size, 0.6 * size, 0.7 * size, 0.6 * size);
// no identical points. We just want to see what a quad looks like.
- p.quadTo(1.0*s, 0.7*s, 0.1*s, 0.8*s);
+ path.quadTo(1.0 * size, 0.7 * size, 0.1 * size, 0.8 * size);
// all points identical
- p.moveTo(0.7*s, 0.3*s);p.quadTo(0.7*s, 0.3*s, 0.7*s, 0.3*s);
- drawPath(p, 0.2f*s, graphics, w);
+ path.moveTo(0.7 * size, 0.3 * size);
+ path.quadTo(0.7 * size, 0.3 * size, 0.7 * size, 0.3 * size);
+ drawPath(path, 0.2f * size, graphics, width);
return TestResult.PASSED;
}
- public TestResult test180Turn(TestImage im, Graphics2D g) {
- int w = im.getWidth()/2;
- int h = im.getHeight();
- int s = Math.min(w, h);
+
+ /**
+ * Test drawing of a path constructed from two line segments which have the
+ * same vertexes.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult test180Turn(TestImage image, Graphics2D graphics)
+ {
+ int width = image.getWidth() / 2;
+ int height = image.getHeight();
+ int size = Math.min(width, height);
int numlines = 6;
- double cx = 0.5*s, cy = 0.5 * s;
- for (int i = 0; i < numlines; i++) {
- double dx = 0.4*s * Math.cos((i * 2 * Math.PI) / numlines);
- double dy = 0.4*s * Math.sin((i * 2 * Math.PI) / numlines);
- Path2D p = new Path2D.Double();
- p.moveTo(cx, cy);
- p.lineTo(cx + dx, cy + dy);
- p.lineTo(cx, cy);
- drawPath(p, (float)Math.pow(0.05*s*(i+1), 0.8), g, w);
+ double cx = 0.5 * size, cy = 0.5 * size;
+ for (int i = 0; i < numlines; i++)
+ {
+ double dx = 0.4 * size * Math.cos((i * 2 * Math.PI) / numlines);
+ double dy = 0.4 * size * Math.sin((i * 2 * Math.PI) / numlines);
+ Path2D path = new Path2D.Double();
+ path.moveTo(cx, cy);
+ path.lineTo(cx + dx, cy + dy);
+ path.lineTo(cx, cy);
+ drawPath(path, (float) Math.pow(0.05 * size * (i + 1), 0.8), graphics, width);
}
return TestResult.PASSED;
}
- public TestResult testClose(TestImage im, Graphics2D g) {
- int w = im.getWidth()/2;
- int h = im.getHeight();
- int s = Math.min(w, h);
- Path2D p = new Path2D.Double();
- p.moveTo(0.1*s, 0.1*s);
- p.lineTo(0.8*s, 0.4*s);
- p.quadTo(0.55*s, 1.0*s, 0.6*s, 0.5*s);
- p.curveTo(0.1*s, 0.3*s, 0.0*s, 0.9*s, 0.65*s, 0.9*s);
- p.closePath();
- drawPath(p, 0.1f*s, g, w);
- return TestResult.PASSED;
- }
- public TestResult testSharpTurn1(TestImage im, Graphics2D g) {
- int w = im.getWidth()/2;
- int h = im.getHeight();
- int s = Math.min(w, h);
- Path2D p = new Path2D.Double();
- p.moveTo(0, 0);
- p.curveTo(s, s, 0.4*s, 0.6*s, 0.1*s, -0.36*s);
- drawPath(p, 0.25f*s, g, w);
- return TestResult.PASSED;
- }
- public TestResult testSharpTurn2(TestImage im, Graphics2D g) {
- int w = im.getWidth()/2;
- int h = im.getHeight();
- int s = Math.min(w, h);
- Path2D p = new Path2D.Double();
- p.moveTo(0, 0);
- p.curveTo(s, s, 0.4*s, 0.6*s, 0.1*s, -0.375*s);
- drawPath(p, 0.25f*s, g, w);
- return TestResult.PASSED;
- }
- public TestResult testCusp(TestImage im, Graphics2D g) {
- int w = im.getWidth()/2;
- int h = im.getHeight();
- int s = Math.min(w, h);
- Path2D p = new Path2D.Double();
- p.moveTo(0.1*s, 0.1*s);
- p.curveTo(0.9*s, 0.9*s, 0.1*s, 0.9*s, 0.9*s, 0.1*s);
- drawPath(p, 0.45f*s, g, w);
+
+ /**
+ * Test drawing closed path constructed from line segments.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testCloseLineSegments(TestImage image, Graphics2D graphics)
+ {
+ int width = image.getWidth() / 2;
+ int height = image.getHeight();
+ int size = Math.min(width, height);
+ Path2D path = new Path2D.Double();
+ path.moveTo(0.1 * size, 0.1 * size);
+ path.lineTo(0.8 * size, 0.4 * size);
+ path.lineTo(0.55 * size, 1.0 * size);
+ path.lineTo(0.6 * size, 0.5 * size);
+ path.lineTo(0.1 * size, 0.3 * size);
+ path.lineTo(0.0 * size, 0.9 * size);
+ path.lineTo(0.65 * size, 0.9 * size);
+ path.closePath();
+ drawPath(path, 0.1f * size, graphics, width);
return TestResult.PASSED;
}
+ /**
+ * Test drawing closed path constructed from quadratic Bezier curve segments.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testCloseQuadSegments(TestImage image, Graphics2D graphics)
+ {
+ int width = image.getWidth() / 2;
+ int height = image.getHeight();
+ int size = Math.min(width, height);
+ Path2D path = new Path2D.Double();
+ path.moveTo(0.1 * size, 0.1 * size);
+ path.quadTo(0.8 * size, 0.4 * size, 0.55 * size, 1.0 * size);
+ path.quadTo(0.6 * size, 0.5 * size, 0.1 * size, 0.3 * size);
+ path.quadTo(0.0 * size, 0.9 * size, 0.65 * size, 0.9 * size);
+ path.closePath();
+ drawPath(path, 0.1f * size, graphics, width);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test drawing closed path constructed from cubic Bezier curve segments.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testCloseCubicSegments(TestImage image, Graphics2D graphics)
+ {
+ int width = image.getWidth() / 2;
+ int height = image.getHeight();
+ int size = Math.min(width, height);
+ Path2D path = new Path2D.Double();
+ path.moveTo(0.1 * size, 0.1 * size);
+ path.curveTo(0.8 * size, 0.4 * size, 0.8 * size, 0.9 * size, 0.55 * size, 1.0 * size);
+ path.curveTo(0.6 * size, 0.5 * size, 0.65 * size, 0.9 * size, 0.1 * size, 0.3 * size);
+ path.curveTo(0.0 * size, 0.9 * size, 0.65 * size, 0.9 * size, 0.55 * size, 1.0 * size);
+ path.closePath();
+ drawPath(path, 0.1f * size, graphics, width);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test drawing closed path constructed from line segments, quadratic curves
+ * and cubic curves.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testCloseAllCombinations(TestImage image, Graphics2D graphics)
+ {
+ int width = image.getWidth() / 2;
+ int height = image.getHeight();
+ int size = Math.min(width, height);
+ Path2D path = new Path2D.Double();
+ path.moveTo(0.1 * size, 0.1 * size);
+ path.lineTo(0.8 * size, 0.4 * size);
+ path.quadTo(0.55 * size, 1.0 * size, 0.6 * size, 0.5 * size);
+ path.curveTo(0.1 * size, 0.3 * size, 0.0 * size, 0.9 * size, 0.65 * size, 0.9 * size);
+ path.closePath();
+ drawPath(path, 0.1f * size, graphics, width);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if sharp turn is rendered correctly.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testSharpTurn1(TestImage image, Graphics2D graphics)
+ {
+ int width = image.getWidth() / 2;
+ int height = image.getHeight();
+ int size = Math.min(width, height);
+ Path2D path = new Path2D.Double();
+ path.moveTo(0, 0);
+ path.curveTo(size, size, 0.4 * size, 0.6 * size, 0.1 * size, -0.36 * size);
+ drawPath(path, 0.25f * size, graphics, width);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if sharp turn is rendered correctly.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testSharpTurn2(TestImage image, Graphics2D graphics)
+ {
+ int width = image.getWidth() / 2;
+ int height = image.getHeight();
+ int size = Math.min(width, height);
+ Path2D path = new Path2D.Double();
+ path.moveTo(0, 0);
+ path.curveTo(size, size, 0.4 * size, 0.6 * size, 0.1 * size, -0.375 * size);
+ drawPath(path, 0.25f * size, graphics, width);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if curve's cusp is rendered correctly.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testCusp(TestImage image, Graphics2D graphics)
+ {
+ int width = image.getWidth() / 2;
+ int height = image.getHeight();
+ int size = Math.min(width, height);
+ Path2D path = new Path2D.Double();
+ path.moveTo(0.1 * size, 0.1 * size);
+ path.curveTo(0.9 * size, 0.9 * size, 0.1 * size, 0.9 * size, 0.9 * size, 0.1 * size);
+ drawPath(path, 0.45f * size, graphics, width);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Entry point to the test suite.
+ *
+ * @param args not used in this case
+ */
public static void main(String[] args)
{
new SpecialCases().runTestSuite(args);
}
}
-
More information about the distro-pkg-dev
mailing list