/hg/gfx-test: * src/org/gfxtest/testsuites/PrintTestLines.java:
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri May 25 03:04:21 PDT 2012
changeset b56f62052e46 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=b56f62052e46
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri May 25 12:07:03 2012 +0200
* src/org/gfxtest/testsuites/PrintTestLines.java:
Added new tests to this test suite.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/PrintTestLines.java | 239 ++++++++++++++++++++++++-
2 files changed, 241 insertions(+), 3 deletions(-)
diffs (317 lines):
diff -r ab51d1f4d8ba -r b56f62052e46 ChangeLog
--- a/ChangeLog Thu May 24 11:41:36 2012 +0200
+++ b/ChangeLog Fri May 25 12:07:03 2012 +0200
@@ -1,3 +1,8 @@
+2012-05-25 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/PrintTestLines.java:
+ Added new tests to this test suite.
+
2012-05-24 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/framework/PrintTest.java:
diff -r ab51d1f4d8ba -r b56f62052e46 src/org/gfxtest/testsuites/PrintTestLines.java
--- a/src/org/gfxtest/testsuites/PrintTestLines.java Thu May 24 11:41:36 2012 +0200
+++ b/src/org/gfxtest/testsuites/PrintTestLines.java Fri May 25 12:07:03 2012 +0200
@@ -114,6 +114,7 @@
// render the line
graphics.drawLine(x1, y, x2, y);
}
+
// cleanup rendering
horizontalLineDrawCallbacks.cleanup();
}
@@ -156,6 +157,7 @@
// render the line
graphics.drawLine(x, y1, x, y2);
}
+
// cleanup rendering
verticalLineDrawCallbacks.cleanup();
}
@@ -221,6 +223,7 @@
// render the line
graphics.drawLine(x1, y1, x2, y2);
}
+
// cleanup rendering
diagonalLineDrawCallbacks.cleanup();
}
@@ -395,6 +398,7 @@
/**
* Test basic behavior of method Graphics.drawLine().
* Horizontal lines are rendered with various width and end caps set to CAP_ROUND.
+ * Join style is set bevel style.
* Color of all rendered lines are set to black.
*
* @param image
@@ -432,6 +436,7 @@
/**
* Test basic behavior of method Graphics.drawLine().
* Horizontal lines are rendered with various width and end caps set to CAP_SQUARE.
+ * Join style is set bevel style.
* Color of all rendered lines are set to black.
*
* @param image
@@ -468,6 +473,234 @@
/**
* 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 miter style.
+ * 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 testDrawHorizontalLinesChangeWidthCapButtJoinMiter(TestImage image, Graphics2D graphics)
+ {
+ drawHorizontalLines(image, graphics, VERTICAL_STEP << 1, new HorizontalLineDrawCallbacks()
+ {
+ /**
+ * Stroke width.
+ */
+ float strokeWidth = 0.0f;
+
+ /**
+ * Callback function called before each line is rendered.
+ */
+ @Override
+ public void iterationCallBack(int y, int index)
+ {
+ // set stroke width
+ this.graphics.setStroke(new BasicStroke(this.strokeWidth, BasicStroke.CAP_BUTT, BasicStroke.JOIN_MITER));
+ // set new stroke width
+ this.strokeWidth = this.strokeWidth < MAX_STROKE_WIDTH ? this.strokeWidth + STROKE_WIDTH_DELTA : this.strokeWidth;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test basic behavior of method Graphics.drawLine().
+ * Horizontal lines are rendered with various width and end caps set to CAP_ROUND.
+ * Join style is set miter style.
+ * 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 testDrawHorizontalLinesChangeWidthCapRoundJoinMiter(TestImage image, Graphics2D graphics)
+ {
+ drawHorizontalLines(image, graphics, VERTICAL_STEP << 1, new HorizontalLineDrawCallbacks()
+ {
+ /**
+ * Stroke width.
+ */
+ float strokeWidth = 0.0f;
+
+ /**
+ * Callback function called before each line is rendered.
+ */
+ @Override
+ public void iterationCallBack(int y, int index)
+ {
+ // set stroke width
+ this.graphics.setStroke(new BasicStroke(this.strokeWidth, BasicStroke.CAP_ROUND, BasicStroke.JOIN_MITER));
+ // set new stroke width
+ this.strokeWidth = this.strokeWidth < MAX_STROKE_WIDTH ? this.strokeWidth + STROKE_WIDTH_DELTA : this.strokeWidth;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test basic behavior of method Graphics.drawLine().
+ * Horizontal lines are rendered with various width and end caps set to CAP_SQUARE.
+ * Join style is set miter style.
+ * 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 testDrawHorizontalLinesChangeWidthCapSquareJoinMiter(TestImage image, Graphics2D graphics)
+ {
+ drawHorizontalLines(image, graphics, VERTICAL_STEP << 1, new HorizontalLineDrawCallbacks()
+ {
+ /**
+ * Stroke width.
+ */
+ float strokeWidth = 0.0f;
+
+ /**
+ * Callback function called before each line is rendered.
+ */
+ @Override
+ public void iterationCallBack(int y, int index)
+ {
+ // set stroke width
+ this.graphics.setStroke(new BasicStroke(this.strokeWidth, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_MITER));
+ // set new stroke width
+ this.strokeWidth = this.strokeWidth < MAX_STROKE_WIDTH ? this.strokeWidth + STROKE_WIDTH_DELTA : this.strokeWidth;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * 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 round style.
+ * 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 testDrawHorizontalLinesChangeWidthCapButtJoinRound(TestImage image, Graphics2D graphics)
+ {
+ drawHorizontalLines(image, graphics, VERTICAL_STEP << 1, new HorizontalLineDrawCallbacks()
+ {
+ /**
+ * Stroke width.
+ */
+ float strokeWidth = 0.0f;
+
+ /**
+ * Callback function called before each line is rendered.
+ */
+ @Override
+ public void iterationCallBack(int y, int index)
+ {
+ // set stroke width
+ this.graphics.setStroke(new BasicStroke(this.strokeWidth, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND));
+ // set new stroke width
+ this.strokeWidth = this.strokeWidth < MAX_STROKE_WIDTH ? this.strokeWidth + STROKE_WIDTH_DELTA : this.strokeWidth;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test basic behavior of method Graphics.drawLine().
+ * Horizontal lines are rendered with various width and end caps set to CAP_ROUND.
+ * Join style is set round style.
+ * 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 testDrawHorizontalLinesChangeWidthCapRoundJoinRound(TestImage image, Graphics2D graphics)
+ {
+ drawHorizontalLines(image, graphics, VERTICAL_STEP << 1, new HorizontalLineDrawCallbacks()
+ {
+ /**
+ * Stroke width.
+ */
+ float strokeWidth = 0.0f;
+
+ /**
+ * Callback function called before each line is rendered.
+ */
+ @Override
+ public void iterationCallBack(int y, int index)
+ {
+ // set stroke width
+ this.graphics.setStroke(new BasicStroke(this.strokeWidth, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND));
+ // set new stroke width
+ this.strokeWidth = this.strokeWidth < MAX_STROKE_WIDTH ? this.strokeWidth + STROKE_WIDTH_DELTA : this.strokeWidth;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Test basic behavior of method Graphics.drawLine().
+ * Horizontal lines are rendered with various width and end caps set to CAP_SQUARE.
+ * Join style is set round style.
+ * 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 testDrawHorizontalLinesChangeWidthCapSquareJoinRound(TestImage image, Graphics2D graphics)
+ {
+ drawHorizontalLines(image, graphics, VERTICAL_STEP << 1, new HorizontalLineDrawCallbacks()
+ {
+ /**
+ * Stroke width.
+ */
+ float strokeWidth = 0.0f;
+
+ /**
+ * Callback function called before each line is rendered.
+ */
+ @Override
+ public void iterationCallBack(int y, int index)
+ {
+ // set stroke width
+ this.graphics.setStroke(new BasicStroke(this.strokeWidth, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_ROUND));
+ // set new stroke width
+ this.strokeWidth = this.strokeWidth < MAX_STROKE_WIDTH ? this.strokeWidth + STROKE_WIDTH_DELTA : this.strokeWidth;
+ }
+ });
+
+ // test return value
+ return TestResult.PASSED;
+ }
+
+ /**
+ * 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.
*
@@ -606,7 +839,7 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testDrawVerticalLinesChangeWidthCapButt(TestImage image, Graphics2D graphics)
+ public TestResult testDrawVerticalLinesChangeWidthCapButtJoinBevel(TestImage image, Graphics2D graphics)
{
drawVerticalLines(image, graphics, HORIZONTAL_STEP << 1, new VerticalLineDrawCallbacks()
{
@@ -643,7 +876,7 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testDrawVerticalLinesChangeWidthCapRound(TestImage image, Graphics2D graphics)
+ public TestResult testDrawVerticalLinesChangeWidthCapRoundJoinBevel(TestImage image, Graphics2D graphics)
{
drawVerticalLines(image, graphics, HORIZONTAL_STEP << 1, new VerticalLineDrawCallbacks()
{
@@ -680,7 +913,7 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testDrawVerticalLinesChangeWidthCapSquare(TestImage image, Graphics2D graphics)
+ public TestResult testDrawVerticalLinesChangeWidthCapSquareJoinBevel(TestImage image, Graphics2D graphics)
{
drawVerticalLines(image, graphics, HORIZONTAL_STEP << 1, new VerticalLineDrawCallbacks()
{
More information about the distro-pkg-dev
mailing list