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 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
// Copyright 2013 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/command_line.h"
#include "base/files/file_path.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/infobars/infobar_service.h"
#include "chrome/browser/translate/translate_service.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/test_switches.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/infobars/core/infobar.h"
#include "components/translate/core/browser/translate_infobar_delegate.h"
#include "components/translate/core/browser/translate_manager.h"
#include "components/translate/core/browser/translate_script.h"
#include "components/translate/core/common/translate_switches.h"
#include "content/public/browser/notification_service.h"
#include "content/public/test/browser_test_utils.h"
#include "net/http/http_status_code.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "net/test/spawned_test_server/spawned_test_server.h"
#include "net/url_request/test_url_fetcher_factory.h"
#include "net/url_request/url_fetcher_delegate.h"
namespace {
const base::FilePath::CharType kTranslateRoot[] =
FILE_PATH_LITERAL("chrome/test/data/translate");
const char kNonSecurePrefix[] = "/translate/";
const char kSecurePrefix[] = "files/";
const char kFrenchTestPath[] = "fr_test.html";
const char kRefreshMetaTagTestPath[] = "refresh_meta_tag.html";
const char kRefreshMetaTagCaseInsensitiveTestPath[] =
"refresh_meta_tag_casei.html";
const char kRefreshMetaTagAtOnloadTestPath[] =
"refresh_meta_tag_at_onload.html";
const char kUpdateLocationTestPath[] = "update_location.html";
const char kUpdateLocationAtOnloadTestPath[] = "update_location_at_onload.html";
const char kMainScriptPath[] = "pseudo_main.js";
const char kElementMainScriptPath[] = "pseudo_element_main.js";
}; // namespace
class TranslateBrowserTest : public InProcessBrowserTest {
public:
TranslateBrowserTest()
: https_server_(net::SpawnedTestServer::TYPE_HTTPS,
SSLOptions(SSLOptions::CERT_OK),
base::FilePath(kTranslateRoot)),
infobar_service_(NULL) {}
void SetUpCommandLine(base::CommandLine* command_line) override {
ASSERT_TRUE(https_server_.Start());
// Setup alternate security origin for testing in order to allow XHR against
// local test server. Note that this flag shows a confirm infobar in tests.
GURL base_url = GetSecureURL("");
command_line->AppendSwitchASCII(
translate::switches::kTranslateSecurityOrigin,
base_url.GetOrigin().spec());
}
protected:
GURL GetNonSecureURL(const std::string& path) const {
std::string prefix(kNonSecurePrefix);
return embedded_test_server()->GetURL(prefix + path);
}
GURL GetSecureURL(const std::string& path) const {
std::string prefix(kSecurePrefix);
return https_server_.GetURL(prefix + path);
}
translate::TranslateInfoBarDelegate* GetExistingTranslateInfoBarDelegate() {
if (!infobar_service_) {
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
if (web_contents)
infobar_service_ = InfoBarService::FromWebContents(web_contents);
}
if (!infobar_service_) {
ADD_FAILURE() << "infobar service is not available";
return NULL;
}
translate::TranslateInfoBarDelegate* delegate = NULL;
for (size_t i = 0; i < infobar_service_->infobar_count(); ++i) {
// Check if the shown infobar is a confirm infobar coming from the
// |kTranslateSecurityOrigin| flag specified in SetUpCommandLine().
// This infobar appears in all tests of TranslateBrowserTest and can be
// ignored here.
if (infobar_service_->infobar_at(i)->delegate()->
AsConfirmInfoBarDelegate()) {
continue;
}
translate::TranslateInfoBarDelegate* translate =
infobar_service_->infobar_at(i)
->delegate()
->AsTranslateInfoBarDelegate();
if (translate) {
EXPECT_FALSE(delegate) << "multiple infobars are shown unexpectedly";
delegate = translate;
continue;
}
// Other infobar should not be shown.
EXPECT_TRUE(delegate);
}
return delegate;
}
private:
net::SpawnedTestServer https_server_;
InfoBarService* infobar_service_;
typedef net::SpawnedTestServer::SSLOptions SSLOptions;
DISALLOW_COPY_AND_ASSIGN(TranslateBrowserTest);
};
IN_PROC_BROWSER_TEST_F(TranslateBrowserTest, TranslateInIsolatedWorld) {
// TODO(port): Test corresponding bubble translate UX: http://crbug.com/383235
if (TranslateService::IsTranslateBubbleEnabled())
return;
net::TestURLFetcherFactory factory;
ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
// Check if there is no Translate infobar.
translate::TranslateInfoBarDelegate* translate =
GetExistingTranslateInfoBarDelegate();
EXPECT_FALSE(translate);
// Setup infobar observer.
content::WindowedNotificationObserver infobar(
chrome::NOTIFICATION_TAB_CONTENTS_INFOBAR_ADDED,
content::NotificationService::AllSources());
// Setup page title observer.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_TRUE(web_contents);
content::TitleWatcher watcher(web_contents, base::ASCIIToUTF16("PASS"));
watcher.AlsoWaitForTitle(base::ASCIIToUTF16("FAIL"));
// Visit non-secure page which is going to be translated.
ui_test_utils::NavigateToURL(browser(), GetNonSecureURL(kFrenchTestPath));
// Wait for Chrome Translate infobar.
infobar.Wait();
// Perform Chrome Translate.
translate = GetExistingTranslateInfoBarDelegate();
ASSERT_TRUE(translate);
translate->Translate();
// Hook URLFetcher for element.js.
GURL script1_url = GetSecureURL(kMainScriptPath);
GURL script2_url = GetSecureURL(kElementMainScriptPath);
std::string element_js = "main_script_url = '" + script1_url.spec() + "';\n";
element_js += "element_main_script_url = '" + script2_url.spec() + "';\n";
element_js +=
"google = { 'translate' : { 'TranslateService' : function() { return {\n"
" isAvailable: function() {\n"
" cr.googleTranslate.onLoadJavascript(main_script_url);\n"
" return true;\n"
" },\n"
" translatePage: function(sl, tl, cb) {\n"
" cb(1, true);\n"
" }\n"
"} } } };\n"
"cr.googleTranslate.onTranslateElementLoad();\n";
net::TestURLFetcher* fetcher =
factory.GetFetcherByID(translate::TranslateScript::kFetcherId);
ASSERT_TRUE(fetcher);
net::URLRequestStatus status;
status.set_status(net::URLRequestStatus::SUCCESS);
fetcher->set_status(status);
fetcher->set_url(fetcher->GetOriginalURL());
fetcher->set_response_code(net::HTTP_OK);
fetcher->SetResponseString(element_js);
fetcher->delegate()->OnURLFetchComplete(fetcher);
// Wait for the page title is changed after the test finished.
const base::string16 result = watcher.WaitAndGetTitle();
EXPECT_EQ("PASS", base::UTF16ToASCII(result));
}
IN_PROC_BROWSER_TEST_F(TranslateBrowserTest, IgnoreRefreshMetaTag) {
// TODO(port): Test corresponding bubble translate UX: http://crbug.com/383235
if (TranslateService::IsTranslateBubbleEnabled())
return;
ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
// Check if there is no Translate infobar.
translate::TranslateInfoBarDelegate* translate =
GetExistingTranslateInfoBarDelegate();
EXPECT_FALSE(translate);
// Setup page title observer.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_TRUE(web_contents);
content::TitleWatcher watcher(web_contents, base::ASCIIToUTF16("PASS"));
watcher.AlsoWaitForTitle(base::ASCIIToUTF16("FAIL"));
// Visit a test page.
ui_test_utils::NavigateToURL(
browser(),
GetNonSecureURL(kRefreshMetaTagTestPath));
// Wait for the page title is changed after the test finished.
const base::string16 result = watcher.WaitAndGetTitle();
EXPECT_EQ("PASS", base::UTF16ToASCII(result));
// Check if there is no Translate infobar.
translate = GetExistingTranslateInfoBarDelegate();
EXPECT_FALSE(translate);
}
IN_PROC_BROWSER_TEST_F(TranslateBrowserTest,
IgnoreRefreshMetaTagInCaseInsensitive) {
// TODO(port): Test corresponding bubble translate UX: http://crbug.com/383235
if (TranslateService::IsTranslateBubbleEnabled())
return;
ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
// Check if there is no Translate infobar.
translate::TranslateInfoBarDelegate* translate =
GetExistingTranslateInfoBarDelegate();
EXPECT_FALSE(translate);
// Setup page title observer.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_TRUE(web_contents);
content::TitleWatcher watcher(web_contents, base::ASCIIToUTF16("PASS"));
watcher.AlsoWaitForTitle(base::ASCIIToUTF16("FAIL"));
// Visit a test page.
ui_test_utils::NavigateToURL(
browser(),
GetNonSecureURL(kRefreshMetaTagCaseInsensitiveTestPath));
// Wait for the page title is changed after the test finished.
const base::string16 result = watcher.WaitAndGetTitle();
EXPECT_EQ("PASS", base::UTF16ToASCII(result));
// Check if there is no Translate infobar.
translate = GetExistingTranslateInfoBarDelegate();
EXPECT_FALSE(translate);
}
IN_PROC_BROWSER_TEST_F(TranslateBrowserTest, IgnoreRefreshMetaTagAtOnload) {
// TODO(port): Test corresponding bubble translate UX: http://crbug.com/383235
if (TranslateService::IsTranslateBubbleEnabled())
return;
ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
// Check if there is no Translate infobar.
translate::TranslateInfoBarDelegate* translate =
GetExistingTranslateInfoBarDelegate();
EXPECT_FALSE(translate);
// Setup page title observer.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_TRUE(web_contents);
content::TitleWatcher watcher(web_contents, base::ASCIIToUTF16("PASS"));
watcher.AlsoWaitForTitle(base::ASCIIToUTF16("FAIL"));
// Visit a test page.
ui_test_utils::NavigateToURL(
browser(),
GetNonSecureURL(kRefreshMetaTagAtOnloadTestPath));
// Wait for the page title is changed after the test finished.
const base::string16 result = watcher.WaitAndGetTitle();
EXPECT_EQ("PASS", base::UTF16ToASCII(result));
// Check if there is no Translate infobar.
translate = GetExistingTranslateInfoBarDelegate();
EXPECT_FALSE(translate);
}
IN_PROC_BROWSER_TEST_F(TranslateBrowserTest, UpdateLocation) {
// TODO(port): Test corresponding bubble translate UX: http://crbug.com/383235
if (TranslateService::IsTranslateBubbleEnabled())
return;
ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
// Check if there is no Translate infobar.
translate::TranslateInfoBarDelegate* translate =
GetExistingTranslateInfoBarDelegate();
EXPECT_FALSE(translate);
// Setup page title observer.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_TRUE(web_contents);
content::TitleWatcher watcher(web_contents, base::ASCIIToUTF16("PASS"));
watcher.AlsoWaitForTitle(base::ASCIIToUTF16("FAIL"));
// Visit a test page.
ui_test_utils::NavigateToURL(
browser(),
GetNonSecureURL(kUpdateLocationTestPath));
// Wait for the page title is changed after the test finished.
const base::string16 result = watcher.WaitAndGetTitle();
EXPECT_EQ("PASS", base::UTF16ToASCII(result));
// Check if there is no Translate infobar.
translate = GetExistingTranslateInfoBarDelegate();
EXPECT_FALSE(translate);
}
IN_PROC_BROWSER_TEST_F(TranslateBrowserTest, UpdateLocationAtOnload) {
// TODO(port): Test corresponding bubble translate UX: http://crbug.com/383235
if (TranslateService::IsTranslateBubbleEnabled())
return;
ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
// Check if there is no Translate infobar.
translate::TranslateInfoBarDelegate* translate =
GetExistingTranslateInfoBarDelegate();
EXPECT_FALSE(translate);
// Setup page title observer.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_TRUE(web_contents);
content::TitleWatcher watcher(web_contents, base::ASCIIToUTF16("PASS"));
watcher.AlsoWaitForTitle(base::ASCIIToUTF16("FAIL"));
// Visit a test page.
ui_test_utils::NavigateToURL(
browser(),
GetNonSecureURL(kUpdateLocationAtOnloadTestPath));
// Wait for the page title is changed after the test finished.
const base::string16 result = watcher.WaitAndGetTitle();
EXPECT_EQ("PASS", base::UTF16ToASCII(result));
// Check if there is no Translate infobar.
translate = GetExistingTranslateInfoBarDelegate();
EXPECT_FALSE(translate);
}
|