Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4928748

Regression-test .../JTabbedPane/4703690/bug4703690.java fails with Tiger-b21

XMLWordPrintable

    • b28
    • generic
    • generic



      Name: vsR10238 Date: 09/26/2003


      Filed By : J2SE-SQA [###@###.###
      JDK : JDK1.5.0-b21 (passes with 1.5.0-b20, fails with JDK1.4.2-b28)
      Testbase : Regression-test
      Platform[s] : all
      Falling test[s]:
               javax/swing/JTabbedPane/4703690/bug4703690.java

      Regression-test javax/swing/JTabbedPane/4703690/bug4703690.java test fails with JDK1.5.0-b21
      on all platforms. The test passes with JDK1.5.0-b20.

      The test creates two tabs, inserts two buttons into the first one, sets focus onto the second button,
      then selects the second tab, then selects the first tab, and checks if the focus is set onto the first button.

      I tried to exclude usage of robot from the test and ran the test with Tiger-b21.
      "Button 1" was focused as expected after I clicked on the first tab (and FOCUS_GAINED event was also received for Button 1).

      Then I commented out the code that clicks on the first tab from ChangeListener.stateChanged as follows:

      tabbedPane.addChangeListener(new ChangeListener() {
      public void stateChanged(ChangeEvent e) {
      if (tabbedPane.getSelectedIndex()==1) {
      SwingUtilities.invokeLater(new Runnable() {
      public void run() {
      try {
      Point p = tabbedPane.getLocationOnScreen();
      Rectangle rect = tabbedPane.getBoundsAt(0);
      /*
      robot.mouseMove(p.x+rect.x+rect.width/2,
      p.y+rect.y+rect.height/2);
      robot.mousePress(InputEvent.BUTTON1_MASK);
      robot.mouseRelease(InputEvent.BUTTON1_MASK);
      */
      } catch(Exception ex) {
      ex.printStackTrace();
      }

      I manually clicked on the first tab when it was expected and the test passed.

      BTW, there is a typo in the test error result string: "Burron 1"


      Test source location:
      =====================
      /java/re/jdk/1.5.0/promoted/latest/ws/j2se/test/javax/swing/JTabbedPane/4703690/bug4703690.java

      jtr file location:
      ==================
      /net/jtgb4u4c.sfbay/export/sail15/results.2/tiger/b21/regtest/win32/win2000_smp_linux-22/workDir/test/javax/swing/JTabbedPane/4703690/bug4703690.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

      #KOORI_ONESTOP is your path to koori.sfbay/onestop (/net/koori/onestop, /java/re)
      KOORI_ONESTOP="z:"
      #JPSE04 is your path to /net/jdk/export/jpse04
      JPSE04="x:"

      #JT_HOME="h:/java/jct"
      JT_HOME="$KOORI_ONESTOP/jct-tools/3.1.2/archive/fcs/binaries"
      #JEMMY_JAR="$JT_HOME/jemmy/jemmy.jar"
      JEMMY_JAR="$JPSE04/Jemmy/jemmy.jar"
      #JAVA_HOME="h:/java/jdk1.5.0/win32"
      JAVA_HOME="$KOORI_ONESTOP/jdk/1.5.0/promoted/all/b21/binaries/windows-i586"

      #TEST_BASE_PATH="h:/java/regtest.tiger/test"
      TEST_BASE_PATH="$KOORI_ONESTOP/jdk/1.5.0/promoted/all/b21/ws/j2se/test"


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

      TEST="javax/swing/JTabbedPane/4703690/bug4703690.java"

      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 -server -cp $CLASSPATH -DenvVars=TESTJAVAHOME=$JAVA_HOME,TESTVMOPTS=$TESTVMOPTS,DISPLAY=:0,windir=$windir,SystemRoot=$SystemRoot,PATH=${SHELL%/*},CPAPPEND=$JEMMY_JAR,TZ=,LC_ALL=en_US,LC_CTYPE=en_US,LANG=en_US,LPDEST= -DDISPLAY=:0 -DlocalHost="linux-22" -Dprogram=jtreg com.sun.javatest.regtest.Main -a -v default -batch -params -w "$WORK_DIR" -r "$REPORT_DIR" -t "$TEST_BASE_PATH" "$TEST_BASE_PATH/$TEST"

      --- script end ---

      Script output:
      ==============

      Test output (jtr part):
      =======================
      ----------System.out:(0/0)----------
      ----------System.err:(0/0)----------
      result: Passed. Compilation successful

      #section:build
      ----------messages:(3/97)----------
      command: build bug4703690
      reason: Named class compiled on demand
      elapsed time (seconds): 0.0
      result: Passed. No need to compile: bug4703690.java

      #section:applet
      ----------messages:(3/124)----------
      command: applet bug4703690.html
      reason: User specified action: run applet bug4703690.html
      elapsed time (seconds): 4.359
      ----------System.out:(0/0)----------
      ----------System.err:(5/414)----------
      java.lang.Error: JTabbedPane didn't focus the proper component ("Burron 1") at the tab "Tab one"
      at bug4703690.destroy(bug4703690.java:110)
      at com.sun.javatest.regtest.AppletWrapper$AppletThread.run(AppletWrapper.java:156)
      at java.lang.Thread.run(Thread.java:549)
      STATUS:Failed.Applet thread threw exception: java.lang.Error: JTabbedPane didn't focus the proper component ("Burron 1") at the tab "Tab one"
      result: Failed. Execution failed: Applet thread threw exception: java.lang.Error: JTabbedPane didn't focus the proper component ("Burron 1") at the tab "Tab one"


      test result: Failed. Execution failed: Applet thread threw exception: java.lang.Error: JTabbedPane didn't focus the proper component ("Burron 1") at the tab "Tab one"


      Specific machine info:
      ======================
      Hostname: linux-22
      OS: Windows 2000 Pro



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

            apikalev Andrey Pikalev
            vshsunw Vsh Vsh (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: