/hg/gfx-test: Added tests for special cases - multiple control p...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Aug 3 09:05:19 PDT 2011


changeset 41fa7137721d in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=41fa7137721d
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Aug 03 18:07:00 2011 +0200

	Added tests for special cases - multiple control points.


diffstat:

 ChangeLog                                             |    5 +
 diff.diff                                             |  318 ------------------
 src/org/gfxtest/testsuites/NormalQuadraticCurves.java |  104 +++++
 3 files changed, 109 insertions(+), 318 deletions(-)

diffs (451 lines):

diff -r e7894806a147 -r 41fa7137721d ChangeLog
--- a/ChangeLog	Wed Aug 03 15:44:44 2011 +0200
+++ b/ChangeLog	Wed Aug 03 18:07:00 2011 +0200
@@ -1,3 +1,8 @@
+2011-08-03  Pavel Tisnovsky  <ptisnovs at redhat.com>
+	* diff.diff: removed as it's just a garbage.
+	* src/org/gfxtest/testsuites/NormalQuadraticCurves.java:
+	Added tests for special cases - multiple control points.
+
 2011-08-03  Pavel Tisnovsky  <ptisnovs at redhat.com>
 	* src/org/gfxtest/testsuites/ColorPalette.java: added new method
 	* src/org/gfxtest/testsuites/NormalQuadraticCurves.java:
