1 /*
   2  * Copyright (c) 1999, 2014, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 /*
  24   @test
  25   @key headful
  26   @bug 4255631
  27   @summary Solaris: Size returned by Choice.getSize() does not match actual size
  28   @author Andrei Dmitriev : area=Choice
  29   run main GetSizeTest.html
  30 */
  31 
  32 import java.awt.*;
  33 import java.awt.event.*;
  34 
  35 public class GetSizeTest {
  36 
  37     static String []s = {"Choice 1",
  38                          "Choice 2",
  39                          "unselected choices",
  40                          "what choices do I have?",
  41                          "Will I pick the same thing in the future?",
  42                 };
  43     static boolean passed = false;
  44     static Robot robot = null;
  45 
  46     public static void main(String args[])
  47     {
  48         try {
  49             robot = new Robot();
  50             robot.setAutoDelay(50);
  51 
  52             Frame f = new Frame("choice test");
  53 
  54             Panel p = new Panel();
  55             p.setLayout(null);
  56 
  57             Choice c = new Choice();
  58             for (int i = 0; i < s.length; i++)
  59                     c.addItem(s[i]);
  60 
  61             c.addMouseListener(new MouseAdapter() {
  62                 public void mouseReleased(MouseEvent e) {
  63                     System.err.println("Test passed");
  64                     passed = true;
  65                 }
  66             });
  67 
  68             p.add(c);
  69 
  70             f.add(p);
  71 
  72             f.setSize(300, 300);
  73 
  74             f.addWindowListener(new WindowAdapter() {
  75                 public void windowClosing(WindowEvent we) {
  76                     System.err.println("Test passed");
  77                     passed = true;
  78                 }
  79             });
  80 
  81             f.setVisible(true);
  82 
  83             c.setSize(200, 200);
  84             f.validate();
  85 
  86             robot.waitForIdle();
  87 
  88             Point pt = c.getLocationOnScreen();
  89             robot.mouseMove(pt.x + c.getWidth() - 10, pt.y + c.getHeight() / 2);
  90             robot.waitForIdle();
  91             robot.mousePress(InputEvent.BUTTON2_MASK);
  92             robot.mouseRelease(InputEvent.BUTTON2_MASK);
  93             robot.waitForIdle();
  94         } catch (Throwable e) {
  95             if (robot == null){
  96                 throw new RuntimeException( "Test failed.Unable to initialize Robot "+e);
  97             }
  98             throw new RuntimeException( "Test failed due to thrown exception "+e);
  99         }
 100         if (!passed) {
 101             throw new RuntimeException( "Timeout. Choice component size is not actual size." );
 102         }
 103         System.err.println("Test passed.");
 104     }
 105 }