/hg/gfx-test: * src/org/gfxtest/framework/PrintTest.java:

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri May 18 05:30:54 PDT 2012


changeset 4e7e5cbdb27a in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=4e7e5cbdb27a
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri May 18 14:33:30 2012 +0200

	* src/org/gfxtest/framework/PrintTest.java:
	* src/org/gfxtest/testsuites/PrintTestBasic.java:
	  Added new constant field, renamed other commond constant fields.
	* src/org/gfxtest/testsuites/PrintTestLines.java:
	  Refactored - print test now use anonymous class which implements
	  set of callback functions to make this test suite simpler.


diffstat:

 ChangeLog                                      |    9 +
 src/org/gfxtest/framework/PrintTest.java       |   20 +-
 src/org/gfxtest/testsuites/PrintTestBasic.java |    4 +-
 src/org/gfxtest/testsuites/PrintTestLines.java |  451 +++++++++++++++++-------
 4 files changed, 333 insertions(+), 151 deletions(-)

diffs (truncated from 668 to 500 lines):

diff -r a629c44369cf -r 4e7e5cbdb27a ChangeLog
--- a/ChangeLog	Thu May 17 14:43:44 2012 +0200
+++ b/ChangeLog	Fri May 18 14:33:30 2012 +0200
@@ -1,3 +1,12 @@
+2012-05-18  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/framework/PrintTest.java:
+	* src/org/gfxtest/testsuites/PrintTestBasic.java:
+	Added new constant field, renamed other commond constant fields.
+	* src/org/gfxtest/testsuites/PrintTestLines.java:
+	Refactored - print test now use anonymous class which implements
+	set of callback functions to make this test suite simpler.
+
 2012-05-17  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/ClippingPathByRoundRectangleShape.java:
diff -r a629c44369cf -r 4e7e5cbdb27a src/org/gfxtest/framework/PrintTest.java
--- a/src/org/gfxtest/framework/PrintTest.java	Thu May 17 14:43:44 2012 +0200
+++ b/src/org/gfxtest/framework/PrintTest.java	Fri May 18 14:33:30 2012 +0200
@@ -53,25 +53,35 @@
      * Maximum width of line rendered onto a paper.
      */
     protected static final float MAX_STROKE_WIDTH = 15.0f;
-    
+
+    /**
+     * Change of stroke width.
+     */
+    protected static final float STROKE_WIDTH_DELTA = 0.5f;
+
     /**
      * Border around the test picture.
      */
     protected static final int BORDER = 10;
-    
+
     /**
      * Offset between two circles.
      */
     protected static final int CIRCLE_RADIUS_STEP = 10;
-    
+
     /**
      * Horizontal distance between two lines.
      */
-    protected static final int HOR_STEP = 10;
+    protected static final int HORIZONTAL_STEP = 10;
 
     /**
      * Vertical distance between two lines.
      */
-    protected static final int VER_STEP = 10;
+    protected static final int VERTICAL_STEP = 10;
+
+    /**
+     * Diagonal distance between two lines.
+     */
+    protected static final int DIAGONAL_STEP = 16;
 
 }
diff -r a629c44369cf -r 4e7e5cbdb27a src/org/gfxtest/testsuites/PrintTestBasic.java
--- a/src/org/gfxtest/testsuites/PrintTestBasic.java	Thu May 17 14:43:44 2012 +0200
+++ b/src/org/gfxtest/testsuites/PrintTestBasic.java	Fri May 18 14:33:30 2012 +0200
@@ -138,7 +138,7 @@
         int x2 = width;
 
         // draw all lines onto a paper
