JDK-5048934 : REGRESSION: Regression-test java/awt/KeyboardFocusmanager/TypeAhead/TestDialogTy
  • Type: Bug
  • Component: client-libs
  • Sub-Component: java.awt
  • Affected Version: 5.0
  • Priority: P2
  • Status: Closed
  • Resolution: Fixed
  • OS: solaris_8
  • CPU: x86
  • Submitted: 2004-05-18
  • Updated: 2006-01-20
  • Resolved: 2004-06-06
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
5.0 b55Fixed
Related Reports
Relates :  
Relates :  
Description
Name: aaR10208			Date: 05/18/2004


Filed By       : J2SE-SQA [###@###.###
JDK            : JDK1.5.0-b51 (passed with jdk1.4.2)
Testbase       : Regression-test
Platform[s]    : Solaris 8 (x86) (O/W)
switch/Mode    : generic
Falling test[s]: java/awt/KeyboardFocusmanager/TypeAhead/TestDialogTypeAhead.html

Regression-test java/awt/KeyboardFocusmanager/TypeAhead/TestDialogTypeAhead.html test fails with jdk1.5.0-b51.

Test source location:
=====================
/java/re/jdk/1.5.0/promoted/all/b51/ws/j2se/test/java/awt/KeyboardFocusmanager/TypeAhead/TestDialogTypeAhead.html

jtr file location:
==================
/net/jtgb4u4c.sfbay/export/sail15/results.2/tiger/b51/regtest/x86/Solaris_8_x86_O_W__linux-10/workDir/test/java/awt/KeyboardFocusmanager/TypeAhead/TestDialogTypeAhead.jtr

How to reproduce:
=================
Run the following script (you may need to change its variables)

--- script start ---
#!/bin/sh
RESULT_DIR=`pwd`
WORK_DIR=$RESULT_DIR/workDir/test
REPORT_DIR=$RESULT_DIR/reportDir

#Paths in Java Software:
JT_HOME="/java/re/jct-tools/3.1.2/archive/fcs/binaries"
JEMMY_JAR="/net/jdk.sfbay/export/jpse04/Jemmy/jemmy.jar"
JAVA_HOME="/java/re/jdk/1.5.0/promoted/all/b51/binaries/solaris-i586"
TEST_BASE_PATH="/java/re/jdk/1.5.0/promoted/all/b51/ws/j2se/test"

#Alternative paths outside Java Software
#JT_HOME="/net/koori.sfbay/onestop/jct-tools/3.1.2/archive/fcs/binaries"
#JEMMY_JAR="/net/jdk.sfbay/export/jpse04/Jemmy/jemmy.jar"
#JAVA_HOME="/net/koori.sfbay/onestop/jdk/1.5.0/promoted/all/b51/binaries/solaris-i586"
#TEST_BASE_PATH="/net/koori.sfbay/onestop/jdk/1.5.0/promoted/all/b51/ws/j2se/test"

#Alternative paths for the NSK site:
#JT_HOME="/net/linux-15/export/home/java/jct"
#JEMMY_JAR="$JT_HOME/jemmy/jemmy.jar"
#JAVA_HOME="/net/linux-15/export/home/java/jdk1.5.0/x86"
#TEST_BASE_PATH="/net/linux-15/export/home/java/regtest.tiger/test"


TESTVMOPTS="-client"
CLASSPATH="$JT_HOME/classes:$JT_HOME/lib/javatest.jar:$JT_HOME/lib/jtreg.jar"

TEST="java/awt/KeyboardFocusmanager/TypeAhead/TestDialogTypeAhead.html"

mkdir -p $WORK_DIR/scratch 2>&1
mkdir -p $WORK_DIR/jtData 2>&1
mkdir -p $REPORT_DIR 2>&1

#rm $WORK_DIR/jtData/ResultCache.jtw 2>&1

cd $WORK_DIR/scratch

$JAVA_HOME/bin/java -showversion -server -cp $CLASSPATH -DenvVars=TESTJAVAHOME=$JAVA_HOME,TESTVMOPTS=$TESTVMOPTS,DISPLAY=$DISPLAY,HOME=$HOME/.regtest,PATH=/bin:/usr/bin,CPAPPEND=$JEMMY_JAR,TZ=,LC_ALL=en_US,LC_CTYPE=en_US,LANG=en_US,LPDEST= -DDISPLAY=$DISPLAY -DlocalHost=`uname -n` -Dprogram=jtreg com.sun.javatest.regtest.Main -v default -batch -params  -w "$WORK_DIR" -r "$REPORT_DIR" -t "$TEST_BASE_PATH" "$TEST_BASE_PATH/$TEST"

--- script end ---


Test output (jtr part):
=======================
----------System.err:(7/359)----------
b is shown
b is focused
java.lang.RuntimeException: Type-ahead doesn't work
	at TestDialogTypeAhead.start(TestDialogTypeAhead.java:141)
	at com.sun.javatest.regtest.AppletWrapper$AppletThread.run(AppletWrapper.java:133)
	at java.lang.Thread.run(Thread.java:595)
STATUS:Failed.Applet thread threw exception: java.lang.RuntimeException: Type-ahead doesn't work
result: Failed. Execution failed: Applet thread threw exception: java.lang.RuntimeException: Type-ahead doesn't work


test result: Failed. Execution failed: Applet thread threw exception: java.lang.RuntimeException: Type-ahead doesn't work


Specific machine info:
======================
Hostname: linux-10
OS: Solaris 8 (x86) (O/W)



======================================================================

Comments
CONVERTED DATA BugTraq+ Release Management Values COMMIT TO FIX: tiger-rc FIXED IN: tiger-rc INTEGRATED IN: tiger-b55 tiger-rc VERIFIED IN: tiger-beta2
17-09-2004

SUGGESTED FIX Name: atR10251 Date: 05/25/2004 ------- TestDialogTypeAhead.java ------- *** /tmp/sccs.nhaG20 Tue May 25 15:11:48 2004 --- TestDialogTypeAhead.java Tue May 25 15:11:18 2004 *************** *** 49,58 **** --- 49,59 ---- static Dialog d; static Button ok; static Semaphore pressSema = new Semaphore(); static Semaphore robotSema = new Semaphore(); static volatile boolean gotFocus = false; + static Robot robot; public void init() { //Create instructions for the user here, as well as set up // the environment -- set the layout manager, add buttons, // etc. *************** *** 93,103 **** f.pack(); b.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { System.err.println("B pressed"); robotSema.raise(); ! d.setVisible(true); } }); }//End init() --- 94,113 ---- f.pack(); b.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { System.err.println("B pressed"); robotSema.raise(); ! ! EventQueue.invokeLater(new Runnable() { ! public void run() { ! waitTillShown(d); ! TestDialogTypeAhead.this.d.toFront(); ! TestDialogTypeAhead.this.moveMouseOver(d); ! } ! }); ! ! d.setVisible(true); } }); }//End init() *************** *** 105,124 **** { //Get things going. Request focus, set size, et cetera setSize (200,200); setVisible(true); validate(); - Robot robot = null; try { robot = new Robot(); } catch (Exception e) { throw new RuntimeException("Can't create robot:" + e); } f.setVisible(true); waitTillShown(b); System.err.println("b is shown"); waitForIdle(); makeFocused(b); waitForIdle(); System.err.println("b is focused"); --- 115,135 ---- { //Get things going. Request focus, set size, et cetera setSize (200,200); setVisible(true); validate(); try { robot = new Robot(); } catch (Exception e) { throw new RuntimeException("Can't create robot:" + e); } f.setVisible(true); waitTillShown(b); System.err.println("b is shown"); + f.toFront(); + moveMouseOver(f); waitForIdle(); makeFocused(b); waitForIdle(); System.err.println("b is focused"); *************** *** 140,149 **** --- 151,166 ---- if (!pressSema.getState()) { throw new RuntimeException("Type-ahead doesn't work"); } }// start() + + private void moveMouseOver(Container c) { + Point p = c.getLocationOnScreen(); + Dimension d = c.getSize(); + robot.mouseMove(p.x + (int)(d.getWidth()/2), p.y + (int)(d.getHeight()/2)); + } private void waitForIdle() { try { Toolkit.getDefaultToolkit().sync(); sun.awt.SunToolkit.flushPendingEvents(); EventQueue.invokeAndWait( new Runnable() { ###@###.### 2004-05-25 ======================================================================
25-05-2004

EVALUATION Name: atR10251 Date: 05/19/2004 The problem is that the test doesn't take into acount O/W's settings and behaviour. When the test shows a toplevel it supposes it to be focused. O/W doesn't provide this. A solution may be to call <toFront> on the toplevel shown. In case of "followmouse" mode moving mouse over the toplevel makes sense either. ###@###.### 2004-05-19 ======================================================================
19-05-2004