Skip to content

Commit 4d50cbb

Browse files
author
Harshitha Onkar
committedOct 7, 2024
8341278: Open source few TrayIcon tests - Set7
Reviewed-by: azvegint
1 parent 23f3ca2 commit 4d50cbb

5 files changed

+493
-0
lines changed
 

‎test/jdk/ProblemList.txt

+2
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,8 @@ java/awt/TrayIcon/TrayIconEvents/TrayIconEventsTest.java 8150540,8295300 windows
212212
java/awt/TrayIcon/TrayIconMouseTest/TrayIconMouseTest.java 8150540 windows-all
213213
java/awt/TrayIcon/TrayIconPopup/TrayIconPopupClickTest.java 8150540 windows-all,macosx-all
214214
java/awt/TrayIcon/TrayIconPopup/TrayIconPopupTest.java 8150540 windows-all
215+
java/awt/TrayIcon/MouseMoveTest.java 8203053 linux-all
216+
java/awt/TrayIcon/TrayIconKeySelectTest.java 8341557 windows-all
215217

216218
java/awt/Window/ShapedAndTranslucentWindows/SetShapeAndClick.java 8197936 macosx-all
217219
java/awt/Window/ShapedAndTranslucentWindows/SetShapeDynamicallyAndClick.java 8013450 macosx-all
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
/*
2+
* Copyright (c) 2005, 2024, 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+
import java.awt.AWTException;
25+
import java.awt.Color;
26+
import java.awt.EventQueue;
27+
import java.awt.Graphics2D;
28+
import java.awt.Image;
29+
import java.awt.RenderingHints;
30+
import java.awt.SystemTray;
31+
import java.awt.TrayIcon;
32+
import java.awt.image.BufferedImage;
33+
34+
import jtreg.SkippedException;
35+
36+
/*
37+
* @test
38+
* @bug 6267936
39+
* @library /java/awt/regtesthelpers /test/lib
40+
* @build PassFailJFrame jtreg.SkippedException
41+
* @summary Tests that the previous image in TrayIcon is cleared
42+
* when a new image is set
43+
* @run main/manual ClearPrevImageTest
44+
*/
45+
46+
public class ClearPrevImageTest {
47+
private static SystemTray tray;
48+
private static TrayIcon icon;
49+
private static final String INSTRUCTIONS = """
50+
This test checks that the previous image in TrayIcon is cleared
51+
when a new image is set.
52+
53+
When the test starts, a RED square TrayIcon is added
54+
to the SystemTray (also, called Taskbar Status Area in MS Windows,
55+
Notification Area in, GNOME and System Tray in KDE).
56+
57+
You should see it change into YELLOW after 5 seconds.
58+
If you still see RED TrayIcon after 5 seconds,
59+
press FAIL, otherwise press PASS
60+
""";
61+
62+
63+
public static void main(String[] args) throws Exception {
64+
if (!SystemTray.isSupported()) {
65+
throw new SkippedException("Test not applicable as"
66+
+ " System Tray not supported");
67+
}
68+
69+
PassFailJFrame passFailJFrame
70+
= PassFailJFrame.builder()
71+
.title("TrayIcon Change Test Instructions")
72+
.instructions(INSTRUCTIONS)
73+
.columns(40)
74+
.build();
75+
76+
EventQueue.invokeAndWait(ClearPrevImageTest::createAndShowTrayIcon);
77+
try {
78+
changeTrayIcon();
79+
passFailJFrame.awaitAndCheck();
80+
} catch (Exception e) {
81+
throw new RuntimeException("Test failed: ", e);
82+
} finally {
83+
EventQueue.invokeAndWait(() -> {
84+
if (tray != null) {
85+
tray.remove(icon);
86+
}
87+
});
88+
}
89+
}
90+
91+
private static void createAndShowTrayIcon() {
92+
Image img1 = createIcon(Color.RED);
93+
tray = SystemTray.getSystemTray();
94+
icon = new TrayIcon(img1);
95+
icon.setImageAutoSize(true);
96+
97+
try {
98+
tray.add(icon);
99+
} catch (AWTException e) {
100+
throw new RuntimeException("Error while adding"
101+
+ " icon to system tray", e);
102+
}
103+
}
104+
105+
private static void changeTrayIcon() {
106+
try {
107+
Thread.sleep(5000);
108+
} catch (InterruptedException e) {
109+
e.printStackTrace();
110+
}
111+
Image img2 = createIcon(Color.YELLOW);
112+
icon.setImage(img2);
113+
}
114+
115+
private static Image createIcon(Color color) {
116+
BufferedImage image = new BufferedImage(16, 16,
117+
BufferedImage.TYPE_INT_ARGB);
118+
Graphics2D g = image.createGraphics();
119+
g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING,
120+
RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
121+
g.setColor(color);
122+
g.fillRect(0, 0, 16, 16);
123+
g.dispose();
124+
return image;
125+
}
126+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
/*
2+
* Copyright (c) 2005, 2024, 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+
import java.awt.AWTException;
25+
import java.awt.BorderLayout;
26+
import java.awt.Color;
27+
import java.awt.EventQueue;
28+
import java.awt.Frame;
29+
import java.awt.Graphics2D;
30+
import java.awt.RenderingHints;
31+
import java.awt.SystemTray;
32+
import java.awt.TextArea;
33+
import java.awt.TrayIcon;
34+
import java.awt.event.FocusAdapter;
35+
import java.awt.event.FocusEvent;
36+
import java.awt.image.BufferedImage;
37+
38+
import jtreg.SkippedException;
39+
40+
/*
41+
* @test
42+
* @bug 6269309
43+
* @library /java/awt/regtesthelpers /test/lib
44+
* @build PassFailJFrame jtreg.SkippedException
45+
* @summary Tests that focus is transferred properly back
46+
* to toplevel after clicking on a tray icon.
47+
* @run main/manual FocusLostAfterTrayTest
48+
*/
49+
50+
public class FocusLostAfterTrayTest {
51+
private static SystemTray tray;
52+
private static TrayIcon icon;
53+
54+
private static final String INSTRUCTIONS = """
55+
This test checks that focus is transferred properly back
56+
to top-level after clicking on a tray icon.
57+
58+
When the test starts, a Frame with a text area & a RED tray icon
59+
are shown. If you don't see a tray icon please make sure that
60+
the tray area (also called Taskbar Status Area on MS Windows
61+
Notification Area on Gnome or System Tray on KDE) is visible.
62+
63+
Click with a mouse inside a text area and make sure that it has
64+
received input focus. Then click on the tray icon and then back
65+
on the text area and verify that it has input focus again. Repeat
66+
the last step several times. Ensure that the text area always
67+
has the input focus and there are no "FOCUS LOST" event
68+
for text area in the log section.
69+
70+
If above is true, Press PASS, else FAIL.
71+
""";
72+
73+
public static void main(String[] args) throws Exception {
74+
if (!SystemTray.isSupported()) {
75+
throw new SkippedException("Test not applicable as"
76+
+ " System Tray not supported");
77+
}
78+
79+
try {
80+
PassFailJFrame.builder()
81+
.title("FocusLostAfterTrayTest Instructions")
82+
.instructions(INSTRUCTIONS)
83+
.columns(40)
84+
.testUI(FocusLostAfterTrayTest::createAndShowTrayIcon)
85+
.logArea()
86+
.build()
87+
.awaitAndCheck();
88+
} finally {
89+
EventQueue.invokeAndWait(() -> {
90+
if (tray != null) {
91+
tray.remove(icon);
92+
}
93+
});
94+
}
95+
}
96+
97+
private static Frame createAndShowTrayIcon() {
98+
Frame frame = new Frame("FocusLostAfterTrayTest");
99+
frame.setBounds(100, 300, 200, 200);
100+
frame.setLayout(new BorderLayout());
101+
TextArea ta = new TextArea();
102+
ta.addFocusListener(new FocusAdapter() {
103+
@Override
104+
public void focusGained(FocusEvent e) {
105+
PassFailJFrame.log("FOCUS GAINED: "
106+
+ e.getComponent().getClass().toString());
107+
}
108+
@Override
109+
public void focusLost(FocusEvent e) {
110+
PassFailJFrame.log("FOCUS LOST !! "
111+
+ e.getComponent().getClass().toString());
112+
}
113+
});
114+
frame.add(ta);
115+
116+
BufferedImage image = new BufferedImage(16, 16,
117+
BufferedImage.TYPE_INT_ARGB);
118+
Graphics2D g = image.createGraphics();
119+
g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING,
120+
RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
121+
g.setColor(Color.RED);
122+
g.fillRect(0, 0, 16, 16);
123+
g.dispose();
124+
tray = SystemTray.getSystemTray();
125+
icon = new TrayIcon(image);
126+
icon.setImageAutoSize(true);
127+
128+
try {
129+
tray.add(icon);
130+
} catch (AWTException e) {
131+
throw new RuntimeException("Error while adding"
132+
+ " icon to system tray", e);
133+
}
134+
return frame;
135+
}
136+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
/*
2+
* Copyright (c) 2011, 2024, 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+
import java.awt.AWTException;
25+
import java.awt.Color;
26+
import java.awt.EventQueue;
27+
import java.awt.Graphics;
28+
import java.awt.SystemTray;
29+
import java.awt.TrayIcon;
30+
import java.awt.event.MouseEvent;
31+
import java.awt.event.MouseMotionAdapter;
32+
import java.awt.image.BufferedImage;
33+
34+
import jtreg.SkippedException;
35+
36+
/*
37+
* @test
38+
* @bug 6267980
39+
* @summary PIT:Spurious MouseMoved events are triggered by Tray Icon
40+
* @library /java/awt/regtesthelpers /test/lib
41+
* @build PassFailJFrame jtreg.SkippedException
42+
* @run main/manual MouseMoveTest
43+
*/
44+
45+
public class MouseMoveTest {
46+
private static SystemTray tray;
47+
private static TrayIcon icon;
48+
private static final String INSTRUCTIONS = """
49+
1) You will see a tray icon (white square) in notification area,
50+
2) Move mouse pointer to the icon and leave it somewhere inside the icon,
51+
3) Verify that MOUSE_MOVE events are NOT triggered after you have STOPPED
52+
moving mouse.
53+
4) If events are still triggered Press FAIL else PASS.
54+
""";
55+
56+
public static void main(String[] args) throws Exception {
57+
if (!SystemTray.isSupported()) {
58+
throw new SkippedException("Test not applicable as"
59+
+ " System Tray not supported");
60+
}
61+
62+
PassFailJFrame passFailJFrame
63+
= PassFailJFrame.builder()
64+
.title("TrayIcon Change Test Instructions")
65+
.instructions(INSTRUCTIONS)
66+
.columns(45)
67+
.logArea()
68+
.build();
69+
70+
try {
71+
EventQueue.invokeAndWait(MouseMoveTest::createAndShowTrayIcon);
72+
passFailJFrame.awaitAndCheck();
73+
} finally {
74+
EventQueue.invokeAndWait(() -> {
75+
if (tray != null) {
76+
tray.remove(icon);
77+
}
78+
});
79+
}
80+
}
81+
82+
private static void createAndShowTrayIcon() {
83+
BufferedImage img = new BufferedImage(32, 32,
84+
BufferedImage.TYPE_INT_ARGB);
85+
Graphics g = img.createGraphics();
86+
g.setColor(Color.WHITE);
87+
g.fillRect(0, 0, 32, 32);
88+
g.dispose();
89+
90+
tray = SystemTray.getSystemTray();
91+
icon = new TrayIcon(img);
92+
icon.setImageAutoSize(true);
93+
94+
icon.addMouseMotionListener(new MouseMotionAdapter() {
95+
public void mouseMoved(MouseEvent me){
96+
PassFailJFrame.log(me.toString());
97+
}
98+
});
99+
100+
try {
101+
tray.add(icon);
102+
} catch (AWTException e) {
103+
throw new RuntimeException("Error while adding"
104+
+ " icon to system tray", e);
105+
}
106+
}
107+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
/*
2+
* Copyright (c) 2005, 2024, 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+
import java.awt.AWTException;
25+
import java.awt.Color;
26+
import java.awt.EventQueue;
27+
import java.awt.Graphics;
28+
import java.awt.SystemTray;
29+
import java.awt.TrayIcon;
30+
import java.awt.image.BufferedImage;
31+
32+
import jtreg.SkippedException;
33+
34+
/*
35+
* @test
36+
* @bug 6267943
37+
* @requires (os.family == "windows")
38+
* @library /java/awt/regtesthelpers /test/lib
39+
* @build PassFailJFrame jtreg.SkippedException
40+
* @summary Tests the possibility of selecting a tray icon with the keyboard.
41+
* @run main/manual TrayIconKeySelectTest
42+
*/
43+
44+
public class TrayIconKeySelectTest {
45+
private static SystemTray tray;
46+
private static TrayIcon icon;
47+
private static final String INSTRUCTIONS = """
48+
Tests that TrayIcon is selectable with the keyboard
49+
When the test is started you will see three-color icon
50+
in the system tray.
51+
52+
1. Bring the focus to the icon with TAB. Press ENTER key.
53+
- One or more ActionEvent should be generated
54+
(see the output area of the test)
55+
56+
2. Bring the focus again to the icon. Press SPACE key twice.
57+
- One or more ActionEvent should be generated.
58+
59+
3. Bring the focus again to the icon. Click on the icon with
60+
the LEFT mouse button twice.
61+
- One or more ActionEvent should be generated.
62+
63+
4. Again bring the focus to the icon. Click on the icon with
64+
the LEFT mouse button just once.
65+
- NO ActionEvent should be generated.
66+
67+
5. Repeat the 4th step with other mouse buttons.
68+
69+
If all the above are true press PASS, else FAIL
70+
""";
71+
72+
public static void main(String[] args) throws Exception {
73+
if (!SystemTray.isSupported()) {
74+
throw new SkippedException("Test not applicable as"
75+
+ " System Tray not supported");
76+
}
77+
PassFailJFrame passFailJFrame;
78+
try {
79+
passFailJFrame
80+
= PassFailJFrame.builder()
81+
.title("TrayIconKeySelectTest Instructions")
82+
.instructions(INSTRUCTIONS)
83+
.columns(40)
84+
.logArea()
85+
.build();
86+
87+
EventQueue.invokeAndWait(TrayIconKeySelectTest::createAndShowTrayIcon);
88+
passFailJFrame.awaitAndCheck();
89+
} finally {
90+
EventQueue.invokeAndWait(() -> {
91+
if (tray != null) {
92+
tray.remove(icon);
93+
}
94+
});
95+
}
96+
}
97+
98+
private static void createAndShowTrayIcon() {
99+
BufferedImage im = new BufferedImage(16, 16,
100+
BufferedImage.TYPE_INT_ARGB);
101+
Graphics gr = im.createGraphics();
102+
gr.setColor(Color.white);
103+
gr.fillRect(0, 0, 16, 5);
104+
gr.setColor(Color.blue);
105+
gr.fillRect(0, 5, 16, 10);
106+
gr.setColor(Color.red);
107+
gr.fillRect(0, 10, 16, 16);
108+
gr.dispose();
109+
110+
tray = SystemTray.getSystemTray();
111+
icon = new TrayIcon(im);
112+
icon.setImageAutoSize(true);
113+
icon.addActionListener(e -> PassFailJFrame.log(e.toString()));
114+
115+
try {
116+
tray.add(icon);
117+
} catch (AWTException e) {
118+
throw new RuntimeException("Error while adding"
119+
+ " icon to system tray", e);
120+
}
121+
}
122+
}

0 commit comments

Comments
 (0)
Please sign in to comment.