/hg/gfx-test: * src/org/gfxtest/testsuites/PrintTestLines.java:

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed May 9 02:09:03 PDT 2012


changeset 19fa0d60ad2d in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=19fa0d60ad2d
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed May 09 11:11:42 2012 +0200

	* src/org/gfxtest/testsuites/PrintTestLines.java:
	Added new tests to this test suite.


diffstat:

 ChangeLog                                      |    5 +
 src/org/gfxtest/testsuites/PrintTestLines.java |  263 +++++++++++++++++++++++++
 2 files changed, 268 insertions(+), 0 deletions(-)

diffs (285 lines):

diff -r cc3e62406976 -r 19fa0d60ad2d ChangeLog
--- a/ChangeLog	Mon May 07 14:53:02 2012 +0200
+++ b/ChangeLog	Wed May 09 11:11:42 2012 +0200
@@ -1,3 +1,8 @@
+2012-05-09  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/PrintTestLines.java:
+	Added new tests to this test suite.
+
 2012-05-07  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/framework/GfxTest.java:
diff -r cc3e62406976 -r 19fa0d60ad2d src/org/gfxtest/testsuites/PrintTestLines.java
--- a/src/org/gfxtest/testsuites/PrintTestLines.java	Mon May 07 14:53:02 2012 +0200
+++ b/src/org/gfxtest/testsuites/PrintTestLines.java	Wed May 09 11:11:42 2012 +0200
@@ -359,6 +359,269 @@
     }
 
     /**
+     * Test basic behavior of method Graphics.drawLine().
+     * Vertical lines are rendered with default width and default end caps.
+     * Color of all rendered lines are set to black.
+     *
+     * @param image
+     *            image to which lines are to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testDrawVerticalLinesBasicStyle(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 y1 = BORDER;
+        final int y2 = height - BORDER;
+
+        // draw all lines onto a paper
+        for (int x = 0; x < width; x += HOR_STEP)
+        {
+            // render the line
+            graphics.drawLine(x, y1, x, y2);
+        }
+
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test basic behavior of method Graphics.drawLine().
+     * Vertical lines are rendered with default width and default end caps.
+     * Lines color are selected from a palette.
+     *
+     * @param image
+     *            image to which lines are to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testDrawVerticalLinesColorPalette(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 y1 = BORDER;
+        final int y2 = height - BORDER;
+
+        // index to color palette
+        int colorIndex = 0;
+
+        // draw all lines onto a paper
+        for (int x = 0; x < width; x += HOR_STEP)
+        {
+            // set line color
+            graphics.setColor(ColorPalette.getColor(colorIndex++));
+            // render the line
+            graphics.drawLine(x, y1, x, y2);
+        }
+
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test basic behavior of method Graphics.drawLine().
+     * Vertical lines are rendered with default width and default end caps.
+     * Lines color are selected from a grayscale palette.
+     *
+     * @param image
+     *            image to which lines are to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testDrawVerticalLinesGrayScale(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 y1 = BORDER;
+        final int y2 = height - BORDER;
+
+        // draw all lines onto a paper
+        for (int x = 0; x < width; x += HOR_STEP)
+        {
+            float gray = x * 1.0f / width;
+            graphics.setColor(new Color(gray, gray, gray));
+            // render the line
+            graphics.drawLine(x, y1, x, y2);
+        }
+
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test basic behavior of method Graphics.drawLine().
+     * Vertical lines are rendered with various width and default end caps.
+     * Color of all rendered lines are set to black.
+     *
+     * @param image
+     *            image to which lines are to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testDrawVerticalLinesChangeWidth(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 y1 = BORDER;
+        final int y2 = height - BORDER;
+        float strokeWidth = 0.0f; 
+
+        // draw all lines onto a paper
+        for (int x = 0; x < width; x += HOR_STEP * 2)
+        {
+            graphics.setStroke(new BasicStroke(strokeWidth));
+            strokeWidth = strokeWidth < MAX_STROKE_WIDTH ? strokeWidth + 0.5f : strokeWidth;
+            // render the line
+            graphics.drawLine(x, y1, x, y2);
+        }
+
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test basic behavior of method Graphics.drawLine().
+     * Vertical lines are rendered with various width and end caps set to CAP_BUTT.
+     * Color of all rendered lines are set to black.
+     *
+     * @param image
+     *            image to which lines are to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testDrawVerticalLinesChangeWidthCapButt(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 y1 = BORDER;
+        final int y2 = height - BORDER;
+        float strokeWidth = 0.0f; 
+
+        // draw all lines onto a paper
+        for (int x = 0; x < width; x += HOR_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(x, y1, x, y2);
+        }
+
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test basic behavior of method Graphics.drawLine().
+     * Vertical lines are rendered with various width and end caps set to CAP_ROUND.
+     * Color of all rendered lines are set to black.
+     *
+     * @param image
+     *            image to which lines are to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testDrawVerticalLinesChangeWidthCapRound(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 y1 = BORDER;
+        final int y2 = height - BORDER;
+        float strokeWidth = 0.0f; 
+
+        // draw all lines onto a paper
+        for (int x = 0; x < width; x += HOR_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(x, y1, x, y2);
+        }
+
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test basic behavior of method Graphics.drawLine().
+     * Vertical lines are rendered with various width and end caps set to CAP_SQUARE.
+     * Color of all rendered lines are set to black.
+     *
+     * @param image
+     *            image to which lines are to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testDrawVerticalLinesChangeWidthCapSquare(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 y1 = BORDER;
+        final int y2 = height - BORDER;
+        float strokeWidth = 0.0f; 
+
+        // draw all lines onto a paper
+        for (int x = 0; x < width; x += HOR_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(x, y1, x, y2);
+        }
+
+        // test return value
+        return TestResult.PASSED;
+    }
+    /**
      * Entry point to the test suite.
      *
      * @param args not used in this case



More information about the distro-pkg-dev mailing list