1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
// Copyright 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 "base/prefs/pref_service.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/chrome_pages.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/url_constants.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/interactive_test_utils.h"
#include "chrome/test/base/ui_test_utils.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/browser_test_utils.h"
#include "ui/base/l10n/l10n_util.h"
namespace language_options_ui_test {
namespace {
// This class will test the language options settings.
// This test is part of the interactive_ui_tests isntead of browser_tests
// because it is necessary to emulate pushing a button in order to properly
// test accessibility.
class LanguageOptionsWebUITest : public InProcessBrowserTest {
public:
LanguageOptionsWebUITest() {}
// This method will navigate to the language settings page and show
// a subset of languages from the list of available languages.
void SetUpOnMainThread() override {
#if defined(OS_CHROMEOS)
auto setting_name = prefs::kLanguagePreferredLanguages;
#else
auto setting_name = prefs::kAcceptLanguages;
#endif
const GURL url = chrome::GetSettingsUrl(chrome::kLanguageOptionsSubPage);
ui_test_utils::NavigateToURL(browser(), url);
browser()->profile()->GetPrefs()->SetString(setting_name, "en-US,es,fr");
}
protected:
// Will get the id of the element in the UI that has focus.
std::string GetActiveElementId() {
std::string get_element_id_script =
"domAutomationController.send(document.activeElement.id);";
std::string element_id;
EXPECT_TRUE(content::ExecuteScriptAndExtractString(
GetActiveFrame(),
get_element_id_script,
&element_id));
return element_id;
}
content::RenderFrameHost* GetActiveFrame() {
return GetActiveWebContents()->GetFocusedFrame();
}
content::RenderViewHost* GetRenderViewHost() {
return GetActiveWebContents()->GetRenderViewHost();
}
content::WebContents* GetActiveWebContents() {
return browser()->tab_strip_model()->GetActiveWebContents();
}
// Press and release a key in the browser. This will wait for the element on
// the page to change.
bool PressKey(ui::KeyboardCode key_code) {
return ui_test_utils::SendKeyPressAndWait(
browser(),
key_code,
false,
false,
false,
false,
content::NOTIFICATION_FOCUS_CHANGED_IN_PAGE,
content::Source<content::RenderViewHost>(GetRenderViewHost()));
}
private:
DISALLOW_COPY_AND_ASSIGN(LanguageOptionsWebUITest);
};
} // namespace
// This test will verify that the appropriate languages are available.
// This test will also fail if the language page is not loaded because a random
// page will not have the language list.
// Test assumes that the default active element is the list of languages.
IN_PROC_BROWSER_TEST_F(LanguageOptionsWebUITest, TestAvailableLanguages) {
// Verify that the language list is focused by default.
std::string original_id = GetActiveElementId();
EXPECT_EQ("language-options-list", original_id);
content::RenderFrameHost* active_frame = GetActiveFrame();
std::string count_deletable_items_script =
"domAutomationController.send("
" document.activeElement.querySelectorAll('.deletable-item').length);";
// Count the number of languages in the list.
int language_count = 0;
ASSERT_TRUE(content::ExecuteScriptAndExtractInt(
active_frame,
count_deletable_items_script,
&language_count));
EXPECT_EQ(3, language_count);
std::string get_children_of_current_element_script =
"domAutomationController.send(document.activeElement.textContent);";
// Verify that the correct languages are added to the list.
std::string languages;
ASSERT_TRUE(content::ExecuteScriptAndExtractString(
active_frame,
get_children_of_current_element_script,
&languages));
EXPECT_EQ("English (United States)SpanishFrench", languages);
}
// This test will validate that the language webui is accessible through
// the keyboard.
// This test must be updated if the tab order of the elements on this page
// is chagned.
// flaky: http://crbug.com/405711
IN_PROC_BROWSER_TEST_F(LanguageOptionsWebUITest, TestListTabAccessibility) {
// Verify that the language list is focused by default.
std::string original_id = GetActiveElementId();
EXPECT_EQ("language-options-list", original_id);
// Press tab to select the next element.
ASSERT_TRUE(PressKey(ui::VKEY_TAB));
// Make sure that the element is now the button that is next in the tab order.
// Checking that the list is no longer selected is not sufficient to validate
// this use case because this test should fail if an item inside the list is
// selected.
std::string new_id = GetActiveElementId();
EXPECT_EQ("language-options-add-button", new_id);
}
} // namespace language_options_ui_test
|