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
|
/*
* Copyright (c) 2019, 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.
*/
import javax.accessibility.AccessibleContext;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JCheckBoxMenuItem;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JMenu;
import javax.swing.JMenuItem;
import javax.swing.JRadioButton;
import javax.swing.JRadioButtonMenuItem;
import javax.swing.JToggleButton;
import javax.swing.SwingUtilities;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
/*
* @test
* @bug 4949105
* @summary Access Bridge lacks html tags parsing
* @run main GetAccessibleNameTest
*/
public class GetAccessibleNameTest {
public static void main(String[] args) throws Exception {
testConstructor();
testSetText();
testAccessibleProperty();
}
private static void testConstructor() {
Class[] testClass = new Class[] {
JLabel.class, JButton.class, JMenuItem.class,
JMenu.class, JCheckBoxMenuItem.class, JRadioButtonMenuItem.class,
JToggleButton.class, JRadioButton.class, JCheckBox.class };
Class[] ctorArg = new Class[1];
ctorArg[0] = String.class;
String expectedText = "bold italic em mark del small big sup sub ins strong code strike";
String inputText = "<html><style>{color:#FF0000;}</style><body>" +
"<b>bold</b> <i>italic</i> <em>em</em> <mark>mark</mark> <del>del</del> " +
"<small>small</small> <big>big</big> <sup>sup</sup> <sub>sub</sub> <ins>ins</ins> " +
"<strong>strong</strong> <code>code</code> <strike>strike</strike>" +
"</body></html>";
for (Class aClass : testClass) {
try {
Constructor constructor = aClass.getDeclaredConstructor(ctorArg);
JComponent comp = (JComponent) constructor.newInstance(inputText);
if (!expectedText.equals(comp.getAccessibleContext().getAccessibleName())) {
throw new RuntimeException("AccessibleName of " + aClass.getName() + " is incorrect." +
" Expected: " + expectedText +
" Actual: " + comp.getAccessibleContext().getAccessibleName());
}
} catch (NoSuchMethodException e) {
throw new RuntimeException(aClass.getName() + " does not have a constructor accepting" +
"String parameter.", e.getCause());
} catch (InstantiationException e) {
throw new RuntimeException(aClass.getName() + " could not be instantiated.",
e.getCause());
} catch (IllegalAccessException e) {
throw new RuntimeException(aClass.getName() + " constructor cannot be accessed.",
e.getCause());
} catch (InvocationTargetException e) {
throw new RuntimeException(aClass.getName() + " constructor cannot be invoked.",
e.getCause());
}
}
}
private static void testSetText() {
String text = "html text";
JLabel testLabel = new JLabel("<html>" + text + "</html>");
if (!text.equals(testLabel.getAccessibleContext().getAccessibleName())) {
throw new RuntimeException("Incorrect AccessibleName," +
" Expected: " + text +
" Actual: " + testLabel.getAccessibleContext().getAccessibleName());
}
text = "Non html text";
testLabel.setText(text);
if (!text.equals(testLabel.getAccessibleContext().getAccessibleName())) {
throw new RuntimeException("Incorrect AccessibleName," +
" Expected: " + text +
" Actual: " + testLabel.getAccessibleContext().getAccessibleName());
}
}
private static void testAccessibleProperty() {
String text = "html text";
JLabel testLabel = new JLabel("<html>" + text + "</html>");
if (!text.equals(testLabel.getClientProperty(AccessibleContext.ACCESSIBLE_NAME_PROPERTY))) {
throw new RuntimeException("Incorrect ACCESSIBLE_NAME_PROPERTY," +
" Expected: " + text +
" Actual: " + testLabel.getClientProperty(AccessibleContext.ACCESSIBLE_NAME_PROPERTY));
}
String namePropertyText = "name property";
testLabel.putClientProperty(AccessibleContext.ACCESSIBLE_NAME_PROPERTY, namePropertyText);
if (!namePropertyText.equals(testLabel.getClientProperty(AccessibleContext.ACCESSIBLE_NAME_PROPERTY))) {
throw new RuntimeException("Incorrect ACCESSIBLE_NAME_PROPERTY," +
" Expected: " + namePropertyText +
" Actual: " + testLabel.getClientProperty(AccessibleContext.ACCESSIBLE_NAME_PROPERTY));
}
text = "different html text";
testLabel.setText("<html>" + text + "</html>");
if (!namePropertyText.equals(testLabel.getClientProperty(AccessibleContext.ACCESSIBLE_NAME_PROPERTY))) {
throw new RuntimeException("Incorrect ACCESSIBLE_NAME_PROPERTY," +
" Expected: " + namePropertyText +
" Actual: " + testLabel.getClientProperty(AccessibleContext.ACCESSIBLE_NAME_PROPERTY));
}
}
}
|