Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(780)

Unified Diff: content/browser/accessibility/accessibility_ipc_error_browsertest.cc

Issue 625443002: Reset accessibility if it gets out of sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Replace random accessibility token with sequential Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/accessibility/accessibility_ipc_error_browsertest.cc
diff --git a/content/browser/accessibility/accessibility_ipc_error_browsertest.cc b/content/browser/accessibility/accessibility_ipc_error_browsertest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e67022dc07e4e547ab5c8dd38bf846ab39750204
--- /dev/null
+++ b/content/browser/accessibility/accessibility_ipc_error_browsertest.cc
@@ -0,0 +1,186 @@
+// Copyright (c) 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/frame_host/render_frame_host_impl.h"
+#include "content/browser/web_contents/web_contents_impl.h"
+#include "content/common/accessibility_messages.h"
+#include "content/public/test/browser_test_utils.h"
+#include "content/public/test/content_browser_test.h"
+#include "content/public/test/content_browser_test_utils.h"
+#include "content/shell/browser/shell.h"
+#include "content/test/accessibility_browser_test_utils.h"
+#include "ui/accessibility/ax_node.h"
+#include "ui/accessibility/ax_tree.h"
+
+namespace content {
+
+class AccessibilityIpcErrorBrowserTest : public ContentBrowserTest {
+ public:
+ AccessibilityIpcErrorBrowserTest() {}
+
+ protected:
+ // Convenience method to get the value of a particular AXNode
+ // attribute as a UTF-8 string.
+ std::string GetAttr(const ui::AXNode* node,
+ const ui::AXStringAttribute attr) {
+ const ui::AXNodeData& data = node->data();
+ for (size_t i = 0; i < data.string_attributes.size(); ++i) {
+ if (data.string_attributes[i].first == attr)
+ return data.string_attributes[i].second;
+ }
+ return std::string();
+ }
+
+ DISALLOW_COPY_AND_ASSIGN(AccessibilityIpcErrorBrowserTest);
+};
+
+IN_PROC_BROWSER_TEST_F(AccessibilityIpcErrorBrowserTest,
+ ResetBrowserAccessibilityManager) {
+ // Create a data url and load it.
+ const char url_str[] =
+ "data:text/html,"
+ "<div aria-live='polite'>"
+ " <p id='p1'>Paragraph One</p>"
+ " <p id='p2'>Paragraph Two</p>"
+ "</div>"
+ "<button id='button'>Button</button>";
+ GURL url(url_str);
+ NavigateToURL(shell(), url);
+
+ // Simulate a condition where the RFH can't create a
+ // BrowserAccessibilityManager - like if there's no view.
+ RenderFrameHostImpl* frame = static_cast<RenderFrameHostImpl*>(
+ shell()->web_contents()->GetMainFrame());
+ frame->set_disallow_browser_accessibility_manager_for_testing(true);
+ ASSERT_EQ(NULL, frame->GetOrCreateBrowserAccessibilityManager());
+
+ {
+ // Enable accessibility (passing AccessibilityModeComplete to
+ // AccessibilityNotificationWaiter does this automatically) and wait for
+ // the first event.
+ AccessibilityNotificationWaiter waiter(
+ shell(), AccessibilityModeComplete, ui::AX_EVENT_LAYOUT_COMPLETE);
+ waiter.WaitForNotification();
+ }
+
+ // Make sure we still didn't create a BrowserAccessibilityManager.
+ // This means that at least one accessibility IPC was lost.
+ ASSERT_EQ(NULL, frame->GetOrCreateBrowserAccessibilityManager());
+
+ // Now allow a BrowserAccessibilityManager, simulating what would happen
+ // if the RFH's view is created now.
+ frame->set_disallow_browser_accessibility_manager_for_testing(false);
+ BrowserAccessibilityManager* manager =
+ frame->GetOrCreateBrowserAccessibilityManager();
+ ASSERT_TRUE(manager != NULL);
+
+ {
+ // Hide one of the elements on the page, and wait for an accessibility
+ // notification triggered by the hide.
+ AccessibilityNotificationWaiter waiter(
+ shell(), AccessibilityModeComplete, ui::AX_EVENT_LIVE_REGION_CHANGED);
+ ASSERT_TRUE(ExecuteScript(
+ shell()->web_contents(),
+ "document.getElementById('p1').style.display = 'none';"));
+ waiter.WaitForNotification();
+ }
+
+ // Show that accessibility was reset because we have a new
+ // BrowserAccessibilityManager object.
+ ASSERT_TRUE(manager != frame->GetOrCreateBrowserAccessibilityManager());
+ const ui::AXTree* tree = NULL;
+ {
+ // Ensure that we didn't kill the renderer; we can still send it messages.
+ AccessibilityNotificationWaiter waiter(
+ shell(), AccessibilityModeComplete, ui::AX_EVENT_FOCUS);
+ ASSERT_TRUE(ExecuteScript(
+ shell()->web_contents(),
+ "document.getElementById('button').focus();"));
+ waiter.WaitForNotification();
+ tree = &waiter.GetAXTree();
+ }
+
+ // Get the accessibility tree, ensure it reflects the final state of the
+ // document.
+ const ui::AXNode* root = tree->GetRoot();
+
+ // Use this for debugging if the test fails.
+ VLOG(1) << tree->ToString();
+
+ EXPECT_EQ(ui::AX_ROLE_ROOT_WEB_AREA, root->data().role);
+ ASSERT_EQ(2, root->child_count());
+
+ const ui::AXNode* live_region = root->ChildAtIndex(0);
+ ASSERT_EQ(1, live_region->child_count());
+ EXPECT_EQ(ui::AX_ROLE_DIV, live_region->data().role);
+
+ const ui::AXNode* para = live_region->ChildAtIndex(0);
+ EXPECT_EQ(ui::AX_ROLE_PARAGRAPH, para->data().role);
+
+ const ui::AXNode* button_container = root->ChildAtIndex(1);
+ EXPECT_EQ(ui::AX_ROLE_GROUP, button_container->data().role);
+ ASSERT_EQ(1, button_container->child_count());
+
+ const ui::AXNode* button = button_container->ChildAtIndex(0);
+ EXPECT_EQ(ui::AX_ROLE_BUTTON, button->data().role);
+ EXPECT_TRUE(button->data().state >> ui::AX_STATE_FOCUSED & 1);
+}
+
+IN_PROC_BROWSER_TEST_F(AccessibilityIpcErrorBrowserTest,
+ MultipleBadAccessibilityIPCsKillsRenderer) {
+ // Create a data url and load it.
+ const char url_str[] =
+ "data:text/html,"
+ "<button id='button'>Button</button>";
+ GURL url(url_str);
+ NavigateToURL(shell(), url);
+ RenderFrameHostImpl* frame = static_cast<RenderFrameHostImpl*>(
+ shell()->web_contents()->GetMainFrame());
+
+ {
+ // Enable accessibility (passing AccessibilityModeComplete to
+ // AccessibilityNotificationWaiter does this automatically) and wait for
+ // the first event.
+ AccessibilityNotificationWaiter waiter(
+ shell(), AccessibilityModeComplete, ui::AX_EVENT_LAYOUT_COMPLETE);
+ waiter.WaitForNotification();
+ }
+
+ // Construct a bad accessibility message that BrowserAccessibilityManager
+ // will reject.
+ std::vector<AccessibilityHostMsg_EventParams> bad_accessibility_event_list;
+ bad_accessibility_event_list.push_back(AccessibilityHostMsg_EventParams());
+ bad_accessibility_event_list[0].update.node_id_to_clear = -2;
+
+ // We should be able to reset accessibility 4 times
+ // (see render_frame_host_impl.cc - kMaxAccessibilityResets),
+ // but the 5th time the renderer should be killed.
+
+ for (int iteration = 0; iteration < 5; iteration++) {
nasko 2014/10/03 15:58:41 Why not define the constant in a header and use it
dmazzoni 2014/10/03 19:08:11 Done.
+ // Send the browser accessibility the bad message.
+ BrowserAccessibilityManager* manager =
+ frame->GetOrCreateBrowserAccessibilityManager();
+ manager->OnAccessibilityEvents(bad_accessibility_event_list);
+
+ // Now the frame should have deleted the BrowserAccessibilityManager.
+ ASSERT_EQ(NULL, frame->browser_accessibility_manager());
+
+ if (iteration == 4)
+ break;
+
+ AccessibilityNotificationWaiter waiter(
+ shell(), AccessibilityModeComplete, ui::AX_EVENT_LAYOUT_COMPLETE);
+ waiter.WaitForNotification();
+ }
+
+ // The 5th time, the renderer will be killed, so attempting to execute
+ // a script in the page will fail, and after ExecuteScript returns (it's
+ // blocking), the frame host should know that its frame is dead.
+ ASSERT_FALSE(ExecuteScript(
nasko 2014/10/03 15:58:41 Is this extra step needed? There is RenderProcessH
dmazzoni 2014/10/03 19:08:12 Done.
+ shell()->web_contents(),
+ "document.getElementById('button').focus();"));
+ ASSERT_FALSE(frame->IsRenderFrameLive());
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698