Package gnu.testlet.javax.swing.text.PlainDocument

Source Code of gnu.testlet.javax.swing.text.PlainDocument.getText

/* getText.java -- Some checks for the getText() method in the PlainDocument
                    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: 1.2

package gnu.testlet.javax.swing.text.PlainDocument;

import gnu.testlet.TestHarness;
import gnu.testlet.Testlet;

import javax.swing.text.BadLocationException;
import javax.swing.text.PlainDocument;
import javax.swing.text.Segment;

public class getText implements Testlet
{
   
  /**
   * Runs the test using the specified harness.
   *
   * @param harness  the test harness (<code>null</code> not permitted).
   */
  public void test(TestHarness harness)     
  {
    testMethod1(harness);
    testMethod2(harness);
  }
 
  public void testMethod1(TestHarness harness)
  {
    harness.checkPoint("(int, int)");
    PlainDocument d = new PlainDocument();
   
    // check default result
    try
    {
      d.insertString(0, "XYZ", null);
      harness.check(d.getText(0, 3).equals("XYZ"));
    }
    catch (BadLocationException e)
    {
      harness.fail(e.toString());
    }
   
    // get the implicit newline
    try
    {
      harness.check(d.getText(0, 4).equals("XYZ\n"));
    }
    catch (BadLocationException e)
    {
      harness.fail(e.toString());
    }   

    // fail on next char
    try
    {
      d.getText(0, 5);
      harness.check(false);
    }
    catch (BadLocationException e)
    {
      harness.check(true);
    }   

    // add some more text
    try
    {
      d.insertString(0, "ABCDEFG", null);
    }
    catch (BadLocationException e)
    {
    }
    harness.check(d.getLength(), 10);
   
    // if index < 0 should get BadLocationException
    boolean pass = false;
    try
    {
      d.getText(-1, 3);
    }
    catch (BadLocationException e)
    {
      pass = true;
    }
    harness.check(pass);
   
    // if index > end of text should get BadLocationException
    pass = false;
    try
    {
      d.getText(99, 1);
    }
    catch (BadLocationException e)
    {
      pass = true;
    }
    harness.check(pass);
   
    // if len goes past end of range, should get BadLocationException
    pass = false;
    try
    {
      d.getText(0, 99);
    }
    catch (BadLocationException e)
    {
      pass = true;
    }
    harness.check(pass);
   
    // try a zero length string
    try
    {
      harness.check(d.getText(1, 0).equals(""));
    }
    catch (BadLocationException e)
    {
      harness.fail(e.toString());
    }
  }

  public void testMethod2(TestHarness harness)
  {
    harness.checkPoint("(int, int, Segment)");
    PlainDocument d = new PlainDocument();
    Segment seg = new Segment();
   
    // check default result
    try
    {
      d.getText(0, 1, seg);
    }
    catch (BadLocationException e)
    {
      // ignore - tests below will fail if this happens
    }
    harness.check(seg.offset, 0);
    harness.check(seg.count, 1);
    harness.check(seg.array[0], '\n');

    // if len goes past end of range, should get BadLocationException
    boolean pass = false;
    try
    {
      d.getText(0, 2, seg);
    }
    catch (BadLocationException e)
    {
      pass = true;
    }
    harness.check(pass);

    // add some more text
    try
    {
      d.insertString(0, "ABCDEFG", null);
    }
    catch (BadLocationException e)
    {
    }
    harness.check(d.getLength(), 7);
   
    // if index < 0 should get BadLocationException
    pass = false;
    try
    {
      d.getText(-1, 3, seg);
    }
    catch (BadLocationException e)
    {
      pass = true;
    }
    harness.check(pass);
   
    // if index > end of text should get BadLocationException
    pass = false;
    try
    {
      d.getText(99, 1, seg);
    }
    catch (BadLocationException e)
    {
      pass = true;
    }
    harness.check(pass);
   
    // if len goes past end of range, should get BadLocationException
    pass = false;
    try
    {
      d.getText(0, 99, seg);
    }
    catch (BadLocationException e)
    {
      pass = true;
    }
    harness.check(pass);
   
    // try a zero length string
    try
    {
      d.getText(1, 0, seg);
    }
    catch (BadLocationException e)
    {
    }
    harness.check(seg.offset, 1);
    harness.check(seg.count, 0);
   
    // what happens for null Segment
    pass = false;
    try
    {
      d.getText(0, 1, null);
    }
    catch (NullPointerException e)
    {
      pass = true;
    }
    catch (BadLocationException e)
    {
      // ignore
    }
    harness.check(pass);
   
    // what happens if we update the Segment array, does that change the
    // StringContent
    Segment seg2 = new Segment();
    Segment seg3 = new Segment();
    PlainDocument d2 = new PlainDocument();
    try
    {
      d2.insertString(0, "XYZ", null);
      d2.getText(0, 3, seg2);
      seg2.array[1] = '5';
      d2.getText(0, 3, seg3);
    }
    catch (BadLocationException e)
    {
      // ignore
    }
    harness.check(seg2.array[1], '5');
    harness.check(seg3.array[1], '5');
  }
}
TOP

Related Classes of gnu.testlet.javax.swing.text.PlainDocument.getText

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.