Skip to content

Commit c43ebd3

Browse files
author
Alexander Zuev
committedSep 20, 2023
8315981: Opensource five more random Swing tests
Reviewed-by: tr, azvegint
1 parent e30e356 commit c43ebd3

File tree

5 files changed

+297
-0
lines changed

5 files changed

+297
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
* Copyright (c) 2000, 2023, 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 4180943
26+
* @summary Extra borders created by DefaultListCellRenderer
27+
* @run main bug4180943
28+
*/
29+
30+
import javax.swing.DefaultListCellRenderer;
31+
32+
public class bug4180943 {
33+
public static void main(String[] argv) {
34+
DefaultListCellRenderer lcr1 = new DefaultListCellRenderer();
35+
DefaultListCellRenderer lcr2 = new DefaultListCellRenderer();
36+
if (lcr1.getBorder() != lcr2.getBorder()) {
37+
throw new RuntimeException("Extra borders created by DefaultListCellRenderer");
38+
}
39+
}
40+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
/*
2+
* Copyright (c) 2003, 2023, 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 4466250
26+
* @summary DefaultListModel.removeRange does not throw IllegalArgumentException
27+
* @run main bug4466250
28+
*/
29+
30+
import javax.swing.DefaultListModel;
31+
import javax.swing.JLabel;
32+
33+
public class bug4466250 {
34+
public static void main(String[] args) {
35+
DefaultListModel model = new DefaultListModel();
36+
int size = 16;
37+
for (int i = 0; i < size; i++ ) {
38+
model.addElement(new JLabel("wow"));
39+
}
40+
41+
try {
42+
model.removeRange(3, 1);
43+
throw new RuntimeException("IllegalArgumentException has not been thrown");
44+
} catch (IllegalArgumentException e) {
45+
}
46+
}
47+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/*
2+
* Copyright (c) 2001, 2023, 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+
/*
25+
* @test
26+
* @bug 4140619
27+
* @summary Breaks SINGLE_SELECTION in DefaultListSelectionModel.setLeadSelectionIndex()
28+
* @run main bug4140619
29+
*/
30+
31+
import javax.swing.DefaultListSelectionModel;
32+
import javax.swing.ListSelectionModel;
33+
34+
public class bug4140619 {
35+
public static void main(String[] args) {
36+
DefaultListSelectionModel selection = new DefaultListSelectionModel();
37+
selection.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
38+
selection.setSelectionInterval(10, 10);
39+
selection.removeSelectionInterval(10, 10);
40+
selection.setLeadSelectionIndex(2);
41+
selection.setLeadSelectionIndex(30);
42+
selection.setLeadSelectionIndex(5);
43+
44+
if (selection.getMinSelectionIndex()!=5
45+
|| selection.getMaxSelectionIndex()!=5) {
46+
throw new RuntimeException("DefaultListSelectionModel: breaks SINGLE_SELECTION "
47+
+ "in setLeadSelectionIndex()");
48+
}
49+
}
50+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/*
2+
* Copyright (c) 2000, 2023, 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 4177723
26+
* @summary ListSelectionEvents fired on model changes affecting JList selection
27+
* @run main bug4177723
28+
*/
29+
30+
import javax.swing.DefaultListModel;
31+
import javax.swing.JList;
32+
33+
public class bug4177723 {
34+
static int count = 0;
35+
36+
public static void main (String[] args) {
37+
DefaultListModel model = new DefaultListModel();
38+
for (int i = 0; i < 10; i++) {
39+
model.addElement("item " + i);
40+
}
41+
42+
JList list = new JList(model);
43+
list.addListSelectionListener(e -> count++);
44+
45+
list.getSelectionModel().setSelectionInterval(3, 8);
46+
model.removeRange(4, 7);
47+
if (count != 2) {
48+
throw new RuntimeException("ListSelectionEvent wasn't generated");
49+
}
50+
}
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
/*
2+
* Copyright (c) 2003, 2023, 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 4827074
26+
* @summary ImageIcon serialization does not preload restored images
27+
* @run main bug4827074
28+
*/
29+
30+
import javax.swing.ImageIcon;
31+
import java.awt.Image;
32+
import java.awt.Panel;
33+
import java.awt.image.MemoryImageSource;
34+
import java.io.ByteArrayInputStream;
35+
import java.io.ByteArrayOutputStream;
36+
import java.io.ObjectInputStream;
37+
import java.io.ObjectOutputStream;
38+
39+
public class bug4827074 extends Panel {
40+
41+
static ImageIcon testIcon = null;
42+
private volatile static boolean passed = false;
43+
44+
public void init() {
45+
testIcon = new TestImageIcon();
46+
ImageIcon icon = saveAndLoad(testIcon);
47+
48+
if (!passed) {
49+
throw new RuntimeException("Image was not loaded properly");
50+
}
51+
}
52+
53+
synchronized static void setPassed(boolean p) {
54+
passed = p;
55+
}
56+
57+
static ImageIcon saveAndLoad(ImageIcon ii) {
58+
ImageIcon _ii = null;
59+
try {
60+
ByteArrayOutputStream baos = new ByteArrayOutputStream();
61+
ObjectOutputStream out = new ObjectOutputStream(baos);
62+
out.writeObject(ii);
63+
out.flush();
64+
ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());
65+
ObjectInputStream in = new ObjectInputStream(bais);
66+
_ii = (ImageIcon)in.readObject();
67+
} catch (Exception ex) {
68+
ex.printStackTrace();
69+
}
70+
return _ii;
71+
}
72+
73+
class TestImageIcon extends ImageIcon {
74+
public TestImageIcon() {
75+
super();
76+
setImage(buildImage());
77+
}
78+
79+
private Image buildImage() {
80+
int w = 32, h = 32;
81+
float halfW = w / 2 , halfH = h / 2;
82+
int col = 0xff0000;
83+
int[] pixels = new int[w * h];
84+
for(int y = 0; y < h; y++) {
85+
for(int x = 0; x < w; x++) {
86+
float cx = 1f - (float)x / halfW;
87+
float cy = 1f - (float)y / halfH;
88+
double ray = Math.sqrt(cx * cx + cy * cy);
89+
pixels[y * w + x] = ray < 1 ? col | (255 - (int)(ray * 255)) << 24:0;
90+
}
91+
}
92+
MemoryImageSource mis = new MemoryImageSource(w, h, pixels, 0, w);
93+
Image image = createImage(mis);
94+
return image;
95+
}
96+
97+
protected void loadImage(Image image) {
98+
super.loadImage(image);
99+
if (testIcon != null && image != testIcon.getImage()) {
100+
setPassed(true);
101+
}
102+
}
103+
}
104+
105+
public static void main(String[] args) {
106+
bug4827074 bug = new bug4827074();
107+
bug.init();
108+
}
109+
}

0 commit comments

Comments
 (0)
Please sign in to comment.