From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29870 invoked by alias); 8 Jun 2006 14:59:07 -0000 Received: (qmail 29815 invoked by uid 22791); 8 Jun 2006 14:59:03 -0000 X-Spam-Check-By: sourceware.org Received: from outmail128161.authsmtp.co.uk (HELO outmail128161.authsmtp.co.uk) (62.13.128.161) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 08 Jun 2006 14:58:53 +0000 Received: from [192.168.1.7] (host217-37-65-246.in-addr.btopenworld.com [217.37.65.246]) (authenticated bits=0) by squirrel.dmpriest.net.uk (8.13.6/8.13.6/Kp) with ESMTP id k58Ewl9A033381 for ; Thu, 8 Jun 2006 15:58:47 +0100 (BST) Message-ID: <44883B5F.8090207@object-refinery.com> Date: Thu, 08 Jun 2006 14:59:00 -0000 From: David Gilbert User-Agent: Mozilla Thunderbird 1.0.8 (X11/20060502) MIME-Version: 1.0 To: mauve-patches Subject: FYI: Graphics2D.setTransform() test Content-Type: multipart/mixed; boundary="------------090604090909060606030307" X-Server-Quench: 4a0fb9a7-f6ff-11da-b770-001185d377ca X-AuthRoute: OCdyYgsUB1ZZRRob BmULDStKRB85DhpG AxIIMU5ALVQIUwlL IwBRKV9FNVQBW1wc QzdPCAwBE019BDIw LV9MLVQZMRIbHHUp Dw0LEQcRCkc9VURQ QgBNDUQ8dw1ZAjsu ekRiXnZLXUFwcE53 RkYaF2wBe2RndmYa TkJccRxWdRxKMERA YiU4CHp8YWYEZXJh d2df X-Report-SPAM: If SPAM / abuse - report it at: http://www.authsmtp.com/abuse X-Virus-Status: No virus detected - but ensure you scan with your own anti-virus system! X-IsSubscribed: yes Mailing-List: contact mauve-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-patches-owner@sourceware.org X-SW-Source: 2006/txt/msg00384.txt.bz2 This is a multi-part message in MIME format. --------------090604090909060606030307 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 309 This patch (committed) adds tests for the setTransform() and transform() methods in Graphics2D: 2006-06-08 David Gilbert * gnu/testlet/java/awt/Graphics2D/setTransform.java: New file, * gnu/testlet/java/awt/Graphics2D/transform.java: New file. Regards, Dave --------------090604090909060606030307 Content-Type: text/plain; name="diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diff.txt" Content-length: 5819 Index: gnu/testlet/java/awt/Graphics2D/setTransform.java =================================================================== RCS file: gnu/testlet/java/awt/Graphics2D/setTransform.java diff -N gnu/testlet/java/awt/Graphics2D/setTransform.java --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ gnu/testlet/java/awt/Graphics2D/setTransform.java 8 Jun 2006 14:51:12 -0000 @@ -0,0 +1,67 @@ +/* setTransform.java -- some checks for the setTransform() method in the + Graphics2D class. + Copyright (C) 2006 David Gilbert +This file is part of Mauve. + +Mauve is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +Mauve is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with Mauve; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +02110-1301 USA. + +*/ + +// Tags: JDK1.2 + +package gnu.testlet.java.awt.Graphics2D; + +import gnu.testlet.TestHarness; +import gnu.testlet.Testlet; + +import java.awt.Graphics2D; +import java.awt.geom.AffineTransform; +import java.awt.geom.Rectangle2D; +import java.awt.image.BufferedImage; + +public class setTransform implements Testlet +{ + public void test(TestHarness harness) + { + testBufferedImageGraphics2D(harness); + } + + /** + * Checks for the Graphics2D from a BufferedImage. + * + * @param harness the test harness. + */ + public void testBufferedImageGraphics2D(TestHarness harness) + { + harness.checkPoint("BufferedImage Graphics2D"); + BufferedImage image = new BufferedImage(100, 80, + BufferedImage.TYPE_INT_ARGB); + Graphics2D g2 = image.createGraphics(); + + // here we check what happens to the clip shape when a transform is + // set... + harness.check(g2.getTransform(), new AffineTransform()); + g2.setClip(1, 2, 3, 4); + Rectangle2D currentClip = (Rectangle2D) g2.getClip(); + harness.check(currentClip, new Rectangle2D.Double(1, 2, 3, 4)); + g2.transform(AffineTransform.getTranslateInstance(10.0, 20.0)); + currentClip = (Rectangle2D) g2.getClip(); + harness.check(currentClip, new Rectangle2D.Double(-9, -18, 3, 4)); + g2.setTransform(new AffineTransform()); + currentClip = (Rectangle2D) g2.getClip(); + harness.check(currentClip, new Rectangle2D.Double(1, 2, 3, 4)); + } +} Index: gnu/testlet/java/awt/Graphics2D/transform.java =================================================================== RCS file: gnu/testlet/java/awt/Graphics2D/transform.java diff -N gnu/testlet/java/awt/Graphics2D/transform.java --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ gnu/testlet/java/awt/Graphics2D/transform.java 8 Jun 2006 14:51:12 -0000 @@ -0,0 +1,74 @@ +/* transform.java -- some checks for the transform() method in the Graphics2D + class. + Copyright (C) 2006 David Gilbert +This file is part of Mauve. + +Mauve is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +Mauve is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with Mauve; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +02110-1301 USA. + +*/ + +// Tags: JDK1.2 + +package gnu.testlet.java.awt.Graphics2D; + +import gnu.testlet.TestHarness; +import gnu.testlet.Testlet; + +import java.awt.Graphics2D; +import java.awt.geom.AffineTransform; +import java.awt.geom.Rectangle2D; +import java.awt.image.BufferedImage; + +public class transform implements Testlet +{ + public void test(TestHarness harness) + { + testBufferedImageGraphics2D(harness); + } + + /** + * Checks for the Graphics2D from a BufferedImage. + * + * @param harness the test harness. + */ + public void testBufferedImageGraphics2D(TestHarness harness) + { + harness.checkPoint("BufferedImage Graphics2D"); + BufferedImage image = new BufferedImage(100, 80, + BufferedImage.TYPE_INT_ARGB); + Graphics2D g2 = image.createGraphics(); + harness.check(g2.getTransform().isIdentity()); + g2.setTransform(new AffineTransform(1.0, 2.0, 3.0, 4.0, 5.0, 6.0)); + g2.transform(new AffineTransform(7.0, 8.0, 9.0, 10.0, 11.0, 12.0)); + AffineTransform current = g2.getTransform(); + harness.check(current.getScaleX(), 31.0); + harness.check(current.getScaleY(), 58.0); + harness.check(current.getShearX(), 39.0); + harness.check(current.getShearY(), 46.0); + harness.check(current.getTranslateX(), 52.0); + harness.check(current.getTranslateY(), 76.0); + + // here we check what happens to the clip shape when a transform is + // applied... + g2.setTransform(new AffineTransform()); + g2.setClip(1, 2, 3, 4); + Rectangle2D currentClip = (Rectangle2D) g2.getClip(); + harness.check(currentClip, new Rectangle2D.Double(1, 2, 3, 4)); + g2.transform(AffineTransform.getTranslateInstance(10.0, 20.0)); + currentClip = (Rectangle2D) g2.getClip(); + harness.check(currentClip, new Rectangle2D.Double(-9, -18, 3, 4)); + } +} --------------090604090909060606030307--