public inbox for mauve-patches@sourceware.org
 help / color / mirror / Atom feed
* FYI: New TransferHandler test
@ 2006-10-17 15:24 Roman Kennke
  0 siblings, 0 replies; 2+ messages in thread
From: Roman Kennke @ 2006-10-17 15:24 UTC (permalink / raw)
  To: mauve-patches

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

This tests the method TransferHandler.createTransferable().

2006-10-17  Roman Kennke <kennke@aicas.com>

	* gnu/testlet/javax/swing/TransferHandler/createTransferable.java:
	New test.

/Roman


[-- Attachment #2: patch.diff --]
[-- Type: text/x-patch, Size: 7575 bytes --]

Index: gnu/testlet/javax/swing/TransferHandler/createTransferable.java
===================================================================
RCS file: gnu/testlet/javax/swing/TransferHandler/createTransferable.java
diff -N gnu/testlet/javax/swing/TransferHandler/createTransferable.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/TransferHandler/createTransferable.java	17 Oct 2006 15:22:14 -0000
@@ -0,0 +1,246 @@
+/* createTransferable.java -- Tests TransferHandler.createTransferable()
+   Copyright (C) 2006 Roman Kennke (kennke@aicas.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.4
+
+package gnu.testlet.javax.swing.TransferHandler;
+
+import java.awt.datatransfer.DataFlavor;
+import java.awt.datatransfer.Transferable;
+import java.awt.datatransfer.UnsupportedFlavorException;
+import java.io.IOException;
+
+import javax.swing.JComponent;
+import javax.swing.TransferHandler;
+
+import junit.framework.TestCase;
+
+/**
+ * Tests the TransferHandler.createTransferable() method.
+ */
+public class createTransferable extends TestCase
+{
+
+  /**
+   * Overridden to make createTransferable() public for testing.
+   */
+  private class TestTransferHandler extends TransferHandler
+  {
+    TestTransferHandler(String prop)
+    {
+      super(prop);
+    }
+    public Transferable createTransferable(JComponent comp)
+    {
+      return super.createTransferable(comp);
+    }
+  }
+
+  public class TestComponent
+    extends JComponent
+  {
+    private String value;
+    public void setTestProperty(String val)
+    {
+      value = val;
+    }
+    public String getTestProperty()
+    {
+      return "HelloWorld";
+    }
+  }
+
+  /**
+   * The transfer handler that we test.
+   */
+  private TestTransferHandler transferHandler;
+
+  /**
+   * The component that is passed in the createTransferable() method.
+   */
+  private JComponent component;
+
+  public void setUp()
+  {
+    component = new TestComponent();
+    transferHandler = new TestTransferHandler("testProperty");
+  }
+
+  public void tearDown()
+  {
+    component = null;
+    transferHandler = null;
+  }
+
+  /**
+   * Check what is returned when we initialize the TransferHandler with a
+   * null property.
+   */
+  public void testNullProperty()
+  {
+    transferHandler = new TestTransferHandler(null);
+    Transferable transferable = transferHandler.createTransferable(component);
+    assertNull(transferable);
+  }
+
+  public void testMissingGetter()
+  {
+    component = new JComponent()
+    {
+      String value;
+      public void setTestProperty(String val)
+      {
+        value = val;
+      }
+    };
+    Transferable transferable = transferHandler.createTransferable(component);
+    assertNull(transferable);
+  }
+
+  public void testMissingSetter()
+  {
+    component = new JComponent()
+    {
+      String value;
+      public String getTestProperty()
+      {
+        return value;
+      }
+    };
+    Transferable transferable = transferHandler.createTransferable(component);
+    assertNotNull(transferable);
+  }
+
+  public void testAllOk()
+  {
+    Transferable transferable = transferHandler.createTransferable(component);
+    assertNotNull(transferable);
+  }
+
+  /**
+   * Tests which transfer flavors are supported by the created Transferable.
+   */
+  public void testTransferableTransferFlavors()
+  {
+    Transferable transferable = transferHandler.createTransferable(component);
+    DataFlavor[] flavors = transferable.getTransferDataFlavors();
+    assertEquals(1, flavors.length);
+    assertEquals("application/x-java-jvm-local-objectref; class=java.lang.String", flavors[0].getMimeType());
+  }
+
+  public void testTransferableDataFlavorSupported()
+  {
+    Transferable transferable = transferHandler.createTransferable(component);
+    try
+      {
+        // Primary type doesn't match.
+        DataFlavor flavor = new DataFlavor("xyz/x-java-jvm-local-objectref; class=java.lang.String");
+        assertFalse(transferable.isDataFlavorSupported(flavor));
+        // Subtype type doesn't match.
+        flavor = new DataFlavor("application/x-java-remote-object; class=java.lang.String");
+        assertFalse(transferable.isDataFlavorSupported(flavor));
+        // Representation class doesn't match.
+        flavor = new DataFlavor("application/x-java-jvm-local-objectref; class=java.lang.Integer");
+        assertFalse(transferable.isDataFlavorSupported(flavor));
+                    
+        // Good match.
+        flavor = new DataFlavor("application/x-java-jvm-local-objectref; class=java.lang.String");
+        assertTrue(transferable.isDataFlavorSupported(flavor));
+      }
+    catch (ClassNotFoundException ex)
+      {
+        fail(ex.getMessage());
+      }
+  }
+
+  public void testTransferableTransferData()
+  {
+    Transferable transferable = transferHandler.createTransferable(component);
+    // Try invalid data flavor.
+    try
+      {
+        DataFlavor flavor = new DataFlavor("xyz/x-java-jvm-local-objectref; class=java.lang.String");
+        Object data = transferable.getTransferData(flavor);
+        fail("UnsupportedOperationException must be thrown");
+      }
+    catch (UnsupportedFlavorException ex)
+      {
+        // Ok.
+      }
+    catch (IOException ex)
+      {
+        fail("UnsupportedFlavorException must be thrown, no IOException");
+      }
+    catch (ClassNotFoundException ex)
+      {
+        fail(ex.getMessage());
+      }
+
+    // Try OK data flavor.
+    try
+      {
+        DataFlavor flavor = new DataFlavor("application/x-java-jvm-local-objectref; class=java.lang.String");
+        Object data = transferable.getTransferData(flavor);
+        assertEquals(data, "HelloWorld");
+      }
+    catch (UnsupportedFlavorException ex)
+      {
+        fail("UnsupportedFlavorException must not be thrown");
+      }
+    catch (IOException ex)
+      {
+        System.err.println(ex.getMessage());
+        fail("IOException must not be thrown");
+      }
+    catch (ClassNotFoundException ex)
+      {
+        fail(ex.getMessage());
+      }
+    // Try non-accessible component.
+    component = new JComponent()
+      {
+        public String getTestProperty()
+        {
+          return "Hello World";
+        }
+      };
+    transferable = transferHandler.createTransferable(component);
+
+    try
+      {
+        DataFlavor flavor = new DataFlavor("application/x-java-jvm-local-objectref; class=java.lang.String");
+        Object data = transferable.getTransferData(flavor);
+        fail("IOException must be thrown");
+      }
+    catch (UnsupportedFlavorException ex)
+      {
+        fail("UnsupportedFlavorException must not be thrown");
+      }
+    catch (IOException ex)
+      {
+        // Ok.
+      }
+    catch (ClassNotFoundException ex)
+      {
+        fail(ex.getMessage());
+      }
+  }
+}

^ permalink raw reply	[flat|nested] 2+ messages in thread

* FYI: New TransferHandler test
@ 2006-10-28 10:31 Roman Kennke
  0 siblings, 0 replies; 2+ messages in thread
From: Roman Kennke @ 2006-10-28 10:31 UTC (permalink / raw)
  To: mauve-patches

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

This adds extensive test for TransferHandler.importData().

2006-10-28  Roman Kennke <kennke@aicas.com>

	* gnu/testlet/javax/swing/TransferHandler/importData.java:
	New test.

/Roman


[-- Attachment #2: patch.diff --]
[-- Type: text/x-patch, Size: 5917 bytes --]

Index: gnu/testlet/javax/swing/TransferHandler/importData.java
===================================================================
RCS file: gnu/testlet/javax/swing/TransferHandler/importData.java
diff -N gnu/testlet/javax/swing/TransferHandler/importData.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/TransferHandler/importData.java	28 Oct 2006 10:29:22 -0000
@@ -0,0 +1,221 @@
+/* importData.java -- Tests the TransferHandler importData() method
+   Copyright (C) 2006 Roman Kennke (kennke@aicas.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.4
+
+package gnu.testlet.javax.swing.TransferHandler;
+
+import java.awt.datatransfer.DataFlavor;
+import java.awt.datatransfer.Transferable;
+import java.awt.datatransfer.UnsupportedFlavorException;
+import java.io.IOException;
+
+import javax.swing.JComponent;
+import javax.swing.TransferHandler;
+
+import junit.framework.TestCase;
+import gnu.testlet.TestHarness;
+
+/**
+ * Tests the TransferHandler.importData() method.
+ */
+public class importData extends TestCase
+{
+
+  /**
+   * Implements test properties in JComponent.
+   */
+  public static class TestComponent extends JComponent
+  {
+    String property = null;
+    public void setTestProperty(String prop)
+    {
+      property = prop;
+    }
+    public String getTestProperty()
+    {
+      return property;
+    }
+  }
+
+  /**
+   * A Transferable used for our tests.
+   */
+  static class TestTransferable implements Transferable
+  {
+
+    public Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException, IOException
+    {
+      return "Hello World";
+    }
+
+    public DataFlavor[] getTransferDataFlavors()
+    {
+      try
+        {
+          DataFlavor flavor = new DataFlavor(DataFlavor.javaJVMLocalObjectMimeType
+                                             + "; class=java.lang.String");
+          return new DataFlavor[]{ flavor };
+        }
+      catch (ClassNotFoundException ex)
+        {
+          throw new InternalError();
+        }
+    }
+
+    public boolean isDataFlavorSupported(DataFlavor flavor)
+    {
+      return flavor.getPrimaryType().equals("application")
+             && flavor.getSubType().equals("x-java-jvm-local-objectref")
+             && flavor.getRepresentationClass().equals("java.lang.String");
+    }
+    
+  }
+
+  /**
+   * The component to which we transfer.
+   */
+  private JComponent component;
+
+  /**
+   * The transfer handler that we use.
+   */
+  private TransferHandler transferHandler;
+
+  /**
+   * The transferable that gets transferred.
+   */
+  private Transferable transferable;
+
+  /**
+   * Sets up the test case.
+   */
+  public void setUp()
+  {
+    component = new TestComponent();
+    transferHandler = new TransferHandler("testProperty");
+    transferable = new TestTransferable();
+  }
+
+  /**
+   * Tears down the test case.
+   */
+  public void tearDown()
+  {
+    component = null;
+    transferHandler = null;
+    transferable = null;
+  }
+
+  /**
+   * Tests a normal transfer.
+   */
+  public void testOK()
+  {
+    boolean ok = transferHandler.importData(component, transferable);
+    assertTrue(ok);
+    assertEquals(((TestComponent) component).getTestProperty(),
+                 "Hello World");
+  }
+
+  /**
+   * Tests a transfer with a transferable that does not support the correct
+   * flavor.
+   */
+  public void testWrongFlavor()
+  {
+    transferable = new TestTransferable()
+    {
+      public DataFlavor[] getTransferDataFlavors()
+      {
+        return new DataFlavor[0];
+      }
+    };
+    boolean ok = transferHandler.importData(component, transferable);
+    assertFalse(ok);
+    assertNull(((TestComponent) component).getTestProperty());
+  }
+
+  /**
+   * Tests a transfer to a component that doesn't have the correct property
+   * write method.
+   */
+  public void testInvalidWriter()
+  {
+    component = new JComponent()
+    {
+      public void setTestProperty(String prop, int i)
+      {
+        
+      }
+      public String getTestProperty()
+      {
+        return "test";
+      }
+    };
+    boolean ok = transferHandler.importData(component, transferable);
+    assertFalse(ok);
+  }
+
+  /**
+   * Tests a transfer to a component without the property writer.
+   */
+  public void testMissingPropertyWriter()
+  {
+    component = new JComponent()
+    {
+      public String getTestProperty()
+      {
+        return "test";
+      }
+    };
+    boolean ok = transferHandler.importData(component, transferable);
+    assertFalse(ok);
+  }
+
+  /**
+   * Tests a transfer to a component without the property reader.
+   */
+  public void testMissingPropertyReader()
+  {
+    component = new JComponent()
+    {
+      public void setTestProperty(String prop)
+      {
+        
+      }
+    };
+    boolean ok = transferHandler.importData(component, transferable);
+    assertFalse(ok);
+  }
+
+  /**
+   * Tests a transfer with a TransferHandler initialized with a null
+   * property.
+   */
+  public void testNullProperty()
+  {
+    transferHandler = new TransferHandler(null);
+    boolean ok = transferHandler.importData(component, transferable);
+    assertFalse(ok);
+  }
+
+}

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-10-28 10:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-10-17 15:24 FYI: New TransferHandler test Roman Kennke
2006-10-28 10:31 Roman Kennke

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).