Path: blob/master/test/jdk/java/awt/FileDialog/DeleteInsideFileDialog/DeleteInsideFileDialogTest.java
41153 views
/*1* Copyright (c) 2016, 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.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223/*24@test25@bug 807551626@requires os.family=="windows"27@summary Deleting a file from either the open or save java.awt.FileDialog28hangs.29@run main/manual DeleteInsideFileDialogTest30*/3132import java.awt.*;33import java.nio.file.Files;34import java.nio.file.Path;35import java.nio.file.Paths;3637public class DeleteInsideFileDialogTest {3839private static Path dir;40private static Path file1;41private static Path file2;42private static Frame f;43private static FileDialog fd;4445public static void main(String[] args) throws Exception {4647String instructions =48"1) Delete file deleteMe.tst in the opened File Dialog window" +49" using the right click popup menu\n" +50"2) Select thenSelectMe.tst file in the File Dialog and press" +51" Open (if this is not possible the test fails)\n";52dir = Files.createTempDirectory("Test");53file1 = Files.createFile(Paths.get(dir.toString(), "deleteMe.tst"));54file2 = Files.createFile(Paths.get(dir.toString(), "thenSelectMe.tst"));55try {56f = new Frame("Instructions");57f.add(new TextArea(instructions, 6, 60, TextArea.SCROLLBARS_NONE));58f.pack();59f.setLocation(100, 500);60f.setVisible(true);6162fd = new FileDialog((Frame)null);63fd.setDirectory(dir.toString());64fd.setVisible(true);65if (fd.getFile() == null) {66throw new RuntimeException("Failed");67}68} finally {69if (fd != null) {70fd.dispose();71}72if (f != null) {73f.dispose();74}75Files.deleteIfExists(file1);76Files.deleteIfExists(file2);77Files.deleteIfExists(dir);78}79}80}818283