1 /*
   2  * Copyright (c) 2011, 2013, 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 /**
  25  @test
  26  @summary <rdar://problem/2303044 List selection not set when peer is created
  27  @summary com.apple.junit.java.awt.List;
  28  @run main R2303044ListSelection
  29  */
  30 
  31 import junit.framework.*;
  32 
  33 import java.awt.*;
  34 
  35 public class R2303044ListSelection extends TestCase
  36 {
  37     protected Frame f;
  38     protected List l;
  39 
  40     protected void setUp() {
  41         f = new Frame("Test Frame");
  42         l = new List();
  43         f.setSize(300, 200);
  44     }
  45 
  46     public void testListSelection() throws Exception {
  47         String myItemName = "myItem";
  48         l.add(myItemName);
  49         l.select(0);
  50         f.add(l);
  51         f.validate();
  52         f.setVisible(true);
  53         Thread.sleep(2000);
  54         assertEquals("List item not selected item.", myItemName, l.getSelectedItem());
  55     }
  56 
  57     protected void tearDown() {
  58         l.removeAll();
  59         f.dispose();
  60     }
  61 
  62     public static Test suite() {
  63         return new TestSuite(R2303044ListSelection.class);
  64     }
  65 
  66     public static void main (String[] args) throws RuntimeException {
  67         TestResult tr = junit.textui.TestRunner.run(suite());
  68         if((tr.errorCount() != 0) || (tr.failureCount() != 0)) {
  69             throw new RuntimeException("### Unexpected JUnit errors or failures.");
  70         }
  71     }
  72 }