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]

New Component tests


Here come two new tests that back up a recent patch for Component.

2006-07-07 Roman Kennke <kennke@aicas.com>

       * gnu/testlet/java/awt/Component/setFont.java: New file.
       * gnu/testlet/java/awt/Component/isValid.java: New file.

/Roman

/* setFont.java -- Checks how setFont() is supposed to work
   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.1

package gnu.testlet.java.awt.Component;

import java.awt.Component;
import java.awt.Font;
import java.awt.Frame;

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

public class setFont implements Testlet
{

  private boolean invalidated;

  private class TestComponent extends Component
  {
    public void invalidate()
    {
      super.invalidate();
      invalidated = true;
    }
  }

  public void test(TestHarness harness)
  {
    testInvalidate(harness);
  }

  private void testInvalidate(TestHarness h)
  {
    h.checkPoint("invalidate");
    TestComponent c = new TestComponent();

    // Test not showing.
    // Valid components get invalidated.
    c.validate();
    h.check(! c.isValid());
    invalidated = false;
    c.setFont(new Font("Dialog", Font.BOLD, 12));
    h.check(invalidated);

    // Invalid components don't get invalidated.
    h.check(!c.isValid());
    invalidated = false;
    c.setFont(new Font("Dialog", Font.BOLD, 12));
    h.check(! invalidated);

    // Test showing.
    Frame f = new Frame();
    f.add(c);
    f.setSize(100, 100);
    f.setVisible(true);

    h.check(c.isShowing());
    // Valid components get invalidated.
    c.validate();
    h.check(c.isValid());
    invalidated = false;
    c.setFont(new Font("Dialog", Font.BOLD, 12));
    h.check(invalidated);

    // Invalid components don't get invalidated.
    h.check(!c.isValid());
    invalidated = false;
    c.setFont(new Font("Dialog", Font.BOLD, 12));
    h.check(! invalidated);
    
  }
}
/* isValid.java -- Checks how isValid() is supposed to work
   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.1

package gnu.testlet.java.awt.Component;

import java.awt.Component;
import java.awt.Frame;

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

public class isValid implements Testlet
{

  public void test(TestHarness harness)
  {
    testShowing(harness);
    testNotShowing(harness);
  }

  private void testShowing(TestHarness h)
  {
    h.checkPoint("showing");
    Frame f = new Frame();
    Component c = new Component(){};
    f.add(c);
    f.setSize(100, 100);
    f.setVisible(true);

    c.invalidate();
    h.check(!c.isValid());
    c.validate();
    h.check(c.isValid());
  }

  private void testNotShowing(TestHarness h)
  {
    h.checkPoint("notShowing");

    Component c = new Component(){};

    c.invalidate();
    h.check(!c.isValid());
    c.validate();
    h.check(!c.isValid());
  }
}

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