public inbox for mauve-patches@sourceware.org
 help / color / mirror / Atom feed
* FYI: AbstractButton.setRolloverIcon - new test
@ 2006-07-07 15:40 David Gilbert
  0 siblings, 0 replies; only message in thread
From: David Gilbert @ 2006-07-07 15:40 UTC (permalink / raw)
  To: mauve-patches

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

This patch (committed) adds a couple of new tests for the AbstractButton 
class:

2006-07-07  David Gilbert  <david.gilbert@object-refinery.com>

    * gnu/testlet/javax/swing/AbstractButton/setRolloverIcon.java: New test,
    * 
gnu/testlet/javax/swing/AbstractButton/setRolloverSelectedIcon.java: 
Likewise.

Regards,

Dave

[-- Attachment #2: diff.txt --]
[-- Type: text/plain, Size: 7815 bytes --]

Index: gnu/testlet/javax/swing/AbstractButton/setRolloverIcon.java
===================================================================
RCS file: gnu/testlet/javax/swing/AbstractButton/setRolloverIcon.java
diff -N gnu/testlet/javax/swing/AbstractButton/setRolloverIcon.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/AbstractButton/setRolloverIcon.java	7 Jul 2006 15:37:32 -0000
@@ -0,0 +1,96 @@
+/* setRolloverIcon.java -- some checks for the setRolloverIcon() method in
+       the AbstractButton class.
+   Copyright (C) 2006 David Gilbert <david.gilbert@object-refinery.com>
+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.5
+
+package gnu.testlet.javax.swing.AbstractButton;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.beans.PropertyChangeEvent;
+import java.beans.PropertyChangeListener;
+import java.util.List;
+
+import javax.swing.AbstractButton;
+import javax.swing.Icon;
+import javax.swing.JButton;
+import javax.swing.plaf.metal.MetalIconFactory;
+
+public class setRolloverIcon implements Testlet, PropertyChangeListener
+{
+  List events = new java.util.ArrayList();
+  
+  public void propertyChange(PropertyChangeEvent e) 
+  {
+    events.add(e);
+  }
+
+public void test(TestHarness harness)
+  {
+    Icon icon1 = MetalIconFactory.getFileChooserNewFolderIcon();
+    Icon icon2 = MetalIconFactory.getHorizontalSliderThumbIcon();
+    AbstractButton b = new JButton("123");
+    b.setRolloverEnabled(false);
+    b.addPropertyChangeListener(this);
+    b.setRolloverIcon(icon1);
+    harness.check(b.getRolloverIcon(), icon1);
+    harness.check(events.size(), 2);
+    PropertyChangeEvent e1 = (PropertyChangeEvent) events.get(0);
+    harness.check(e1.getSource(), b);
+    harness.check(e1.getPropertyName(), "rolloverIcon");
+    harness.check(e1.getOldValue(), null);
+    harness.check(e1.getNewValue(), icon1);
+    PropertyChangeEvent e2 = (PropertyChangeEvent) events.get(1);
+    harness.check(e2.getSource(), b);
+    harness.check(e2.getPropertyName(), "rolloverEnabled");
+    harness.check(e2.getOldValue(), Boolean.FALSE);
+    harness.check(e2.getNewValue(), Boolean.TRUE);
+    
+    // change the icon
+    events.clear();
+    b.setRolloverIcon(icon2);
+    harness.check(b.getRolloverIcon(), icon2);
+    harness.check(events.size(), 1);
+    e1 = (PropertyChangeEvent) events.get(0);
+    harness.check(e1.getSource(), b);
+    harness.check(e1.getPropertyName(), "rolloverIcon");
+    harness.check(e1.getOldValue(), icon1);
+    harness.check(e1.getNewValue(), icon2);
+    
+    // setting the same icon should generate no event
+    events.clear();
+    b.setRolloverIcon(icon2);
+    harness.check(events.size(), 0);
+    
+    // set to null
+    b.setRolloverIcon(null);
+    harness.check(b.getRolloverIcon(), null);
+    harness.check(b.isRolloverEnabled(), true);
+    harness.check(events.size(), 1);
+    e1 = (PropertyChangeEvent) events.get(0);
+    harness.check(e1.getSource(), b);
+    harness.check(e1.getPropertyName(), "rolloverIcon");
+    harness.check(e1.getOldValue(), icon2);
+    harness.check(e1.getNewValue(), null);
+  }
+}
Index: gnu/testlet/javax/swing/AbstractButton/setRolloverSelectedIcon.java
===================================================================
RCS file: gnu/testlet/javax/swing/AbstractButton/setRolloverSelectedIcon.java
diff -N gnu/testlet/javax/swing/AbstractButton/setRolloverSelectedIcon.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/AbstractButton/setRolloverSelectedIcon.java	7 Jul 2006 15:37:32 -0000
@@ -0,0 +1,96 @@
+/* setRolloverSelectedIcon.java -- some checks for the 
+       setRolloverSelectedIcon() method in the AbstractButton class.
+   Copyright (C) 2006 David Gilbert <david.gilbert@object-refinery.com>
+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.5
+
+package gnu.testlet.javax.swing.AbstractButton;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.beans.PropertyChangeEvent;
+import java.beans.PropertyChangeListener;
+import java.util.List;
+
+import javax.swing.AbstractButton;
+import javax.swing.Icon;
+import javax.swing.JButton;
+import javax.swing.plaf.metal.MetalIconFactory;
+
+public class setRolloverSelectedIcon implements Testlet, PropertyChangeListener
+{
+  List events = new java.util.ArrayList();
+  
+  public void propertyChange(PropertyChangeEvent e) 
+  {
+    events.add(e);
+  }
+
+public void test(TestHarness harness)
+  {
+    Icon icon1 = MetalIconFactory.getFileChooserNewFolderIcon();
+    Icon icon2 = MetalIconFactory.getHorizontalSliderThumbIcon();
+    AbstractButton b = new JButton("123");
+    b.setRolloverEnabled(false);
+    b.addPropertyChangeListener(this);
+    b.setRolloverSelectedIcon(icon1);
+    harness.check(b.getRolloverSelectedIcon(), icon1);
+    harness.check(events.size(), 2);
+    PropertyChangeEvent e1 = (PropertyChangeEvent) events.get(0);
+    harness.check(e1.getSource(), b);
+    harness.check(e1.getPropertyName(), "rolloverSelectedIcon");
+    harness.check(e1.getOldValue(), null);
+    harness.check(e1.getNewValue(), icon1);
+    PropertyChangeEvent e2 = (PropertyChangeEvent) events.get(1);
+    harness.check(e2.getSource(), b);
+    harness.check(e2.getPropertyName(), "rolloverEnabled");
+    harness.check(e2.getOldValue(), Boolean.FALSE);
+    harness.check(e2.getNewValue(), Boolean.TRUE);
+    
+    // change the icon
+    events.clear();
+    b.setRolloverSelectedIcon(icon2);
+    harness.check(b.getRolloverSelectedIcon(), icon2);
+    harness.check(events.size(), 1);
+    e1 = (PropertyChangeEvent) events.get(0);
+    harness.check(e1.getSource(), b);
+    harness.check(e1.getPropertyName(), "rolloverSelectedIcon");
+    harness.check(e1.getOldValue(), icon1);
+    harness.check(e1.getNewValue(), icon2);
+    
+    // setting the same icon should generate no event
+    events.clear();
+    b.setRolloverSelectedIcon(icon2);
+    harness.check(events.size(), 0);
+    
+    // set to null
+    b.setRolloverSelectedIcon(null);
+    harness.check(b.getRolloverSelectedIcon(), null);
+    harness.check(b.isRolloverEnabled(), true);
+    harness.check(events.size(), 1);
+    e1 = (PropertyChangeEvent) events.get(0);
+    harness.check(e1.getSource(), b);
+    harness.check(e1.getPropertyName(), "rolloverSelectedIcon");
+    harness.check(e1.getOldValue(), icon2);
+    harness.check(e1.getNewValue(), null);
+  }
+}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-07-07 15:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-07-07 15:40 FYI: AbstractButton.setRolloverIcon - new test David Gilbert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).