]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix VWindow Vai-Aria roles for alertdialogs (#14289)
authorJuuso Valli <juuso@vaadin.com>
Thu, 24 Jul 2014 07:54:42 +0000 (10:54 +0300)
committerBogdan Udrescu <bogdan@vaadin.com>
Mon, 28 Jul 2014 12:46:03 +0000 (12:46 +0000)
Change-Id: Ie33ef684f2177fe1807f95bf234031cc3a44f317

client/src/com/vaadin/client/ui/VWindow.java
uitest/src/com/vaadin/tests/accessibility/WindowWaiAriaRoles.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/accessibility/WindowWaiAriaRolesTest.java [new file with mode: 0644]

index 83a0001ad881f60d1a7ae180ddec76c2e7042e65..495e2301560df66b9b6a62109a78acc3f07958c0 100644 (file)
@@ -233,7 +233,7 @@ public class VWindow extends VOverlay implements ShortcutActionHandlerOwner,
         /*
          * Stores the element that has focus in the application UI when the
          * window is opened, so it can be restored when the window closes.
-         * 
+         *
          * This is currently implemented for the case when one non-modal window
          * can be open at the same time, and the focus is not changed while the
          * window is open.
@@ -253,7 +253,7 @@ public class VWindow extends VOverlay implements ShortcutActionHandlerOwner,
 
         /*
          * Restores the previously stored focused element.
-         * 
+         *
          * When the focus was changed outside the window while the window was
          * open, the originally stored element is restored.
          */
@@ -640,7 +640,7 @@ public class VWindow extends VOverlay implements ShortcutActionHandlerOwner,
          * correctly if clicking on the "close" button in the window header but
          * closing the window from a button for example in the window will fail.
          * Symptom described in #10776
-         * 
+         *
          * The problematic part is that for the focus to be returned correctly
          * an input element needs to be focused in the root panel. Focusing some
          * other element apparently won't work.
@@ -1411,7 +1411,7 @@ public class VWindow extends VOverlay implements ShortcutActionHandlerOwner,
      *            WAI-ARIA role to set for the window
      */
     public void setWaiAriaRole(WindowRole role) {
-        if ("alertdialog".equals(role)) {
+        if (role == WindowRole.ALERTDIALOG) {
             Roles.getAlertdialogRole().set(getElement());
         } else {
             Roles.getDialogRole().set(getElement());
diff --git a/uitest/src/com/vaadin/tests/accessibility/WindowWaiAriaRoles.java b/uitest/src/com/vaadin/tests/accessibility/WindowWaiAriaRoles.java
new file mode 100644 (file)
index 0000000..2ab6be2
--- /dev/null
@@ -0,0 +1,107 @@
+/*
+ * Copyright 2000-2014 Vaadin Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+package com.vaadin.tests.accessibility;
+
+import java.util.Stack;
+
+import com.vaadin.server.VaadinRequest;
+import com.vaadin.shared.ui.window.WindowRole;
+import com.vaadin.tests.components.AbstractTestUI;
+import com.vaadin.ui.Button;
+import com.vaadin.ui.Button.ClickEvent;
+import com.vaadin.ui.Button.ClickListener;
+import com.vaadin.ui.Window;
+
+/**
+ * UI to test if subwindows get the correct assistive roles.
+ *
+ * @author Vaadin Ltd
+ */
+public class WindowWaiAriaRoles extends AbstractTestUI {
+    Stack<Window> windows = new Stack<Window>();
+
+    /*
+     * (non-Javadoc)
+     *
+     * @see com.vaadin.tests.components.AbstractTestUI#setup(com.vaadin.server.
+     * VaadinRequest)
+     */
+    @Override
+    protected void setup(VaadinRequest request) {
+        Button closeButton = new Button("Close windows");
+        closeButton.addClickListener(new ClickListener() {
+
+            @Override
+            public void buttonClick(ClickEvent event) {
+                while (!windows.isEmpty()) {
+                    Window window = windows.pop();
+                    removeWindow(window);
+                }
+            }
+
+        });
+
+        Button regularButton = new Button("Regular");
+        regularButton.addClickListener(new ClickListener() {
+
+            @Override
+            public void buttonClick(ClickEvent event) {
+                Window regularWindow = new Window("Regular window");
+                openWindow(regularWindow);
+            }
+        });
+
+        Button alertButton = new Button("Alert");
+        alertButton.addClickListener(new ClickListener() {
+            @Override
+            public void buttonClick(ClickEvent event) {
+                Window alertWindow = new Window("Alert window");
+                alertWindow.setAssistiveRole(WindowRole.ALERTDIALOG);
+                openWindow(alertWindow);
+            }
+        });
+        addComponent(closeButton);
+        addComponent(regularButton);
+        addComponent(alertButton);
+    }
+
+    void openWindow(Window window) {
+        windows.push(window);
+        window.center();
+        addWindow(window);
+    }
+
+    /*
+     * (non-Javadoc)
+     *
+     * @see com.vaadin.tests.components.AbstractTestUI#getTestDescription()
+     */
+    @Override
+    protected String getTestDescription() {
+        return "The alert window should have the role 'alertdialog' and the regular window should have the role 'dialog'";
+    }
+
+    /*
+     * (non-Javadoc)
+     *
+     * @see com.vaadin.tests.components.AbstractTestUI#getTicketNumber()
+     */
+    @Override
+    protected Integer getTicketNumber() {
+        return 14289;
+    }
+
+}
diff --git a/uitest/src/com/vaadin/tests/accessibility/WindowWaiAriaRolesTest.java b/uitest/src/com/vaadin/tests/accessibility/WindowWaiAriaRolesTest.java
new file mode 100644 (file)
index 0000000..e1d0452
--- /dev/null
@@ -0,0 +1,54 @@
+/*
+ * Copyright 2000-2014 Vaadin Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+package com.vaadin.tests.accessibility;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+import com.vaadin.testbench.elements.ButtonElement;
+import com.vaadin.testbench.elements.WindowElement;
+import com.vaadin.tests.tb3.MultiBrowserTest;
+
+/**
+ * Test to see if regular and alert windows get the correct wai-aria roles
+ *
+ * @author Vaadin Ltd
+ */
+public class WindowWaiAriaRolesTest extends MultiBrowserTest {
+
+    @Test
+    public void testRegularWindowRole() {
+        openTestURL();
+
+        $(ButtonElement.class).caption("Regular").first().click();
+        String role = getWindowRole();
+        Assert.assertTrue("Dialog has incorrect role '" + role
+                + "', expected 'dialog'", "dialog".equals(role));
+    }
+
+    @Test
+    public void testAlertWindowRole() {
+        openTestURL();
+        $(ButtonElement.class).caption("Alert").first().click();
+        String role = getWindowRole();
+        Assert.assertTrue("Dialog has incorrect role '" + role
+                + "', expected 'alertdialog'", "alertdialog".equals(role));
+    }
+
+    public String getWindowRole() {
+        return $(WindowElement.class).first().getAttribute("role");
+    }
+}