Skip to content

Commit

Permalink
8285693: Create an automated test for JDK-4702199
Browse files Browse the repository at this point in the history
Backport-of: 158d871d0574970c9e5609dd037aaa0ead668a3b
  • Loading branch information
GoeLin committed Aug 3, 2022
1 parent 9180dcb commit 0106d84
Showing 1 changed file with 96 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
/*
* Copyright (c) 2003, 2022, 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 4702199
* @summary AccessibleExtendedText and related classes for
* missing accessibility support
* @run main AccessibleExtendedTextTest
*/

public class AccessibleExtendedTextTest {

public static void doTest() throws Exception {
try {
Class[] param = { int.class, int.class };
Class accessibleExtendedText =
Class.forName("javax.accessibility.AccessibleExtendedText");
accessibleExtendedText.getDeclaredField("LINE");
accessibleExtendedText.getDeclaredField("ATTRIBUTE_RUN");
accessibleExtendedText.getDeclaredMethod("getTextRange", param);
accessibleExtendedText.getDeclaredMethod("getTextSequenceAt",
param);
accessibleExtendedText.getDeclaredMethod("getTextSequenceAfter",
param);
accessibleExtendedText.getDeclaredMethod("getTextSequenceBefore",
param);
accessibleExtendedText.getDeclaredMethod("getTextBounds", param);
} catch (Exception e) {
throw new Exception(
"Failures in Interface AccessibleExtendedText");
}

try {
Class accessibleTextSequence =
Class.forName("javax.accessibility.AccessibleTextSequence");
accessibleTextSequence.getDeclaredField("startIndex");
accessibleTextSequence.getDeclaredField("endIndex");
accessibleTextSequence.getDeclaredField("text");
} catch (Exception e) {
throw new Exception(
"Failures in Interface AccessibleTextSequence");
}

try {
Class accessibleTextAttributeSequence = Class
.forName("javax.accessibility.AccessibleAttributeSequence");
accessibleTextAttributeSequence.getDeclaredField("startIndex");
accessibleTextAttributeSequence.getDeclaredField("endIndex");
accessibleTextAttributeSequence.getDeclaredField("attributes");
} catch (Exception e) {
throw new Exception(
"Failures in Interface AccessibleAttributeSequence");
}

try {
Class accessibleContext =
Class.forName("javax.accessibility.AccessibleContext");
accessibleContext
.getDeclaredField("ACCESSIBLE_INVALIDATE_CHILDREN");
accessibleContext
.getDeclaredField("ACCESSIBLE_TEXT_ATTRIBUTES_CHANGED");
accessibleContext
.getDeclaredField("ACCESSIBLE_COMPONENT_BOUNDS_CHANGED");
} catch (Exception e) {
throw new Exception(
"Failures in Interface AccessibleContext");
}
System.out.println("Test Passed");
}

public static void main(String[] args) throws Exception {
doTest();
}
}

1 comment on commit 0106d84

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.