105N/A/*
2362N/A * Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
105N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
105N/A *
105N/A * This code is free software; you can redistribute it and/or modify it
105N/A * under the terms of the GNU General Public License version 2 only, as
105N/A * published by the Free Software Foundation.
105N/A *
105N/A * This code is distributed in the hope that it will be useful, but WITHOUT
105N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
105N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
105N/A * version 2 for more details (a copy is included in the LICENSE file that
105N/A * accompanied this code).
105N/A *
105N/A * You should have received a copy of the GNU General Public License version
105N/A * 2 along with this work; if not, write to the Free Software Foundation,
105N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
105N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
105N/A */
105N/A
105N/A/*
105N/A @test
105N/A @bug 6581927
105N/A @summary Non-focusable frame should honor the size of the frame buttons/decorations when resizing
105N/A @library ../../regtesthelpers
105N/A @build Util
105N/A @author anthony.petrov@...: area=awt.toplevel
105N/A @run main NonFocusableResizableTooSmall
105N/A*/
105N/A
105N/A/**
105N/A * NonFocusableResizableTooSmall.java
105N/A *
105N/A * summary: Non-focusable frame should honor the size of the frame buttons/decorations when resizing
105N/A */
105N/A
105N/Aimport java.awt.*;
105N/Aimport java.awt.event.*;
105N/Aimport test.java.awt.regtesthelpers.Util;
105N/A
105N/Apublic class NonFocusableResizableTooSmall
105N/A{
105N/A
105N/A //*** test-writer defined static variables go here ***
105N/A
105N/A
105N/A private static void init()
105N/A {
105N/A //*** Create instructions for the user here ***
105N/A
105N/A String[] instructions =
105N/A {
105N/A "This is an AUTOMATIC test, simply wait until it is done.",
105N/A "The result (passed or failed) will be shown in the",
105N/A "message window below."
105N/A };
105N/A Sysout.createDialog( );
105N/A Sysout.printInstructions( instructions );
105N/A
105N/A final Frame frame = new Frame();
105N/A frame.setFocusableWindowState(false);
105N/A frame.setSize(200, 100);
105N/A frame.setVisible(true);
105N/A
105N/A final Robot robot = Util.createRobot();
105N/A robot.setAutoDelay(20);
105N/A
105N/A // To be sure the window is shown and packed
105N/A Util.waitForIdle(robot);
105N/A
105N/A final Insets insets = frame.getInsets();
105N/A System.out.println("The insets of the frame: " + insets);
105N/A if (insets.right == 0 || insets.bottom == 0) {
105N/A System.out.println("The test environment must have non-zero right & bottom insets!");
105N/A pass();
105N/A return;
105N/A }
105N/A
105N/A // Let's move the mouse pointer to the bottom-right coner of the frame (the "size-grip")
105N/A final Rectangle bounds1 = frame.getBounds();
105N/A System.out.println("The bounds before resizing: " + bounds1);
105N/A
105N/A robot.mouseMove(bounds1.x + bounds1.width - 1, bounds1.y + bounds1.height - 1);
105N/A
105N/A // ... and start resizing to some very small
105N/A robot.mousePress( InputEvent.BUTTON1_MASK );
105N/A
105N/A // Now resize the frame so that the width is smaller
105N/A // than the widths of the left and the right borders.
105N/A // The sum of widths of the icon of the frame + the control-buttons
105N/A // (close, minimize, etc.) should be definitely larger!
105N/A robot.mouseMove(bounds1.x + insets.left + insets.right - 5, bounds1.y + bounds1.height - 1);
105N/A Util.waitForIdle(robot);
105N/A
105N/A robot.mouseRelease( InputEvent.BUTTON1_MASK );
105N/A
105N/A Util.waitForIdle(robot);
105N/A
105N/A // Check the current bounds of the frame
105N/A final Rectangle bounds2 = frame.getBounds();
105N/A System.out.println("The bounds after resizing: " + bounds2);
105N/A
105N/A if (bounds2.width <= (insets.left + insets.right)) {
105N/A fail("The frame has been resized to very small.");
105N/A }
105N/A pass();
105N/A }//End init()
105N/A
105N/A
105N/A
105N/A /*****************************************************
105N/A * Standard Test Machinery Section
105N/A * DO NOT modify anything in this section -- it's a
105N/A * standard chunk of code which has all of the
105N/A * synchronisation necessary for the test harness.
105N/A * By keeping it the same in all tests, it is easier
105N/A * to read and understand someone else's test, as
105N/A * well as insuring that all tests behave correctly
105N/A * with the test harness.
105N/A * There is a section following this for test-
105N/A * classes
105N/A ******************************************************/
105N/A private static boolean theTestPassed = false;
105N/A private static boolean testGeneratedInterrupt = false;
105N/A private static String failureMessage = "";
105N/A
105N/A private static Thread mainThread = null;
105N/A
105N/A private static int sleepTime = 300000;
105N/A
105N/A // Not sure about what happens if multiple of this test are
105N/A // instantiated in the same VM. Being static (and using
105N/A // static vars), it aint gonna work. Not worrying about
105N/A // it for now.
105N/A public static void main( String args[] ) throws InterruptedException
105N/A {
105N/A mainThread = Thread.currentThread();
105N/A try
105N/A {
105N/A init();
105N/A }
105N/A catch( TestPassedException e )
105N/A {
105N/A //The test passed, so just return from main and harness will
105N/A // interepret this return as a pass
105N/A return;
105N/A }
105N/A //At this point, neither test pass nor test fail has been
105N/A // called -- either would have thrown an exception and ended the
105N/A // test, so we know we have multiple threads.
105N/A
105N/A //Test involves other threads, so sleep and wait for them to
105N/A // called pass() or fail()
105N/A try
105N/A {
105N/A Thread.sleep( sleepTime );
105N/A //Timed out, so fail the test
105N/A throw new RuntimeException( "Timed out after " + sleepTime/1000 + " seconds" );
105N/A }
105N/A catch (InterruptedException e)
105N/A {
105N/A //The test harness may have interrupted the test. If so, rethrow the exception
105N/A // so that the harness gets it and deals with it.
105N/A if( ! testGeneratedInterrupt ) throw e;
105N/A
105N/A //reset flag in case hit this code more than once for some reason (just safety)
105N/A testGeneratedInterrupt = false;
105N/A
105N/A if ( theTestPassed == false )
105N/A {
105N/A throw new RuntimeException( failureMessage );
105N/A }
105N/A }
105N/A
105N/A }//main
105N/A
105N/A public static synchronized void setTimeoutTo( int seconds )
105N/A {
105N/A sleepTime = seconds * 1000;
105N/A }
105N/A
105N/A public static synchronized void pass()
105N/A {
105N/A Sysout.println( "The test passed." );
105N/A Sysout.println( "The test is over, hit Ctl-C to stop Java VM" );
105N/A //first check if this is executing in main thread
105N/A if ( mainThread == Thread.currentThread() )
105N/A {
105N/A //Still in the main thread, so set the flag just for kicks,
105N/A // and throw a test passed exception which will be caught
105N/A // and end the test.
105N/A theTestPassed = true;
105N/A throw new TestPassedException();
105N/A }
105N/A theTestPassed = true;
105N/A testGeneratedInterrupt = true;
105N/A mainThread.interrupt();
105N/A }//pass()
105N/A
105N/A public static synchronized void fail()
105N/A {
105N/A //test writer didn't specify why test failed, so give generic
105N/A fail( "it just plain failed! :-)" );
105N/A }
105N/A
105N/A public static synchronized void fail( String whyFailed )
105N/A {
105N/A Sysout.println( "The test failed: " + whyFailed );
105N/A Sysout.println( "The test is over, hit Ctl-C to stop Java VM" );
105N/A //check if this called from main thread
105N/A if ( mainThread == Thread.currentThread() )
105N/A {
105N/A //If main thread, fail now 'cause not sleeping
105N/A throw new RuntimeException( whyFailed );
105N/A }
105N/A theTestPassed = false;
105N/A testGeneratedInterrupt = true;
105N/A failureMessage = whyFailed;
105N/A mainThread.interrupt();
105N/A }//fail()
105N/A
105N/A}// class NonFocusableResizableTooSmall
105N/A
105N/A//This exception is used to exit from any level of call nesting
105N/A// when it's determined that the test has passed, and immediately
105N/A// end the test.
105N/Aclass TestPassedException extends RuntimeException
105N/A{
105N/A}
105N/A
105N/A//*********** End Standard Test Machinery Section **********
105N/A
105N/A
105N/A//************ Begin classes defined for the test ****************
105N/A
105N/A// if want to make listeners, here is the recommended place for them, then instantiate
105N/A// them in init()
105N/A
105N/A/* Example of a class which may be written as part of a test
105N/Aclass NewClass implements anInterface
105N/A {
105N/A static int newVar = 0;
105N/A
105N/A public void eventDispatched(AWTEvent e)
105N/A {
105N/A //Counting events to see if we get enough
105N/A eventCount++;
105N/A
105N/A if( eventCount == 20 )
105N/A {
105N/A //got enough events, so pass
105N/A
105N/A NonFocusableResizableTooSmall.pass();
105N/A }
105N/A else if( tries == 20 )
105N/A {
105N/A //tried too many times without getting enough events so fail
105N/A
105N/A NonFocusableResizableTooSmall.fail();
105N/A }
105N/A
105N/A }// eventDispatched()
105N/A
105N/A }// NewClass class
105N/A
105N/A*/
105N/A
105N/A
105N/A//************** End classes defined for the test *******************
105N/A
105N/A
105N/A
105N/A
105N/A/****************************************************
105N/A Standard Test Machinery
105N/A DO NOT modify anything below -- it's a standard
105N/A chunk of code whose purpose is to make user
105N/A interaction uniform, and thereby make it simpler
105N/A to read and understand someone else's test.
105N/A ****************************************************/
105N/A
105N/A/**
105N/A This is part of the standard test machinery.
105N/A It creates a dialog (with the instructions), and is the interface
105N/A for sending text messages to the user.
105N/A To print the instructions, send an array of strings to Sysout.createDialog
105N/A WithInstructions method. Put one line of instructions per array entry.
105N/A To display a message for the tester to see, simply call Sysout.println
105N/A with the string to be displayed.
105N/A This mimics System.out.println but works within the test harness as well
105N/A as standalone.
105N/A */
105N/A
105N/Aclass Sysout
105N/A{
105N/A private static TestDialog dialog;
105N/A
105N/A public static void createDialogWithInstructions( String[] instructions )
105N/A {
105N/A dialog = new TestDialog( new Frame(), "Instructions" );
105N/A dialog.printInstructions( instructions );
105N/A dialog.setVisible(true);
105N/A println( "Any messages for the tester will display here." );
105N/A }
105N/A
105N/A public static void createDialog( )
105N/A {
105N/A dialog = new TestDialog( new Frame(), "Instructions" );
105N/A String[] defInstr = { "Instructions will appear here. ", "" } ;
105N/A dialog.printInstructions( defInstr );
105N/A dialog.setVisible(true);
105N/A println( "Any messages for the tester will display here." );
105N/A }
105N/A
105N/A
105N/A public static void printInstructions( String[] instructions )
105N/A {
105N/A dialog.printInstructions( instructions );
105N/A }
105N/A
105N/A
105N/A public static void println( String messageIn )
105N/A {
105N/A dialog.displayMessage( messageIn );
105N/A System.out.println(messageIn);
105N/A }
105N/A
105N/A}// Sysout class
105N/A
105N/A/**
105N/A This is part of the standard test machinery. It provides a place for the
105N/A test instructions to be displayed, and a place for interactive messages
105N/A to the user to be displayed.
105N/A To have the test instructions displayed, see Sysout.
105N/A To have a message to the user be displayed, see Sysout.
105N/A Do not call anything in this dialog directly.
105N/A */
105N/Aclass TestDialog extends Dialog
105N/A{
105N/A
105N/A TextArea instructionsText;
105N/A TextArea messageText;
105N/A int maxStringLength = 80;
105N/A
105N/A //DO NOT call this directly, go through Sysout
105N/A public TestDialog( Frame frame, String name )
105N/A {
105N/A super( frame, name );
105N/A int scrollBoth = TextArea.SCROLLBARS_BOTH;
105N/A instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
105N/A add( "North", instructionsText );
105N/A
105N/A messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
105N/A add("Center", messageText);
105N/A
105N/A pack();
105N/A
105N/A setVisible(true);
105N/A }// TestDialog()
105N/A
105N/A //DO NOT call this directly, go through Sysout
105N/A public void printInstructions( String[] instructions )
105N/A {
105N/A //Clear out any current instructions
105N/A instructionsText.setText( "" );
105N/A
105N/A //Go down array of instruction strings
105N/A
105N/A String printStr, remainingStr;
105N/A for( int i=0; i < instructions.length; i++ )
105N/A {
105N/A //chop up each into pieces maxSringLength long
105N/A remainingStr = instructions[ i ];
105N/A while( remainingStr.length() > 0 )
105N/A {
105N/A //if longer than max then chop off first max chars to print
105N/A if( remainingStr.length() >= maxStringLength )
105N/A {
105N/A //Try to chop on a word boundary
105N/A int posOfSpace = remainingStr.
105N/A lastIndexOf( ' ', maxStringLength - 1 );
105N/A
105N/A if( posOfSpace <= 0 ) posOfSpace = maxStringLength - 1;
105N/A
105N/A printStr = remainingStr.substring( 0, posOfSpace + 1 );
105N/A remainingStr = remainingStr.substring( posOfSpace + 1 );
105N/A }
105N/A //else just print
105N/A else
105N/A {
105N/A printStr = remainingStr;
105N/A remainingStr = "";
105N/A }
105N/A
105N/A instructionsText.append( printStr + "\n" );
105N/A
105N/A }// while
105N/A
105N/A }// for
105N/A
105N/A }//printInstructions()
105N/A
105N/A //DO NOT call this directly, go through Sysout
105N/A public void displayMessage( String messageIn )
105N/A {
105N/A messageText.append( messageIn + "\n" );
105N/A System.out.println(messageIn);
105N/A }
105N/A
105N/A}// TestDialog class