--- /dev/null 2019-09-23 16:29:34.460000000 +0530 +++ new/test/jdk/javax/accessibility/AccessibleName/GetAccessibleNameTest.java 2019-09-24 09:05:13.965172607 +0530 @@ -0,0 +1,90 @@ +/* + * 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.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 { + SwingUtilities.invokeAndWait(GetAccessibleNameTest::test); + } + + private static void test() { + 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 = "" + + "bold italic em mark del " + + "small big sup sub ins " + + "strong code strike" + + ""; + + 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()); + } + } + } +}