1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
/*
* Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @key headful
* @bug 8139581
* @summary AWT components are not drawn after removal and addition to a container
* @author Anton Litvinov
*/
import java.awt.Button;
import java.awt.Color;
import java.awt.Canvas;
import java.awt.Frame;
import java.awt.Graphics;
import java.awt.Panel;
import java.util.ArrayList;
public class ComponentIsNotDrawnAfterRemoveAddTest {
private final Frame frame;
private final Panel panel;
private final ArrayList<Testable> compList = new ArrayList<Testable>();
public ComponentIsNotDrawnAfterRemoveAddTest() {
frame = new Frame("ComponentIsNotDrawnAfterRemoveAddTest");
frame.setSize(500, 500);
frame.setLocation(200, 200);
frame.setLayout(null);
frame.setBackground(Color.RED);
panel = new Panel();
panel.setLayout(null);
panel.setBounds(25, 100, 455, 295);
panel.setBackground(Color.GREEN);
for (int i = 0; i < 10; i++) {
TestCanvas canv1 = new TestCanvas();
canv1.setBounds(i * 45 + 5, 15, 30 + i, 30 + i);
panel.add(canv1);
compList.add(canv1);
TestButton btn1 = new TestButton();
btn1.setBounds(i * 45 + 5, 60, 30 + i, 30 + i);
panel.add(btn1);
compList.add(btn1);
TestCanvas canv2 = new TestCanvas();
canv2.setBounds(i * 45 + 5, 105, 30 + i, 30 + i);
panel.add(canv2);
compList.add(canv2);
TestButton btn2 = new TestButton();
btn2.setBounds(i * 45 + 5, 150, 30 + i, 30 + i);
panel.add(btn2);
compList.add(btn2);
TestCanvas canv3 = new TestCanvas();
canv3.setBounds(i * 45 + 5, 195, 30 + i, 30 + i);
panel.add(canv3);
compList.add(canv3);
TestButton btn3 = new TestButton();
btn3.setBounds(i * 45 + 5, 240, 30 + i, 30 + i);
panel.add(btn3);
compList.add(btn3);
}
frame.add(panel);
frame.setVisible(true);
}
private void runTest() {
try {
doSleep(1500);
checkTestableComponents();
for (int i = 0; i < 5; i++) {
System.err.println(String.format("Test iteration #%d:", i));
frame.remove(panel);
frame.invalidate();
frame.validate();
frame.add(panel);
doSleep(1500);
checkTestableComponents();
}
} finally {
frame.dispose();
}
}
private void doSleep(long millis) {
try {
Thread.sleep(millis);
} catch (InterruptedException ie) {
ie.printStackTrace();
}
}
private void checkTestableComponents() throws RuntimeException {
int notDrawnCompsCount = 0;
for (Testable comp : compList) {
if (!comp.wasPaintCalled()) {
notDrawnCompsCount++;
} else {
comp.resetPaintCalledFlag();
}
}
if (notDrawnCompsCount > 0) {
throw new RuntimeException(String.format(
"'paint' method of %d components was not called.", notDrawnCompsCount));
}
}
private interface Testable {
boolean wasPaintCalled();
void resetPaintCalledFlag();
}
private static class TestCanvas extends Canvas implements Testable {
private volatile boolean paintWasCalled = false;
@Override
public void paint(Graphics g) {
paintWasCalled = true;
super.paint(g);
g.setColor(Color.BLUE);
g.fillRect(0, 0, getWidth(), getHeight());
}
@Override
public boolean wasPaintCalled() {
return paintWasCalled;
}
@Override
public void resetPaintCalledFlag() {
paintWasCalled = false;
}
}
private static class TestButton extends Button implements Testable {
private volatile boolean paintWasCalled = false;
@Override
public void paint(Graphics g) {
paintWasCalled = true;
super.paint(g);
g.setColor(Color.YELLOW);
g.fillRect(0, 0, 15, 15);
}
@Override
public boolean wasPaintCalled() {
return paintWasCalled;
}
@Override
public void resetPaintCalledFlag() {
paintWasCalled = false;
}
}
public static void main(String[] args) {
new ComponentIsNotDrawnAfterRemoveAddTest().runTest();
}
}
|