blob: 4449cea28e006fd042066fb8da84a0ee79b359bf [file] [log] [blame]
// Copyright (c) 2017 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 "chrome/browser/ssl/ssl_blocking_page.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/security_interstitials/core/controller_client.h"
#include "content/public/browser/interstitial_page.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/test/browser_test_utils.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "net/test/embedded_test_server/request_handler_util.h"
const base::FilePath::CharType kDocRoot[] =
FILE_PATH_LITERAL("chrome/test/data");
class InterstitialAccessibilityBrowserTest : public InProcessBrowserTest {
public:
InterstitialAccessibilityBrowserTest()
: https_server_mismatched_(net::EmbeddedTestServer::TYPE_HTTPS) {
https_server_mismatched_.SetSSLConfig(
net::EmbeddedTestServer::CERT_MISMATCHED_NAME);
https_server_mismatched_.AddDefaultHandlers(base::FilePath(kDocRoot));
}
std::string GetNameOfFocusedNode(content::WebContents* web_contents) {
ui::AXNodeData focused_node_data =
content::GetFocusedAccessibilityNodeInfo(web_contents);
return focused_node_data.GetStringAttribute(
ax::mojom::StringAttribute::kName);
}
protected:
net::EmbeddedTestServer https_server_mismatched_;
void ProceedThroughInterstitial(content::WebContents* web_contents) {
content::InterstitialPage* interstitial_page =
web_contents->GetInterstitialPage();
ASSERT_TRUE(interstitial_page);
ASSERT_EQ(SSLBlockingPage::kTypeForTesting,
interstitial_page->GetDelegateForTesting()->GetTypeForTesting());
SSLBlockingPage* ssl_interstitial = static_cast<SSLBlockingPage*>(
interstitial_page->GetDelegateForTesting());
ssl_interstitial->CommandReceived(
base::IntToString(security_interstitials::CMD_PROCEED));
}
};
IN_PROC_BROWSER_TEST_F(InterstitialAccessibilityBrowserTest,
TestSSLInterstitialAccessibility) {
ui_test_utils::NavigateToURL(browser(), GURL("about:blank"));
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
content::EnableAccessibilityForWebContents(web_contents);
ASSERT_TRUE(https_server_mismatched_.Start());
// Navigate to a page with an SSL error on it.
ui_test_utils::NavigateToURL(
browser(), https_server_mismatched_.GetURL("/ssl/blank_page.html"));
// Ensure that we got an interstitial page.
ASSERT_FALSE(web_contents->IsCrashed());
content::NavigationEntry* entry =
web_contents->GetController().GetActiveEntry();
ASSERT_TRUE(entry);
EXPECT_TRUE(entry->GetPageType() == content::PAGE_TYPE_ERROR ||
entry->GetPageType() == content::PAGE_TYPE_INTERSTITIAL);
// Now check from the perspective of accessibility - we should be focused
// on a page with title "Privacy error". Keep waiting on accessibility
// focus events until we get that page.
while (GetNameOfFocusedNode(web_contents) != "Privacy error")
content::WaitForAccessibilityFocusChange();
// Now proceed through the interstitial and ensure we get accessibility
// focus on the actual page.
ProceedThroughInterstitial(web_contents);
while (GetNameOfFocusedNode(web_contents) != "I am a blank page.")
content::WaitForAccessibilityFocusChange();
}