diff -r e7894806a147 -r 41fa7137721d diff.diff
--- a/diff.diff	Wed Aug 03 15:44:44 2011 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,321 +0,0 @@
-diff -r e2ffa5184756 Makefile
---- a/Makefile	Wed Jul 27 15:38:53 2011 +0200
-+++ b/Makefile	Wed Jul 27 17:15:32 2011 +0200
-@@ -42,6 +42,7 @@
- SAMPLES=samples
- RESULTS=results
- TEST_BUILD=test-build
-+DOCS=docs
- 
- COMMON_DIR=org/gfxtest/common
- FRAMEWORK_DIR=org/gfxtest/framework
-@@ -210,6 +211,9 @@
- 
- runtests:	gfxtest.jar $(TESTSUITES)
- 
-+doc:
-+	javadoc -sourcepath src -d $(DOCS) org.gfxtest.ImageDiffer org.gfxtest.common org.gfxtest.framework org.gfxtest.harness org.gfxtest.reporter org.gfxtest.testsuites
-+
- # multiple targets - one for each test suite
- $(TESTSUITES):	gfxtest.jar
- 	mkdir -p $(OUTPUT)/$@
-@@ -238,7 +242,7 @@
- harness:	gfxtest.jar
- 	java -cp gfxtest.jar org.gfxtest.harness.MainWindow
- 
--cleanall:	clean clean-output clean-results clean-samples clean-test-build
-+cleanall:	clean clean-output clean-results clean-samples clean-test-build clean-doc
- 
- clean-all:	cleanall
- 
-@@ -260,3 +264,5 @@
- clean-samples:
- 	rm -rf $(SAMPLES)
- 
-+clean-doc:
-+	rm -rf $(DOCS)
-diff -r e2ffa5184756 src/org/gfxtest/framework/GfxTest.java
---- a/src/org/gfxtest/framework/GfxTest.java	Wed Jul 27 15:38:53 2011 +0200
-+++ b/src/org/gfxtest/framework/GfxTest.java	Wed Jul 27 17:15:32 2011 +0200
-@@ -219,11 +219,18 @@
-     {
-         // to be overrided by test cases
-     }
--
-+    
-     /**
-      * Method which can be overridden by inherited classes.
--     *
--     * @param configuration configuration of current test case.
-+     * 
-+     * @param image
-+     *            image representing drawing destination
-+     * @param graphics
-+     *            graphics canvas derived from image object
-+     * @param testNumber
-+     *            test number
-+     * @param entityRenderingStyle
-+     *            object containing entity rendering style
-      */
-     protected void drawEntity(TestImage image, Graphics2D graphics, int testNumber, EntityRenderingStyle entityRenderingStyle)
-     {
-diff -r e2ffa5184756 src/org/gfxtest/framework/TestImage.java
---- a/src/org/gfxtest/framework/TestImage.java	Wed Jul 27 15:38:53 2011 +0200
-+++ b/src/org/gfxtest/framework/TestImage.java	Wed Jul 27 17:15:32 2011 +0200
-@@ -48,12 +48,47 @@
- 
- import javax.imageio.ImageIO;
- 
-+
-+
-+/**
-+ * Class representing raster image on which shapes are rendered.
-+ * 
-+ * @author Pavel Tisnovsky
-+ */
- public class TestImage
- {
-+    /**
-+     * Simple logger object.
-+     */
-     private Log log = null;
-+
-+    /**
-+     * Size of grid used to draw image background.
-+     */
-     private static final int GRID_SIZE = 20;
-+
-+    /**
-+     * Object representing the raster canvas.
-+     */
-     private BufferedImage image = null;
- 
-+    /**
-+     * Implicit constructor should be disabled for this object type.
-+     */
-+    @SuppressWarnings("unused")
-+    private TestImage()
-+    {
-+        // empty as expected :-)
-+    }
-+
-+    /**
-+     * Initialization of TestImage object.
-+     * 
-+     * @param configuration
-+     *            configuration of current test suite
-+     * @param zoom
-+     *            zoom factor
-+     */
-     public TestImage(GfxTestConfiguration configuration, int zoom)
-     {
-         this.log = new Log(this.getClass().getName(), false);
-@@ -62,9 +97,11 @@
- 
-     /**
-      * Create new buffered image with given width, height and image type.
--     * @param configuration configuration of current test suite
--     * @param zoom zoom factor
--     * @return
-+     * 
-+     * @param configuration
-+     *            configuration of current test suite
-+     * @param zoom
-+     *            zoom factor
-      */
-     public void createImage(GfxTestConfiguration configuration, int zoom)
-     {
-@@ -77,11 +114,21 @@
-         }
-     }
- 
-+    /**
-+     * Clear the background of the test image ie. fill the whole image with
-+     * white color.
-+     */
-     protected void clearImage()
-     {
-         fillImage(Color.WHITE);
-     }
- 
-+    /**
-+     * Fill whole image using given color.
-+     * 
-+     * @param color
-+     *            color used to fill whole image.
-+     */
-     public void fillImage(Color color)
-     {
-         Graphics2D graphics = this.image.createGraphics();
-@@ -90,6 +137,16 @@
-         graphics.dispose();
-     }
- 
-+    /**
-+     * Read raster image from external file.
-+     * 
-+     * @param directory
-+     *            directory containing the image
-+     * @param fileName
-+     *            raster image file name
-+     * @return image read from external file
-+     * @throws IOException
-+     */
-     @SuppressWarnings("nls")
-     protected BufferedImage readImage(File directory, String fileName) throws IOException
-     {
-@@ -98,6 +155,15 @@
-         return ImageIO.read(imageFile);
-     }
- 
-+    /**
-+     * Write raster image to an external file.
-+     * 
-+     * @param directory
-+     *            directory containing the image
-+     * @param fileName
-+     *            raster image file name
-+     * @throws IOException
-+     */
-     @SuppressWarnings("nls")
-     private void writeImage(File directory, String fileName) throws IOException
-     {
-@@ -107,30 +173,38 @@
- 
-     /**
-      * Write given buffered image to PNG file.
--     *
--     * @param image
-+     * 
-      * @param configuration
-+     *            current configuration of GfxTest framework
-+     * @param suiteName
-+     *            name of test suite
-      * @param testName
-+     *            name of test from the given test suite
-      * @throws IOException
-+     *             can occurs during PNG file creation
-      */
-     @SuppressWarnings("nls")
-     public void writeImage(GfxTestConfiguration configuration, String suiteName, String testName) throws IOException
-     {
-         this.writeImage(configuration.getOutputPath(), suiteName + "_" + testName + ".png");
-     }
--
-+    
-     /**
-      * This method draws grid below the test (rendered) pattern.
--     * @param image reference to the image created by test case
-+     * 
-+     * @param image
-+     *            reference to the image created by test case
-      */
-     private void drawGrid()
-     {
-         Graphics2D graphics = this.image.createGraphics();
-         graphics.setColor(new Color(0xa0, 0xa0, 0xff));
-+        // draw vertical lines
-         for (int x = 0; x < this.image.getWidth(); x += GRID_SIZE)
-         {
-             graphics.drawLine(x, 0, x, this.image.getHeight() - 1);
-         }
-+        // draw horizontal lines
-         for (int y = 0; y < this.image.getHeight(); y += GRID_SIZE)
-         {
-             graphics.drawLine(0, y, this.image.getWidth() - 1, y);
-@@ -138,43 +212,92 @@
-         graphics.dispose();
-     }
- 
-+    /**
-+     * Returns graphics2d object for this instance of test image.
-+     * 
-+     * @return graphics2d object for this instance of test image.
-+     */
-     public Graphics2D getGraphics()
-     {
--        Graphics2D g2d = (Graphics2D) this.image.getGraphics();
--        g2d.setRenderingHint(java.awt.RenderingHints.KEY_STROKE_CONTROL, java.awt.RenderingHints.VALUE_STROKE_PURE);
--        return g2d;
-+        Graphics2D graphics2d = (Graphics2D) this.image.getGraphics();
-+        graphics2d.setRenderingHint(java.awt.RenderingHints.KEY_STROKE_CONTROL, java.awt.RenderingHints.VALUE_STROKE_PURE);
-+        return graphics2d;
-     }
- 
-+    /**
-+     * Return width of the test image.
-+     * 
-+     * @return width of the test image.
-+     */
-     public int getWidth()
-     {
-         return this.image.getWidth();
-     }
- 
-+    /**
-+     * Return height of the test image.
-+     * 
-+     * @return height of the test image.
-+     */
-     public int getHeight()
-     {
-         return this.image.getHeight();
-     }
- 
-+    /**
-+     * Return x-coordinate of the center of the test image.
-+     * 
-+     * @return x-coordinate of the center of the test image.
-+     */
-     public int getCenterX()
-     {
-         return this.getWidth() >> 1;
-     }
- 
-+    /**
-+     * Return y-coordinate of the center of the test image.
-+     * 
-+     * @return y-coordinate of the center of the test image.
-+     */
-     public int getCenterY()
-     {
-         return this.getHeight() >> 1;
-     }
- 
-+    /**
-+     * Return pixel color at given coordinates.
-+     * 
-+     * @param x
-+     *            the x coordinate of the pixel from which to get the color
-+     * @param y
-+     *            the y coordinate of the pixel from which to get the color
-+     * @return color in the default sRGB color space
-+     */
-     public int getRGB(int x, int y)
-     {
-         return this.image.getRGB(x, y);
-     }
- 
-+    /**
-+     * Set color of pixel at given coordinates.
-+     * 
-+     * @param x
-+     *            the x coordinate of the pixel to set the color
-+     * @param y
-+     *            the y coordinate of the pixel to set the color
-+     * @param rgb
-+     *            color in the default sRGB color space
-+     */
-     public void setRGB(int x, int y, int rgb)
-     {
-         this.image.setRGB(x, y, rgb);
-     }
- 
-+    /**
-+     * Get the raster image on which this project is based.
-+     * 
-+     * @return raster image
-+     */
-     public BufferedImage getImage()
-     {
-         return this.image;
diff -r e7894806a147 -r 41fa7137721d src/org/gfxtest/testsuites/NormalQuadraticCurves.java
--- a/src/org/gfxtest/testsuites/NormalQuadraticCurves.java	Wed Aug 03 15:44:44 2011 +0200
+++ b/src/org/gfxtest/testsuites/NormalQuadraticCurves.java	Wed Aug 03 18:07:00 2011 +0200
@@ -436,6 +436,110 @@
     }
 
     /**
+     * Test special test case - quadratic curve with identical first point and
+     * second point. To be precise: first point is curve end point, second point
+     * is control point which defines the curvature.
+     * 
+     * @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 testIdenticalPoints12(TestImage image, Graphics2D graphics)
+    {
+        int width = image.getWidth();
+        int centerY = image.getCenterY();
+
+        // set 10 pixels wide stroke
+        graphics.setStroke(new BasicStroke(STROKE_WIDTH_THICK, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_BEVEL));
+
+        // set curve color
+        graphics.setColor(Color.BLACK);
+
+        // create new QuadCurve2D.Float
+        QuadCurve2D quadCurve = new QuadCurve2D.Float();
+
+        // construct QuadCurve2D.Float with set coordinates
+        quadCurve.setCurve(computeX1(width), centerY, computeX1(width), centerY, computeX3(width), centerY);
+
+        // draw QuadCurve2D
+        graphics.draw(quadCurve);
+
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test special test case - quadratic curve with identical second point and
+     * third point. To be precise: third point is curve end point, second point
+     * is control point which defines the curvature.
+     * 
+     * @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 testIdenticalPoints23(TestImage image, Graphics2D graphics)
+    {
+        int width = image.getWidth();
+        int centerY = image.getCenterY();
+
+        // set 10 pixels wide stroke
+        graphics.setStroke(new BasicStroke(STROKE_WIDTH_THICK, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_BEVEL));
+
+        // set curve color
+        graphics.setColor(Color.BLACK);
+
+        // create new QuadCurve2D.Float
+        QuadCurve2D quadCurve = new QuadCurve2D.Float();
+
+        // construct QuadCurve2D.Float with set coordinates
+        quadCurve.setCurve(computeX1(width), centerY, computeX3(width), centerY, computeX3(width), centerY);
+
+        // draw QuadCurve2D
+        graphics.draw(quadCurve);
+
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test special test case - quadratic curve with identical first point and
+     * third point.
+     *
+     * @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 testIdenticalPoints13(TestImage image, Graphics2D graphics)
+    {
+        int width = image.getWidth();
+        int centerY = image.getCenterY();
+
+        // set 10 pixels wide stroke
+        graphics.setStroke(new BasicStroke(STROKE_WIDTH_THICK, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_BEVEL));
+
+        // set curve color
+        graphics.setColor(Color.BLACK);
+
+        // create new QuadCurve2D.Float
+        QuadCurve2D quadCurve = new QuadCurve2D.Float();
+
+        // construct QuadCurve2D.Float with set coordinates
+        quadCurve.setCurve(computeX1(width), centerY, computeX3(width), centerY, computeX1(width), centerY);
+
+        // draw QuadCurve2D
+        graphics.draw(quadCurve);
+
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
      * Compute X coordinate of first curve end point.
      * 
      * @param width



More information about the distro-pkg-dev mailing list