/hg/gfx-test: Added new test cases and fixed names of some test ...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Feb 24 03:30:03 PST 2012
changeset eb50c2a4fceb in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=eb50c2a4fceb
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Feb 24 12:32:37 2012 +0100
Added new test cases and fixed names of some test cases.
* src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java:
* src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java:
* src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java:
diffstat:
ChangeLog | 7 +
src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java | 26 +-
src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java | 160 +++++----
src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java | 118 ++++++-
4 files changed, 214 insertions(+), 97 deletions(-)
diffs (truncated from 706 to 500 lines):
diff -r 5d17ddf620d6 -r eb50c2a4fceb ChangeLog
--- a/ChangeLog Thu Feb 23 15:28:55 2012 +0100
+++ b/ChangeLog Fri Feb 24 12:32:37 2012 +0100
@@ -1,3 +1,10 @@
+2012-02-24 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java:
+ * src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java:
+ * src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java:
+ Added new test cases and fixed names of some test cases.
+
2012-02-23 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java:
diff -r 5d17ddf620d6 -r eb50c2a4fceb src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java Thu Feb 23 15:28:55 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java Fri Feb 24 12:32:37 2012 +0100
@@ -675,7 +675,7 @@
*/
public TestResult testClipCircleByEllipseShapeCheckerTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip ellipse
+ // render clip ellipse which is used as a base for clip shape
CommonClippingOperations.renderClipEllipse(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingCheckerTexture(image, graphics2d);
@@ -697,7 +697,7 @@
*/
public TestResult testClipCircleByEllipseShapeDiagonalCheckerTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip ellipse
+ // render clip ellipse which is used as a base for clip shape
CommonClippingOperations.renderClipEllipse(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingDiagonalCheckerTexture(image, graphics2d);
@@ -719,7 +719,7 @@
*/
public TestResult testClipCircleByEllipseShapeGridTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip ellipse
+ // render clip ellipse which is used as a base for clip shape
CommonClippingOperations.renderClipEllipse(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingGridTexture(image, graphics2d);
@@ -741,7 +741,7 @@
*/
public TestResult testClipCircleByEllipseShapeDiagonalGridTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip ellipse
+ // render clip ellipse which is used as a base for clip shape
CommonClippingOperations.renderClipEllipse(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingDiagonalGridTexture(image, graphics2d);
@@ -763,7 +763,7 @@
*/
public TestResult testClipCircleByEllipseShapeColorDotsTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip ellipse
+ // render clip ellipse which is used as a base for clip shape
CommonClippingOperations.renderClipEllipse(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingColorDotsTexture(image, graphics2d);
@@ -785,7 +785,7 @@
*/
public TestResult testClipCircleByEllipseShapeHorizontalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip ellipse
+ // render clip ellipse which is used as a base for clip shape
CommonClippingOperations.renderClipEllipse(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingHorizontalStripesTexture(image, graphics2d);
@@ -807,7 +807,7 @@
*/
public TestResult testClipCircleByEllipseShapeVerticalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip ellipse
+ // render clip ellipse which is used as a base for clip shape
CommonClippingOperations.renderClipEllipse(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingVerticalStripesTexture(image, graphics2d);
@@ -829,7 +829,7 @@
*/
public TestResult testClipCircleByEllipseShapeDiagonalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip ellipse
+ // render clip ellipse which is used as a base for clip shape
CommonClippingOperations.renderClipEllipse(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingDiagonalStripesTexture(image, graphics2d);
@@ -851,7 +851,7 @@
*/
public TestResult testClipCircleByEllipseShapeHorizontalColorStripesTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip ellipse
+ // render clip ellipse which is used as a base for clip shape
CommonClippingOperations.renderClipEllipse(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingHorizontalColorStripesTexture(image, graphics2d);
@@ -873,7 +873,7 @@
*/
public TestResult testClipCircleByEllipseShapeVerticalColorStripesTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip ellipse
+ // render clip ellipse which is used as a base for clip shape
CommonClippingOperations.renderClipEllipse(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingVerticalColorStripesTexture(image, graphics2d);
@@ -895,7 +895,7 @@
*/
public TestResult testClipCircleByEllipseShapeRGB1TexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip ellipse
+ // render clip ellipse which is used as a base for clip shape
CommonClippingOperations.renderClipEllipse(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingRGBTexture1(image, graphics2d);
@@ -917,7 +917,7 @@
*/
public TestResult testClipCircleByEllipseShapeRGB2TexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip ellipse
+ // render clip ellipse which is used as a base for clip shape
CommonClippingOperations.renderClipEllipse(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingRGBTexture2(image, graphics2d);
@@ -939,7 +939,7 @@
*/
public TestResult testClipCircleByEllipseShapeRGB3TexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip ellipse
+ // render clip ellipse which is used as a base for clip shape
CommonClippingOperations.renderClipEllipse(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingRGBTexture3(image, graphics2d);
diff -r 5d17ddf620d6 -r eb50c2a4fceb src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java Thu Feb 23 15:28:55 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java Fri Feb 24 12:32:37 2012 +0100
@@ -80,7 +80,7 @@
*/
private static void basicSetupForRendering(TestImage image, Graphics2D graphics2d)
{
- // create clip area
+ // create clip area which is constructed from the rectangle area
CommonClippingOperations.createClipUsingRectangleArea(image, graphics2d);
}
@@ -131,7 +131,7 @@
*/
private void drawCircleClippedByRectangleAreaAlphaPaintRed(TestImage image, Graphics2D graphics2d, int transparency)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set stroke color
CommonRenderingStyles.setStrokeColor(graphics2d);
@@ -145,53 +145,53 @@
/**
* Draw circle clipped by a rectangle area. Circle is drawn using alpha paint with
- * green color and selected transparency.
- *
- * @param image
- * work image
- * @param graphics2d
- * graphics canvas
- * @param transparency
- * selected transparency (0..100 percent)
- */
- private void drawCircleClippedByRectangleAreaAlphaPaintGreen(TestImage image, Graphics2D graphics2d, int transparency)
- {
- // render clip rectangle
- CommonClippingOperations.renderClipRectangle(image, graphics2d);
- // set stroke color
- CommonRenderingStyles.setStrokeColor(graphics2d);
- // set fill color
- CommonRenderingStyles.setTransparentFillGreenColor(graphics2d, transparency);
- // create clip area
- CommonClippingOperations.createClipUsingRectangleArea(image, graphics2d);
- // fill the shape
- CommonShapesRenderer.drawFilledCircle(image, graphics2d);
- }
+ * green color and selected transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @param transparency
+ * selected transparency (0..100 percent)
+ */
+ private void drawCircleClippedByRectangleAreaAlphaPaintGreen(TestImage image, Graphics2D graphics2d, int transparency)
+ {
+ // render clip rectangle which is used as a base for clip shape
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set fill color
+ CommonRenderingStyles.setTransparentFillGreenColor(graphics2d, transparency);
+ // create clip area
+ CommonClippingOperations.createClipUsingRectangleArea(image, graphics2d);
+ // fill the shape
+ CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+ }
- /**
- * Draw circle clipped by a rectangle area. Circle is drawn using alpha paint with
- * blue color and selected transparency.
- *
- * @param image
- * work image
- * @param graphics2d
- * graphics canvas
- * @param transparency
- * selected transparency (0..100 percent)
- */
- private void drawCircleClippedByRectangleAreaAlphaPaintBlue(TestImage image, Graphics2D graphics2d, int transparency)
- {
- // render clip rectangle
- CommonClippingOperations.renderClipRectangle(image, graphics2d);
- // set stroke color
- CommonRenderingStyles.setStrokeColor(graphics2d);
- // set fill color
- CommonRenderingStyles.setTransparentFillBlueColor(graphics2d, transparency);
- // create clip area
- CommonClippingOperations.createClipUsingRectangleArea(image, graphics2d);
- // fill the shape
- CommonShapesRenderer.drawFilledCircle(image, graphics2d);
- }
+ /**
+ * Draw circle clipped by a rectangle area. Circle is drawn using alpha paint with
+ * blue color and selected transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @param transparency
+ * selected transparency (0..100 percent)
+ */
+ private void drawCircleClippedByRectangleAreaAlphaPaintBlue(TestImage image, Graphics2D graphics2d, int transparency)
+ {
+ // render clip rectangle which is used as a base for clip shape
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set fill color
+ CommonRenderingStyles.setTransparentFillBlueColor(graphics2d, transparency);
+ // create clip area
+ CommonClippingOperations.createClipUsingRectangleArea(image, graphics2d);
+ // fill the shape
+ CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+ }
/**
* Check if circle shape could be clipped by a rectangle area. Circle is
@@ -205,7 +205,7 @@
*/
public TestResult testClipCircleByRectangleAreaStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set clip region and draw the circle
drawEmptyCircleClippedByRectangleArea(image, graphics2d);
@@ -225,7 +225,7 @@
*/
public TestResult testClipCircleByRectangleAreaWideStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set stroke width
CommonRenderingStyles.setStrokeThickWidth(graphics2d);
@@ -247,7 +247,7 @@
*/
public TestResult testClipCircleByRectangleAreaExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set stroke width
CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
@@ -259,6 +259,28 @@
/**
* Check if circle shape could be clipped by a rectangle area. Circle is
+ * rendered using zero wide stroke paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByEllipseShapeZeroWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip rectangle which is used as a base for clip shape
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeZeroThick(graphics2d);
+ // set clip region and draw the circle
+ drawEmptyCircleClippedByRectangleArea(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangle area. Circle is
* rendered using color paint.
*
* @param image
@@ -269,7 +291,7 @@
*/
public TestResult testClipCircleByRectangleAreaColorPaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set stroke color
CommonRenderingStyles.setStrokeColor(graphics2d);
@@ -565,7 +587,7 @@
*/
public TestResult testClipCircleByRectangleAreaHorizontalGradientPaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set horizontal gradient paint
CommonRenderingStyles.setHorizontalGradientFill(image, graphics2d);
@@ -587,7 +609,7 @@
*/
public TestResult testClipCircleByRectangleAreaVerticalGradientPaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set vertical gradient paint
CommonRenderingStyles.setVerticalGradientFill(image, graphics2d);
@@ -609,7 +631,7 @@
*/
public TestResult testClipCircleByRectangleAreaDiagonalGradientPaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set diagonal gradient paint
CommonRenderingStyles.setDiagonalGradientFill(image, graphics2d);
@@ -631,7 +653,7 @@
*/
public TestResult testClipCircleByRectangleAreaRadialGradientPaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set radial gradient paint
CommonRenderingStyles.setRadialGradientFill(image, graphics2d);
@@ -653,7 +675,7 @@
*/
public TestResult testClipCircleByRectangleAreaCheckerTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingCheckerTexture(image, graphics2d);
@@ -675,7 +697,7 @@
*/
public TestResult testClipCircleByRectangleAreaDiagonalCheckerTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingDiagonalCheckerTexture(image, graphics2d);
@@ -697,7 +719,7 @@
*/
public TestResult testClipCircleByRectangleAreaGridTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingGridTexture(image, graphics2d);
@@ -719,7 +741,7 @@
*/
public TestResult testClipCircleByRectangleAreaDiagonalGridTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingDiagonalGridTexture(image, graphics2d);
@@ -741,7 +763,7 @@
*/
public TestResult testClipCircleByRectangleAreaColorDotsTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingColorDotsTexture(image, graphics2d);
@@ -763,7 +785,7 @@
*/
public TestResult testClipCircleByRectangleAreaHorizontalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingHorizontalStripesTexture(image, graphics2d);
@@ -785,7 +807,7 @@
*/
public TestResult testClipCircleByRectangleAreaVerticalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingVerticalStripesTexture(image, graphics2d);
@@ -807,7 +829,7 @@
*/
public TestResult testClipCircleByRectangleAreaDiagonalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingDiagonalStripesTexture(image, graphics2d);
@@ -829,7 +851,7 @@
*/
public TestResult testClipCircleByRectangleAreaHorizontalColorStripesTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingHorizontalColorStripesTexture(image, graphics2d);
@@ -851,7 +873,7 @@
*/
public TestResult testClipCircleByRectangleAreaVerticalColorStripesTexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingVerticalColorStripesTexture(image, graphics2d);
@@ -873,7 +895,7 @@
*/
public TestResult testClipCircleByRectangleAreaRGB1TexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingRGBTexture1(image, graphics2d);
@@ -895,7 +917,7 @@
*/
public TestResult testClipCircleByRectangleAreaRGB2TexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingRGBTexture2(image, graphics2d);
@@ -917,7 +939,7 @@
*/
public TestResult testClipCircleByRectangleAreaRGB3TexturePaint(TestImage image, Graphics2D graphics2d)
{
- // render clip rectangle
+ // render clip rectangle which is used as a base for clip shape
CommonClippingOperations.renderClipRectangle(image, graphics2d);
// set the texture
CommonRenderingStyles.setTextureFillUsingRGBTexture3(image, graphics2d);
diff -r 5d17ddf620d6 -r eb50c2a4fceb src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java Thu Feb 23 15:28:55 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByRoundRectangleShape.java Fri Feb 24 12:32:37 2012 +0100
@@ -315,7 +315,7 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testClipCircleByRectangleShapeAlphaPaintRed000(TestImage image, Graphics2D graphics2d)
+ public TestResult testClipCircleByRoundRectangleShapeAlphaPaintRed000(TestImage image, Graphics2D graphics2d)
{
// draw circle clipped by rectangle using alpha paint with 0%
// transparency
@@ -334,7 +334,7 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testClipCircleByRectangleShapeAlphaPaintRed025(TestImage image, Graphics2D graphics2d)
+ public TestResult testClipCircleByRoundRectangleShapeAlphaPaintRed025(TestImage image, Graphics2D graphics2d)
{
// draw circle clipped by rectangle using alpha paint with 25%
// transparency
@@ -353,7 +353,7 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testClipCircleByRectangleShapeAlphaPaintRed050(TestImage image, Graphics2D graphics2d)
+ public TestResult testClipCircleByRoundRectangleShapeAlphaPaintRed050(TestImage image, Graphics2D graphics2d)
More information about the distro-pkg-dev
mailing list