Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/awt/Desktop/8064934/bug8064934.java
41152 views
1
/*
2
* Copyright (c) 2015, 2018, 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
* @bug 8064934
26
* @key headful
27
* @requires (os.family == "windows")
28
* @summary Incorrect Exception message from java.awt.Desktop.open()
29
* @author Dmitry Markov
30
* @library /test/lib
31
* @modules java.desktop/sun.awt
32
* @build jdk.test.lib.Platform
33
* @run main bug8064934
34
*/
35
import jdk.test.lib.Platform;
36
import java.awt.*;
37
import java.io.File;
38
import java.io.IOException;
39
import java.security.AccessController;
40
import java.security.PrivilegedAction;
41
42
public class bug8064934 {
43
private static final String NO_ASSOCIATION_ERROR_MESSAGE = "Error message: No application is associated with" +
44
" the specified file for this operation.";
45
46
public static void main(String[] args) {
47
// This test is intended only for Windows
48
if (!AccessController.doPrivileged((PrivilegedAction<Boolean>) Platform::isWindows)) {
49
System.out.println("The test is for Windows platform only");
50
return;
51
}
52
53
// Test whether Desktop is supported of not
54
if (!Desktop.isDesktopSupported()) {
55
System.out.println("Desktop is not supported");
56
return;
57
}
58
59
Desktop desktop = Desktop.getDesktop();
60
// Test whether open action is supported or not
61
if (!desktop.isSupported(Desktop.Action.OPEN)) {
62
System.out.println("Desktop.Action.OPEN is not supported");
63
return;
64
}
65
66
File file = null;
67
try {
68
file = File.createTempFile("test", ".foo");
69
if (!file.exists()) {
70
throw new RuntimeException("Can not create temp file");
71
}
72
desktop.open(file);
73
} catch (IOException ioe) {
74
String errorMessage = ioe.getMessage().trim();
75
if (errorMessage != null && !errorMessage.endsWith(NO_ASSOCIATION_ERROR_MESSAGE)) {
76
throw new RuntimeException("Test FAILED! Wrong Error message: \n" +
77
"Actual " + errorMessage.substring(errorMessage.indexOf("Error message:")) + "\n" +
78
"Expected " + NO_ASSOCIATION_ERROR_MESSAGE);
79
}
80
} finally {
81
if (file != null) {
82
file.delete();
83
}
84
}
85
86
System.out.println("Test PASSED!");
87
}
88
}
89
90