-        for (int y = 0; y < height; y += VER_STEP)
+        for (int y = 0; y < height; y += VERTICAL_STEP)
         {
             graphics.drawLine(x1, y, x2, y);
             // compute new horizontal coordinates of line endpoints
@@ -173,7 +173,7 @@
         int y2 = height;
 
         // draw all lines onto a paper
-        for (int x = 0; x < width; x += HOR_STEP)
+        for (int x = 0; x < width; x += HORIZONTAL_STEP)
         {
             graphics.drawLine(x, y1, x, y2);
             // compute new vertical coordinates of line endpoints
diff -r a629c44369cf -r 4e7e5cbdb27a src/org/gfxtest/testsuites/PrintTestLines.java
--- a/src/org/gfxtest/testsuites/PrintTestLines.java	Thu May 17 14:43:44 2012 +0200
+++ b/src/org/gfxtest/testsuites/PrintTestLines.java	Fri May 18 14:33:30 2012 +0200
@@ -75,6 +75,125 @@
 @Zoom(1)
 public class PrintTestLines extends PrintTest
 {
+
+    /**
+     * Method which renders set of horizontal lines using various colors and
+     * stroke styles. For each line, the callback function/method is called to
+     * perform all required setup.
+     * 
+     * @param image
+     *            image to which lines are to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @param offset
+     *            between two near lines
+     * @param horizontalLineDrawCallbacks
+     *            class containing set of callback methods
+     */
+    private void drawHorizontalLines(TestImage image, Graphics2D graphics, int verticalStep, HorizontalLineDrawCallbacks horizontalLineDrawCallbacks)
+    {
+        // setup rendering
+        horizontalLineDrawCallbacks.setup(image, graphics);
+
+        // image width and height
+        final int width = image.getWidth();
+        final int height = image.getHeight();
+
+        // horizontal coordinates of line endpoints
+        final int x1 = BORDER;
+        final int x2 = width - BORDER;
+
+        // index to color palette
+        int colorIndex = 0;
+
+        // draw all lines onto a paper
+        for (int y = 0; y < height; y += verticalStep)
+        {
+            // setup can be made for each line
+            horizontalLineDrawCallbacks.iterationCallBack(y, colorIndex++);
+            // render the line
+            graphics.drawLine(x1, y, x2, y);
+        }
+        // cleanup rendering
+        horizontalLineDrawCallbacks.cleanup();
+    }
+
+    /**
+     * Method which renders set of vertical lines using various colors and
+     * stroke styles. For each line, the callback function/method is called to
+     * perform all required setup.
+     * 
+     * @param image
+     *            image to which lines are to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @param verticalLineDrawCallbacks
+     *            class containing set of callback methods
+     */
+    private void drawVerticalLines(TestImage image, Graphics2D graphics, VerticalLineDrawCallbacks verticalLineDrawCallbacks)
+    {
+    }
+
+    /**
+     * Method which renders set of diagonal lines using various colors and
+     * stroke styles. For each line, the callback function/method is called to
+     * perform all required setup.
+     * 
+     * @param image
+     *            image to which lines are to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @param diagonalLineDrawCallbacks
+     *            class containing set of callback methods
+     */
+    private void drawDiagonalLines(TestImage image, Graphics2D graphics, DiagonalLineDrawCallbacks diagonalLineDrawCallbacks)
+    {
+        // setup rendering
+        diagonalLineDrawCallbacks.setup(image, graphics);
+
+        // image width and height
+        final int width = image.getWidth();
+        final int height = image.getHeight();
+
+        // length of the "path"
+        final int length = width + height;
+
+        // coordinates of the first line
+        int x1 = BORDER;
+        int y1 = BORDER;
+        int x2 = BORDER;
+        int y2 = BORDER;
+
+        int index = 0;
+
+        // draw all lines onto a paper
+        for (int d = 0; d < length; d += DIAGONAL_STEP)
+        {
+            if (x1 < width - BORDER)
+            {
+                x1 += DIAGONAL_STEP;
+            }
+            else
+            {
+                y1 += DIAGONAL_STEP;
+            }
+            if (y2 < height - BORDER)
+            {
+                y2 += DIAGONAL_STEP;
+            }
+            else
+            {
+                x2 += DIAGONAL_STEP;
+            }
+            // setup can be made for each line
+            diagonalLineDrawCallbacks.iterationCallBack(length, index++);
+            // render the line
+            graphics.drawLine(x1, y1, x2, y2);
+        }
+        // cleanup rendering
+        diagonalLineDrawCallbacks.cleanup();
+    }
+
     /**
      * Test basic behavior of method Graphics.drawLine(). Horizontal lines are
      * rendered with default width and default end caps. Color of all rendered
@@ -88,23 +207,14 @@
      */
     public TestResult testDrawHorizontalLinesBasicStyle(TestImage image, Graphics2D graphics)
     {
-        // set drawing color
-        graphics.setColor(Color.BLACK);
-
-        // image width and height
-        final int width = image.getWidth();
-        final int height = image.getHeight();
-
-        // horizontal coordinates of line endpoints
-        final int x1 = BORDER;
-        final int x2 = width - BORDER;
-
-        // draw all lines onto a paper
-        for (int y = 0; y < height; y += VER_STEP)
+        drawHorizontalLines(image, graphics, VERTICAL_STEP, new HorizontalLineDrawCallbacks()
         {
-            // render the line
-            graphics.drawLine(x1, y, x2, y);
-        }
+            @Override
+            public void iterationCallBack(int y, int index)
+            {
+                return;
+            }
+        });
 
         // test return value
         return TestResult.PASSED;
@@ -123,28 +233,16 @@
      */
     public TestResult testDrawHorizontalLinesColorPalette(TestImage image, Graphics2D graphics)
     {
-        // set drawing color
-        graphics.setColor(Color.BLACK);
-
-        // image width and height
-        final int width = image.getWidth();
-        final int height = image.getHeight();
-
-        // horizontal coordinates of line endpoints
-        final int x1 = BORDER;
-        final int x2 = width - BORDER;
-
-        // index to color palette
-        int colorIndex = 0;
-
-        // draw all lines onto a paper
-        for (int y = 0; y < height; y += VER_STEP)
+        drawHorizontalLines(image, graphics, VERTICAL_STEP, new HorizontalLineDrawCallbacks()
         {
-            // set line color
-            graphics.setColor(ColorPalette.getColor(colorIndex++));
-            // render the line
-            graphics.drawLine(x1, y, x2, y);
-        }
+            @Override
+            public void iterationCallBack(int y, int index)
+            {
+                // set line color
+                this.graphics.setColor(ColorPalette.getColor(index));
+                return;
+            }
+        });
 
         // test return value
         return TestResult.PASSED;
@@ -163,26 +261,16 @@
      */
     public TestResult testDrawHorizontalLinesGrayScale(TestImage image, Graphics2D graphics)
     {
-        // set drawing color
-        graphics.setColor(Color.BLACK);
-
-        // image width and height
-        final int width = image.getWidth();
-        final int height = image.getHeight();
-
-        // horizontal coordinates of line endpoints
-        final int x1 = BORDER;
-        final int x2 = width - BORDER;
-
-        // draw all lines onto a paper
-        for (int y = 0; y < height; y += VER_STEP)
+        drawHorizontalLines(image, graphics, VERTICAL_STEP, new HorizontalLineDrawCallbacks()
         {
-            float gray = y * 1.0f / height;
-            // set line color
-            graphics.setColor(GrayscalePalette.createGrayscaleColor(gray));
-            // render the line
-            graphics.drawLine(x1, y, x2, y);
-        }
+            @Override
+            public void iterationCallBack(int y, int index)
+            {
+                float gray = y * 1.0f / this.image.getHeight();
+                // set line color
+                this.graphics.setColor(GrayscalePalette.createGrayscaleColor(gray));
+            }
+        });
 
         // test return value
         return TestResult.PASSED;
@@ -201,28 +289,20 @@
      */
     public TestResult testDrawHorizontalLinesChangeWidth(TestImage image, Graphics2D graphics)
     {
-        // set drawing color
-        graphics.setColor(Color.BLACK);
+        drawHorizontalLines(image, graphics, VERTICAL_STEP << 1, new HorizontalLineDrawCallbacks()
+        {
+            // stroke width
+            float strokeWidth = 0.0f;
 
-        // image width and height
-        final int width = image.getWidth();
-        final int height = image.getHeight();
-
-        // horizontal coordinates of line endpoints
-        final int x1 = BORDER;
-        final int x2 = width - BORDER;
-
-        // stroke width
-        float strokeWidth = 0.0f; 
-
-        // draw all lines onto a paper
-        for (int y = 0; y < height; y += VER_STEP * 2)
-        {
-            graphics.setStroke(new BasicStroke(strokeWidth));
-            strokeWidth = strokeWidth < MAX_STROKE_WIDTH ? strokeWidth + 0.5f : strokeWidth;
-            // render the line
-            graphics.drawLine(x1, y, x2, y);
-        }
+            @Override
+            public void iterationCallBack(int y, 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;
+            }
+        });
 
         // test return value
         return TestResult.PASSED;
@@ -231,6 +311,7 @@
     /**
      * Test basic behavior of method Graphics.drawLine().
      * Horizontal lines are rendered with various width and end caps set to CAP_BUTT.
+     * Join style is set bevel style.
      * Color of all rendered lines are set to black.
      *
      * @param image
@@ -239,28 +320,22 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testDrawHorizontalLinesChangeWidthCapButt(TestImage image, Graphics2D graphics)
+    public TestResult testDrawHorizontalLinesChangeWidthCapButtJoinBevel(TestImage image, Graphics2D graphics)
     {
-        // set drawing color
-        graphics.setColor(Color.BLACK);
+        drawHorizontalLines(image, graphics, VERTICAL_STEP << 1, new HorizontalLineDrawCallbacks()
+        {
+            // stroke width
+            float strokeWidth = 0.0f;
 
-        // image width and height
-        final int width = image.getWidth();
-        final int height = image.getHeight();
-
-        // horizontal coordinates of line endpoints
-        final int x1 = BORDER;
-        final int x2 = width - BORDER;
-        float strokeWidth = 0.0f; 
-
-        // draw all lines onto a paper
-        for (int y = 0; y < height; y += VER_STEP * 2)
-        {
-            graphics.setStroke(new BasicStroke(strokeWidth, BasicStroke.CAP_BUTT, BasicStroke.JOIN_BEVEL));
-            strokeWidth = strokeWidth < MAX_STROKE_WIDTH ? strokeWidth + 0.5f : strokeWidth;
-            // render the line
-            graphics.drawLine(x1, y, x2, y);
-        }
+            @Override
+            public void iterationCallBack(int y, int index)
+            {
+                // set stroke width
+                this.graphics.setStroke(new BasicStroke(this.strokeWidth, BasicStroke.CAP_BUTT, BasicStroke.JOIN_BEVEL));
+                // set new stroke width
+                this.strokeWidth = this.strokeWidth < MAX_STROKE_WIDTH ? this.strokeWidth + STROKE_WIDTH_DELTA : this.strokeWidth;
+            }
+        });
 
         // test return value
         return TestResult.PASSED;
@@ -277,28 +352,22 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testDrawHorizontalLinesChangeWidthCapRound(TestImage image, Graphics2D graphics)
+    public TestResult testDrawHorizontalLinesChangeWidthCapRoundJoinBevel(TestImage image, Graphics2D graphics)
     {
-        // set drawing color
-        graphics.setColor(Color.BLACK);
+        drawHorizontalLines(image, graphics, VERTICAL_STEP << 1, new HorizontalLineDrawCallbacks()
+        {
+            // stroke width
+            float strokeWidth = 0.0f;
 
-        // image width and height
-        final int width = image.getWidth();
-        final int height = image.getHeight();
-
-        // horizontal coordinates of line endpoints
-        final int x1 = BORDER;
-        final int x2 = width - BORDER;
-        float strokeWidth = 0.0f; 
-
-        // draw all lines onto a paper
-        for (int y = 0; y < height; y += VER_STEP * 2)
-        {
-            graphics.setStroke(new BasicStroke(strokeWidth, BasicStroke.CAP_ROUND, BasicStroke.JOIN_BEVEL));
-            strokeWidth = strokeWidth < MAX_STROKE_WIDTH ? strokeWidth + 0.5f : strokeWidth;
-            // render the line
-            graphics.drawLine(x1, y, x2, y);
-        }
+            @Override
+            public void iterationCallBack(int y, int index)
+            {
+                // set stroke width
+                this.graphics.setStroke(new BasicStroke(this.strokeWidth, BasicStroke.CAP_ROUND, BasicStroke.JOIN_BEVEL));
+                // set new stroke width
+                this.strokeWidth = this.strokeWidth < MAX_STROKE_WIDTH ? this.strokeWidth + STROKE_WIDTH_DELTA : this.strokeWidth;
+            }
+        });
 
         // test return value
         return TestResult.PASSED;
@@ -315,28 +384,22 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testDrawHorizontalLinesChangeWidthCapSquare(TestImage image, Graphics2D graphics)
+    public TestResult testDrawHorizontalLinesChangeWidthCapSquareJoinBevel(TestImage image, Graphics2D graphics)
     {
-        // set drawing color
-        graphics.setColor(Color.BLACK);
+        drawHorizontalLines(image, graphics, VERTICAL_STEP << 1, new HorizontalLineDrawCallbacks()
+        {
+            // stroke width
+            float strokeWidth = 0.0f;
 
-        // image width and height
-        final int width = image.getWidth();
-        final int height = image.getHeight();
-
-        // horizontal coordinates of line endpoints
-        final int x1 = BORDER;
-        final int x2 = width - BORDER;
-        float strokeWidth = 0.0f; 
-
-        // draw all lines onto a paper
-        for (int y = 0; y < height; y += VER_STEP * 2)
-        {
-            graphics.setStroke(new BasicStroke(strokeWidth, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_BEVEL));
-            strokeWidth = strokeWidth < MAX_STROKE_WIDTH ? strokeWidth + 0.5f : strokeWidth;
-            // render the line
-            graphics.drawLine(x1, y, x2, y);
-        }
+            @Override
+            public void iterationCallBack(int y, int index)
+            {
+                // set stroke width
+                this.graphics.setStroke(new BasicStroke(this.strokeWidth, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_BEVEL));
+                // set new stroke width
+                this.strokeWidth = this.strokeWidth < MAX_STROKE_WIDTH ? this.strokeWidth + STROKE_WIDTH_DELTA : this.strokeWidth;
+            }
+        });
 
         // test return value
         return TestResult.PASSED;
@@ -367,7 +430,7 @@
         final int y2 = height - BORDER;
 
         // draw all lines onto a paper
-        for (int x = 0; x < width; x += HOR_STEP)
+        for (int x = 0; x < width; x += HORIZONTAL_STEP)



More information about the distro-pkg-dev mailing list