This is the mail archive of the mauve-patches@sourceware.org mailing list for the Mauve project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: New textfield tests


Hi,

I committed two new tests for JTextField and PlainDocument.

2005-10-27  Roman Kennke  <kennke@aicas.com>

        * gnu/testlet/javax/swing/JTextField/createDefaultModel.java:
        New test.
        * gnu/testlet/javax/swing/text/PlainDocument/insertString.java:
        New test.

/Roman
Index: gnu/testlet/javax/swing/JTextField/createDefaultModel.java
===================================================================
RCS file: gnu/testlet/javax/swing/JTextField/createDefaultModel.java
diff -N gnu/testlet/javax/swing/JTextField/createDefaultModel.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/JTextField/createDefaultModel.java	27 Oct 2005 14:28:04 -0000
@@ -0,0 +1,71 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2005 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, 59 Temple Place - Suite 330,
+// Boston, MA 02111-1307, USA.
+
+package gnu.testlet.javax.swing.JTextField;
+
+import javax.swing.JTextField;
+import javax.swing.text.Document;
+import javax.swing.text.PlainDocument;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+/**
+ * Checks if the method createDefaultModel in JTextField returns the correct
+ * value. It must be a document of type javax.swing.text.PlainDocument.
+ *
+ * @author Roman Kennke (kennke@aicas.com)
+ */
+public class createDefaultModel implements Testlet
+{
+
+  /**
+   * A testclass that overrides the protected method.
+   *
+   * @author Roman Kennke (kennke@aicas.com)
+   */
+  static class TestTextField extends JTextField
+  {
+    /**
+     * Overridden to make this method publicly accessible.
+     *
+     * @return the created document
+     */
+    public Document createDefaultModel()
+    {
+      return super.createDefaultModel();
+    }
+  }
+
+  /**
+   * Starts the testrun.
+   *
+   * @param harness the test harness to use
+   */
+  public void test(TestHarness harness)
+  {
+    TestTextField tf = new TestTextField();
+    Document doc = tf.createDefaultModel();
+    harness.check(doc.getClass(), PlainDocument.class);
+    harness.check(doc.getProperty("filterNewlines"), null);
+  }
+
+}
Index: gnu/testlet/javax/swing/text/PlainDocument/insertString.java
===================================================================
RCS file: gnu/testlet/javax/swing/text/PlainDocument/insertString.java
diff -N gnu/testlet/javax/swing/text/PlainDocument/insertString.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/text/PlainDocument/insertString.java	27 Oct 2005 14:28:04 -0000
@@ -0,0 +1,110 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2005 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, 59 Temple Place - Suite 330,
+// Boston, MA 02111-1307, USA.
+
+package gnu.testlet.javax.swing.text.PlainDocument;
+
+import javax.swing.text.AbstractDocument;
+import javax.swing.text.BadLocationException;
+import javax.swing.text.Element;
+import javax.swing.text.PlainDocument;
+import javax.swing.text.SimpleAttributeSet;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+/**
+ * Tests if insertString in PlainDocument works correctly.
+ *
+ * @author Roman Kennke (kennke@aicas.com)
+ */
+public class insertString implements Testlet
+{
+
+  /**
+   * Starts the test run.
+   *
+   * @param harness the test harness to use
+   */
+  public void test(TestHarness harness)
+  {
+    testNewline(harness);
+    testFilterNewline(harness);
+  }
+
+  /**
+   * Tests inserting a string with a newline. This should lead to a document
+   * structure with one BranchElement as root, and two LeafElement as children.
+   *
+   * @param harness the test harness to use
+   */
+  private void testNewline(TestHarness harness)
+  {
+    PlainDocument doc = new PlainDocument();
+    try
+      {
+        doc.insertString(0, "Hello\nWorld", new SimpleAttributeSet());
+      }
+    catch (BadLocationException ex)
+      {
+        harness.fail("BadLocationException");
+      }
+    Element root = doc.getRootElements()[0];
+    harness.check(root instanceof AbstractDocument.BranchElement);
+    harness.check(root.getElementCount(), 2);
+    Element el1 = root.getElement(0);
+    harness.check(el1 instanceof AbstractDocument.LeafElement);
+    harness.check(el1.getStartOffset(), 0);
+    harness.check(el1.getEndOffset(), 6);
+    Element el2 = root.getElement(1);
+    harness.check(el2 instanceof AbstractDocument.LeafElement);
+    harness.check(el2.getStartOffset(), 6);
+    harness.check(el2.getEndOffset(), 12);
+  }
+
+  /**
+   * Tests inserting a string with a newline with the filterNewLine property
+   * set to Boolean.TRUE. This should lead to a document
+   * structure with one BranchElement as root, and one LeafElement as child,
+   * spanning the whole content.
+   *
+   * @param harness the test harness to use
+   */
+  private void testFilterNewline(TestHarness harness)
+  {
+    PlainDocument doc = new PlainDocument();
+    doc.putProperty("filterNewlines", Boolean.TRUE);
+    try
+      {
+        doc.insertString(0, "Hello\nWorld", new SimpleAttributeSet());
+      }
+    catch (BadLocationException ex)
+      {
+        harness.fail("BadLocationException");
+      }
+    Element root = doc.getRootElements()[0];
+    harness.check(root instanceof AbstractDocument.BranchElement);
+    harness.check(root.getElementCount(), 1);
+    Element el1 = root.getElement(0);
+    harness.check(el1 instanceof AbstractDocument.LeafElement);
+    harness.check(el1.getStartOffset(), 0);
+    harness.check(el1.getEndOffset(), 12);
+  }
+}

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]