Path: blob/master/test/jdk/java/awt/MenuBar/DefaultMenuBarDispose.java
41149 views
/*1* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425/**26* @test27* @key headful28* @bug 819632229* @summary [macosx] When the screen menu bar is used, clearing the default menu bar should permit AWT shutdown30* @author Alan Snyder31* @run main/othervm DefaultMenuBarDispose32* @requires (os.family == "mac")33*/3435import java.awt.Desktop;36import java.lang.reflect.InvocationTargetException;37import javax.swing.JMenuBar;38import javax.swing.SwingUtilities;3940public class DefaultMenuBarDispose41{42public DefaultMenuBarDispose()43{44Thread watcher = new Thread(() -> {45try {46synchronized (this) {47wait(5000);48}49throw new RuntimeException("Test failed: failed to exit");50} catch (InterruptedException ex) {51}52});53watcher.setDaemon(true);54watcher.start();5556runSwing(() ->57{58JMenuBar mb = new JMenuBar();59Desktop.getDesktop().setDefaultMenuBar(mb);60Desktop.getDesktop().setDefaultMenuBar(null);61}62);63}6465private static void runSwing(Runnable r)66{67try {68SwingUtilities.invokeAndWait(r);69} catch (InterruptedException e) {70} catch (InvocationTargetException e) {71throw new RuntimeException(e);72}73}7475public static void main(String[] args)76{77if (!System.getProperty("os.name").contains("OS X")) {78System.out.println("This test is for MacOS only. Automatically passed on other platforms.");79return;80}8182System.setProperty("apple.laf.useScreenMenuBar", "true");8384new DefaultMenuBarDispose();85}86}878889