1 /*
   2  * Copyright (c) 2009, 2015, 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  * @bug 6657026
  27  * @summary Tests shared ToolTipManager in different application contexts
  28  * @author Sergey Malenkov
  29  * @modules java.desktop/sun.awt
  30  */
  31 
  32 import sun.awt.SunToolkit;
  33 import javax.swing.ToolTipManager;
  34 
  35 public class Test6657026 implements Runnable {
  36 
  37     private static final int DISMISS = 4000;
  38     private static final int INITIAL = 750;
  39     private static final int RESHOW = 500;
  40 
  41     public static void main(String[] args) throws InterruptedException {
  42         ToolTipManager manager = ToolTipManager.sharedInstance();
  43         if (DISMISS != manager.getDismissDelay()) {
  44             throw new Error("unexpected dismiss delay");
  45         }
  46         if (INITIAL != manager.getInitialDelay()) {
  47             throw new Error("unexpected initial delay");
  48         }
  49         if (RESHOW != manager.getReshowDelay()) {
  50             throw new Error("unexpected reshow delay");
  51         }
  52         manager.setDismissDelay(DISMISS + 1);
  53         manager.setInitialDelay(INITIAL + 1);
  54         manager.setReshowDelay(RESHOW + 1);
  55 
  56         ThreadGroup group = new ThreadGroup("$$$");
  57         Thread thread = new Thread(group, new Test6657026());
  58         thread.start();
  59         thread.join();
  60     }
  61 
  62     public void run() {
  63         SunToolkit.createNewAppContext();
  64         ToolTipManager manager = ToolTipManager.sharedInstance();
  65         if (DISMISS != manager.getDismissDelay()) {
  66             throw new Error("shared dismiss delay");
  67         }
  68         if (INITIAL != manager.getInitialDelay()) {
  69             throw new Error("shared initial delay");
  70         }
  71         if (RESHOW != manager.getReshowDelay()) {
  72             throw new Error("shared reshow delay");
  73         }
  74     }
  75 }