01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: /**
18: * @author Dmitry A. Durnev
19: * @version $Revision$
20: */package java.awt;
21:
22: import java.awt.Dialog.AccessibleAWTDialog;
23:
24: import javax.accessibility.AccessibleContext;
25: import javax.accessibility.AccessibleRole;
26: import javax.accessibility.AccessibleState;
27: import javax.accessibility.AccessibleStateSet;
28:
29: import junit.framework.TestCase;
30:
31: /**
32: * AccessibleAWTDialogTest
33: */
34: public class AccessibleAWTDialogTest extends TestCase {
35:
36: AccessibleContext ac;
37: private Dialog dialog;
38: private Frame frame;
39:
40: @Override
41: protected void setUp() throws Exception {
42: super .setUp();
43: frame = new Frame();
44: dialog = new Dialog(frame);
45: ac = dialog.getAccessibleContext();
46: }
47:
48: @Override
49: protected void tearDown() throws Exception {
50: super .tearDown();
51: if ((frame != null) && frame.isDisplayable()) {
52: frame.dispose();
53: }
54: }
55:
56: public final void testGetAccessibleRole() {
57: assertSame(AccessibleRole.DIALOG, ac.getAccessibleRole());
58: }
59:
60: public final void testGetAccessibleStateSet() {
61: AccessibleStateSet aStateSet = ac.getAccessibleStateSet();
62: assertFalse("accessible dialog is active", aStateSet
63: .contains(AccessibleState.ACTIVE));
64: assertTrue("accessible dialog is resizable", aStateSet
65: .contains(AccessibleState.RESIZABLE));
66: assertFalse("accessible dialog is NOT modal", aStateSet
67: .contains(AccessibleState.MODAL));
68:
69: dialog.setResizable(false);
70: aStateSet = ac.getAccessibleStateSet();
71: assertFalse("accessible dialog is NOT resizable", aStateSet
72: .contains(AccessibleState.RESIZABLE));
73: dialog.setModal(true);
74: aStateSet = ac.getAccessibleStateSet();
75: assertTrue("accessible dialog is modal", aStateSet
76: .contains(AccessibleState.MODAL));
77: }
78:
79: public final void testAccessibleAWTFrame() {
80: assertTrue(ac instanceof AccessibleAWTDialog);
81: }
82:
83: }
|