author | jdv |
Wed, 15 May 2019 10:10:53 +0530 | |
branch | metal-prototype-branch |
changeset 57357 | f3beca8f19fc |
parent 49096 | eaef201ec301 |
permissions | -rw-r--r-- |
25137
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
1 |
/* |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
2 |
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved. |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
4 |
* |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
8 |
* |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
13 |
* accompanied this code). |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
14 |
* |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
18 |
* |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
21 |
* questions. |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
22 |
*/ |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
23 |
|
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
24 |
/* |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
25 |
* @test |
49096
eaef201ec301
8198333: ProblemList should be updated for headless mode
serb
parents:
47216
diff
changeset
|
26 |
* @key headful |
25137
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
27 |
* @summary Check if TrayIcon added by a JVM is not visible |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
28 |
* in another JVM |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
29 |
* @author Dmitriy Ermashov (dmitriy.ermashov@oracle.com) |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
30 |
* @library ../../regtesthelpers/process/ |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
31 |
* @build ProcessResults ProcessCommunicator |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
32 |
* @run main InterJVM |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
33 |
*/ |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
34 |
|
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
35 |
import test.java.awt.regtesthelpers.process.ProcessCommunicator; |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
36 |
import test.java.awt.regtesthelpers.process.ProcessResults; |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
37 |
|
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
38 |
import java.awt.*; |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
39 |
import java.awt.image.BufferedImage; |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
40 |
|
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
41 |
public class InterJVM { |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
42 |
|
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
43 |
static String NEW_JVM = "-doTest"; |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
44 |
|
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
45 |
public static void main(String[] args) throws Exception { |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
46 |
if (! SystemTray.isSupported()) { |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
47 |
System.out.println("SystemTray not supported on the platform under test. " + |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
48 |
"Marking the test passed"); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
49 |
} else { |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
50 |
if (args == null || args.length == 0) { |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
51 |
new InterJVM().addTrayIcon(); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
52 |
} else { |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
53 |
if (args.length == 1 && NEW_JVM.equals(args[0])) |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
54 |
new InterJVM().doTest(); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
55 |
} |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
56 |
} |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
57 |
} |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
58 |
|
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
59 |
void doTest() throws Exception { |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
60 |
SystemTray tray = SystemTray.getSystemTray(); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
61 |
try { |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
62 |
TrayIcon[] icons = tray.getTrayIcons(); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
63 |
System.out.println(icons.length); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
64 |
if (icons == null || icons.length != 0) |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
65 |
throw new RuntimeException("FAIL: getTrayIcons() returned incorrect " + |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
66 |
"value when two icons are added by a " + |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
67 |
"separate JVM: " + icons.length); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
68 |
} catch (Exception e) { |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
69 |
throw new RuntimeException(e); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
70 |
} |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
71 |
} |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
72 |
|
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
73 |
void addTrayIcon() throws Exception { |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
74 |
|
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
75 |
SystemTray tray = SystemTray.getSystemTray(); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
76 |
TrayIcon icon = new TrayIcon(new BufferedImage(20, 20, BufferedImage.TYPE_INT_RGB)); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
77 |
tray.add(icon); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
78 |
|
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
79 |
new Robot().delay(2000); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
80 |
|
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
81 |
ProcessResults processResults = |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
82 |
ProcessCommunicator.executeChildProcess(this.getClass(), new String[]{NEW_JVM}); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
83 |
|
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
84 |
if (processResults.getExitValue() != 0) |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
85 |
throw new RuntimeException("\n"+processResults.getStdErr()); |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
86 |
} |
43055e2deee9
8044765: Move functional tests AWT_SystemTray/Automated to openjdk repository
yan
parents:
diff
changeset
|
87 |
} |