blob: 85faba8d7423a902fdcd959e45edaa7cefc2eae3 [file] [log] [blame]
duke6e45e102007-12-01 00:00:00 +00001/*
2 * Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 */
23
24/*
25 @test
26 @bug 4811096
27 @summary Tests whether overlapping buttons mix correctly
28 @author anthony.petrov@...: area=awt.mixing
29 @library ../regtesthelpers
30 @build Util
31 @run main OverlappingButtons
32*/
33
34
35/**
36 * OverlappingButtons.java
37 *
38 * summary: Tests whether awt.Button and swing.JButton mix correctly
39 */
40
41import java.awt.*;
42import java.awt.event.*;
43import javax.swing.*;
44import test.java.awt.regtesthelpers.Util;
45
46
47
48public class OverlappingButtons
49{
50
51 //*** test-writer defined static variables go here ***
52
53 static volatile String testSeq = "";
54 final static String checkSeq = new String("010101");
55
56 private static void init()
57 {
58 //*** Create instructions for the user here ***
59
60 String[] instructions =
61 {
62 "This is an AUTOMATIC test, simply wait until it is done.",
63 "The result (passed or failed) will be shown in the",
64 "message window below."
65 };
66 Sysout.createDialog( );
67 Sysout.printInstructions( instructions );
68
69
70 // Create components
71 final Frame f = new Frame("Button-JButton mix test");
72 final Panel p = new Panel();
73 final Button heavy = new Button(" Heavyweight Button ");
74 final JButton light = new JButton(" LW Button ");
75
76 // Actions for the buttons add appropriate number to the test sequence
77 heavy.addActionListener(new java.awt.event.ActionListener()
78 {
79 public void actionPerformed(java.awt.event.ActionEvent e) {
80 p.setComponentZOrder(light, 0);
81 testSeq = testSeq + "0";
82 }
83 }
84 );
85
86 light.addActionListener(new java.awt.event.ActionListener()
87 {
88 public void actionPerformed(java.awt.event.ActionEvent e) {
89 p.setComponentZOrder(heavy, 0);
90 testSeq = testSeq + "1";
91 }
92 }
93 );
94
95 // Overlap the buttons
96 heavy.setBounds(30, 30, 200, 200);
97 light.setBounds(10, 10, 50, 50);
98
99 // Put the components into the frame
100 p.setLayout(null);
101 p.add(heavy);
102 p.add(light);
103 f.add(p);
104 f.setBounds(50, 50, 400, 400);
105 f.show();
106
107
108 Robot robot = Util.createRobot();
109 robot.setAutoDelay(20);
110
111 Util.waitForIdle(robot);
112
113 // Move the mouse pointer to the position where both
114 // buttons overlap
115 Point heavyLoc = heavy.getLocationOnScreen();
116 robot.mouseMove(heavyLoc.x + 5, heavyLoc.y + 5);
117
118 // Now perform the click at this point for 6 times
119 for (int i = 0; i < 6; ++i) {
120 robot.mousePress(InputEvent.BUTTON1_MASK);
121 robot.mouseRelease(InputEvent.BUTTON1_MASK);
122 Util.waitForIdle(robot);
123 }
124
125 Util.waitForIdle(robot);
126
127 // If the buttons are correctly mixed, the test sequence
128 // is equal to the check sequence.
129 if (testSeq.equals(checkSeq)) {
130 OverlappingButtons.pass();
131 } else {
132 OverlappingButtons.fail("The components changed their visible Z-order in a wrong sequence: '" + testSeq + "' instead of '" + checkSeq + "'");
133 }
134 }//End init()
135
136
137
138 /*****************************************************
139 * Standard Test Machinery Section
140 * DO NOT modify anything in this section -- it's a
141 * standard chunk of code which has all of the
142 * synchronisation necessary for the test harness.
143 * By keeping it the same in all tests, it is easier
144 * to read and understand someone else's test, as
145 * well as insuring that all tests behave correctly
146 * with the test harness.
147 * There is a section following this for test-
148 * classes
149 ******************************************************/
150 private static boolean theTestPassed = false;
151 private static boolean testGeneratedInterrupt = false;
152 private static String failureMessage = "";
153
154 private static Thread mainThread = null;
155
156 private static int sleepTime = 300000;
157
158 // Not sure about what happens if multiple of this test are
159 // instantiated in the same VM. Being static (and using
160 // static vars), it aint gonna work. Not worrying about
161 // it for now.
162 public static void main( String args[] ) throws InterruptedException
163 {
164 mainThread = Thread.currentThread();
165 try
166 {
167 init();
168 }
169 catch( TestPassedException e )
170 {
171 //The test passed, so just return from main and harness will
172 // interepret this return as a pass
173 return;
174 }
175 //At this point, neither test pass nor test fail has been
176 // called -- either would have thrown an exception and ended the
177 // test, so we know we have multiple threads.
178
179 //Test involves other threads, so sleep and wait for them to
180 // called pass() or fail()
181 try
182 {
183 Thread.sleep( sleepTime );
184 //Timed out, so fail the test
185 throw new RuntimeException( "Timed out after " + sleepTime/1000 + " seconds" );
186 }
187 catch (InterruptedException e)
188 {
189 //The test harness may have interrupted the test. If so, rethrow the exception
190 // so that the harness gets it and deals with it.
191 if( ! testGeneratedInterrupt ) throw e;
192
193 //reset flag in case hit this code more than once for some reason (just safety)
194 testGeneratedInterrupt = false;
195
196 if ( theTestPassed == false )
197 {
198 throw new RuntimeException( failureMessage );
199 }
200 }
201
202 }//main
203
204 public static synchronized void setTimeoutTo( int seconds )
205 {
206 sleepTime = seconds * 1000;
207 }
208
209 public static synchronized void pass()
210 {
211 Sysout.println( "The test passed." );
212 Sysout.println( "The test is over, hit Ctl-C to stop Java VM" );
213 //first check if this is executing in main thread
214 if ( mainThread == Thread.currentThread() )
215 {
216 //Still in the main thread, so set the flag just for kicks,
217 // and throw a test passed exception which will be caught
218 // and end the test.
219 theTestPassed = true;
220 throw new TestPassedException();
221 }
222 theTestPassed = true;
223 testGeneratedInterrupt = true;
224 mainThread.interrupt();
225 }//pass()
226
227 public static synchronized void fail()
228 {
229 //test writer didn't specify why test failed, so give generic
230 fail( "it just plain failed! :-)" );
231 }
232
233 public static synchronized void fail( String whyFailed )
234 {
235 Sysout.println( "The test failed: " + whyFailed );
236 Sysout.println( "The test is over, hit Ctl-C to stop Java VM" );
237 //check if this called from main thread
238 if ( mainThread == Thread.currentThread() )
239 {
240 //If main thread, fail now 'cause not sleeping
241 throw new RuntimeException( whyFailed );
242 }
243 theTestPassed = false;
244 testGeneratedInterrupt = true;
245 failureMessage = whyFailed;
246 mainThread.interrupt();
247 }//fail()
248
249}// class OverlappingButtons
250
251//This exception is used to exit from any level of call nesting
252// when it's determined that the test has passed, and immediately
253// end the test.
254class TestPassedException extends RuntimeException
255{
256}
257
258//*********** End Standard Test Machinery Section **********
259
260
261//************ Begin classes defined for the test ****************
262
263// if want to make listeners, here is the recommended place for them, then instantiate
264// them in init()
265
266/* Example of a class which may be written as part of a test
267class NewClass implements anInterface
268 {
269 static int newVar = 0;
270
271 public void eventDispatched(AWTEvent e)
272 {
273 //Counting events to see if we get enough
274 eventCount++;
275
276 if( eventCount == 20 )
277 {
278 //got enough events, so pass
279
280 OverlappingButtons.pass();
281 }
282 else if( tries == 20 )
283 {
284 //tried too many times without getting enough events so fail
285
286 OverlappingButtons.fail();
287 }
288
289 }// eventDispatched()
290
291 }// NewClass class
292
293*/
294
295
296//************** End classes defined for the test *******************
297
298
299
300
301/****************************************************
302 Standard Test Machinery
303 DO NOT modify anything below -- it's a standard
304 chunk of code whose purpose is to make user
305 interaction uniform, and thereby make it simpler
306 to read and understand someone else's test.
307 ****************************************************/
308
309/**
310 This is part of the standard test machinery.
311 It creates a dialog (with the instructions), and is the interface
312 for sending text messages to the user.
313 To print the instructions, send an array of strings to Sysout.createDialog
314 WithInstructions method. Put one line of instructions per array entry.
315 To display a message for the tester to see, simply call Sysout.println
316 with the string to be displayed.
317 This mimics System.out.println but works within the test harness as well
318 as standalone.
319 */
320
321class Sysout
322{
323 private static TestDialog dialog;
324
325 public static void createDialogWithInstructions( String[] instructions )
326 {
327 dialog = new TestDialog( new Frame(), "Instructions" );
328 dialog.printInstructions( instructions );
329 dialog.setVisible(true);
330 println( "Any messages for the tester will display here." );
331 }
332
333 public static void createDialog( )
334 {
335 dialog = new TestDialog( new Frame(), "Instructions" );
336 String[] defInstr = { "Instructions will appear here. ", "" } ;
337 dialog.printInstructions( defInstr );
338 dialog.setVisible(true);
339 println( "Any messages for the tester will display here." );
340 }
341
342
343 public static void printInstructions( String[] instructions )
344 {
345 dialog.printInstructions( instructions );
346 }
347
348
349 public static void println( String messageIn )
350 {
351 dialog.displayMessage( messageIn );
352 System.out.println(messageIn);
353 }
354
355}// Sysout class
356
357/**
358 This is part of the standard test machinery. It provides a place for the
359 test instructions to be displayed, and a place for interactive messages
360 to the user to be displayed.
361 To have the test instructions displayed, see Sysout.
362 To have a message to the user be displayed, see Sysout.
363 Do not call anything in this dialog directly.
364 */
365class TestDialog extends Dialog
366{
367
368 TextArea instructionsText;
369 TextArea messageText;
370 int maxStringLength = 80;
371
372 //DO NOT call this directly, go through Sysout
373 public TestDialog( Frame frame, String name )
374 {
375 super( frame, name );
376 int scrollBoth = TextArea.SCROLLBARS_BOTH;
377 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
378 add( "North", instructionsText );
379
380 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
381 add("Center", messageText);
382
383 pack();
384
385 setVisible(true);
386 }// TestDialog()
387
388 //DO NOT call this directly, go through Sysout
389 public void printInstructions( String[] instructions )
390 {
391 //Clear out any current instructions
392 instructionsText.setText( "" );
393
394 //Go down array of instruction strings
395
396 String printStr, remainingStr;
397 for( int i=0; i < instructions.length; i++ )
398 {
399 //chop up each into pieces maxSringLength long
400 remainingStr = instructions[ i ];
401 while( remainingStr.length() > 0 )
402 {
403 //if longer than max then chop off first max chars to print
404 if( remainingStr.length() >= maxStringLength )
405 {
406 //Try to chop on a word boundary
407 int posOfSpace = remainingStr.
408 lastIndexOf( ' ', maxStringLength - 1 );
409
410 if( posOfSpace <= 0 ) posOfSpace = maxStringLength - 1;
411
412 printStr = remainingStr.substring( 0, posOfSpace + 1 );
413 remainingStr = remainingStr.substring( posOfSpace + 1 );
414 }
415 //else just print
416 else
417 {
418 printStr = remainingStr;
419 remainingStr = "";
420 }
421
422 instructionsText.append( printStr + "\n" );
423
424 }// while
425
426 }// for
427
428 }//printInstructions()
429
430 //DO NOT call this directly, go through Sysout
431 public void displayMessage( String messageIn )
432 {
433 messageText.append( messageIn + "\n" );
434 System.out.println(messageIn);
435 }
436
437}// TestDialog class