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 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stddef.h>
#include "base/path_service.h"
#include "base/strings/stringprintf.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/extensions/browsertest_util.h"
#include "chrome/browser/extensions/extension_apitest.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/url_constants.h"
#include "chrome/test/base/ui_test_utils.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/result_codes.h"
#include "content/public/common/url_constants.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/test_navigation_observer.h"
#include "extensions/browser/extension_host.h"
#include "extensions/browser/process_manager.h"
#include "extensions/common/constants.h"
#include "extensions/common/extension.h"
#include "extensions/common/manifest_constants.h"
#include "extensions/test/extension_test_message_listener.h"
#include "extensions/test/result_catcher.h"
#include "net/dns/mock_host_resolver.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/base_window.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "ash/wm/window_pin_util.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/extensions/window_controller.h"
#include "chrome/browser/extensions/window_controller_list.h"
#include "chrome/browser/ui/browser_command_controller.h"
#include "chromeos/ui/base/window_pin_type.h"
#include "ui/aura/window.h"
#endif
using content::OpenURLParams;
using content::Referrer;
using content::WebContents;
namespace aura {
class Window;
}
namespace extensions {
class WindowOpenApiTest : public ExtensionApiTest {
void SetUpOnMainThread() override {
ExtensionApiTest::SetUpOnMainThread();
host_resolver()->AddRule("*", "127.0.0.1");
}
};
bool WaitForTabsPopupsApps(Browser* browser,
int num_tabs,
int num_popups,
int num_app_popups) {
SCOPED_TRACE(base::StringPrintf(
"WaitForTabsPopupsApps tabs:%d, popups:%d, app_popups:%d", num_tabs,
num_popups, num_app_popups));
// We start with one tab and one browser already open.
++num_tabs;
size_t num_browsers = static_cast<size_t>(num_popups + num_app_popups) + 1;
const base::TimeDelta kWaitTime = base::Seconds(10);
base::TimeTicks end_time = base::TimeTicks::Now() + kWaitTime;
while (base::TimeTicks::Now() < end_time) {
if (extensions::browsertest_util::GetWindowControllerCountInProfile(
browser->profile()) == num_browsers &&
browser->tab_strip_model()->count() == num_tabs) {
break;
}
content::RunAllTasksUntilIdle();
}
EXPECT_EQ(num_browsers,
extensions::browsertest_util::GetWindowControllerCountInProfile(
browser->profile()));
EXPECT_EQ(num_tabs, browser->tab_strip_model()->count());
int num_popups_seen = 0;
int num_app_popups_seen = 0;
for (Browser* b : *BrowserList::GetInstance()) {
if (b == browser) {
continue;
}
EXPECT_TRUE(b->is_type_popup() || b->is_type_app_popup());
if (b->is_type_popup())
++num_popups_seen;
else if (b->is_type_app_popup())
++num_app_popups_seen;
}
EXPECT_EQ(num_popups, num_popups_seen);
EXPECT_EQ(num_app_popups, num_app_popups_seen);
return ((num_browsers ==
extensions::browsertest_util::GetWindowControllerCountInProfile(
browser->profile())) &&
(num_tabs == browser->tab_strip_model()->count()) &&
(num_popups == num_popups_seen) &&
(num_app_popups == num_app_popups_seen));
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, BrowserIsApp) {
ASSERT_TRUE(StartEmbeddedTestServer());
ASSERT_TRUE(LoadExtension(
test_data_dir_.AppendASCII("window_open").AppendASCII("browser_is_app")));
EXPECT_TRUE(WaitForTabsPopupsApps(browser(), 0, 0, 2));
for (Browser* b : *BrowserList::GetInstance()) {
if (b == browser())
ASSERT_FALSE(b->is_type_app_popup());
else
ASSERT_TRUE(b->is_type_app_popup());
}
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, WindowOpenPopupDefault) {
ASSERT_TRUE(StartEmbeddedTestServer());
ASSERT_TRUE(LoadExtension(
test_data_dir_.AppendASCII("window_open").AppendASCII("popup")));
EXPECT_TRUE(WaitForTabsPopupsApps(browser(), 1, 0, 0));
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, WindowOpenPopupIframe) {
base::FilePath test_data_dir;
base::PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir);
embedded_test_server()->ServeFilesFromDirectory(test_data_dir);
ASSERT_TRUE(StartEmbeddedTestServer());
ASSERT_TRUE(LoadExtension(
test_data_dir_.AppendASCII("window_open").AppendASCII("popup_iframe")));
EXPECT_TRUE(WaitForTabsPopupsApps(browser(), 1, 0, 0));
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, WindowOpenPopupLarge) {
ASSERT_TRUE(StartEmbeddedTestServer());
ASSERT_TRUE(LoadExtension(
test_data_dir_.AppendASCII("window_open").AppendASCII("popup_large")));
// On other systems this should open a new popup window.
EXPECT_TRUE(WaitForTabsPopupsApps(browser(), 0, 0, 1));
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, WindowOpenPopupSmall) {
ASSERT_TRUE(StartEmbeddedTestServer());
ASSERT_TRUE(LoadExtension(
test_data_dir_.AppendASCII("window_open").AppendASCII("popup_small")));
// On ChromeOS this should open a new panel (acts like a new popup window).
// On other systems this should open a new popup window.
EXPECT_TRUE(WaitForTabsPopupsApps(browser(), 0, 0, 1));
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, PopupBlockingExtension) {
ASSERT_TRUE(StartEmbeddedTestServer());
ASSERT_TRUE(LoadExtension(
test_data_dir_.AppendASCII("window_open").AppendASCII("popup_blocking")
.AppendASCII("extension")));
EXPECT_TRUE(WaitForTabsPopupsApps(browser(), 5, 2, 1));
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, PopupBlockingHostedApp) {
ASSERT_TRUE(embedded_test_server()->Start());
ASSERT_TRUE(LoadExtension(
test_data_dir_.AppendASCII("window_open").AppendASCII("popup_blocking")
.AppendASCII("hosted_app")));
// The app being tested owns the domain a.com . The test URLs we navigate
// to below must be within that domain, so that they fall within the app's
// web extent.
GURL::Replacements replace_host;
replace_host.SetHostStr("a.com");
const std::string popup_app_contents_path(
"/extensions/api_test/window_open/popup_blocking/hosted_app/");
GURL open_tab = embedded_test_server()
->GetURL(popup_app_contents_path + "open_tab.html")
.ReplaceComponents(replace_host);
GURL open_popup = embedded_test_server()
->GetURL(popup_app_contents_path + "open_popup.html")
.ReplaceComponents(replace_host);
browser()->OpenURL(OpenURLParams(open_tab, Referrer(),
WindowOpenDisposition::NEW_FOREGROUND_TAB,
ui::PAGE_TRANSITION_TYPED, false),
/*navigation_handle_callback=*/{});
browser()->OpenURL(OpenURLParams(open_popup, Referrer(),
WindowOpenDisposition::NEW_FOREGROUND_TAB,
ui::PAGE_TRANSITION_TYPED, false),
/*navigation_handle_callback=*/{});
EXPECT_TRUE(WaitForTabsPopupsApps(browser(), 3, 1, 0));
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, WindowArgumentsOverflow) {
ASSERT_TRUE(RunExtensionTest("window_open/argument_overflow")) << message_;
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, WindowOpener) {
ASSERT_TRUE(RunExtensionTest("window_open/opener")) << message_;
}
// Ensure that the width and height properties of a window opened with
// chrome.windows.create match the creation parameters. See crbug.com/173831.
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, WindowOpenSized) {
ASSERT_TRUE(RunExtensionTest("window_open/window_size")) << message_;
EXPECT_TRUE(WaitForTabsPopupsApps(browser(), 0, 0, 1));
}
// Tests that an extension page can call window.open to an extension URL and
// the new window has extension privileges.
IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest, WindowOpenExtension) {
ASSERT_TRUE(LoadExtension(
test_data_dir_.AppendASCII("uitest").AppendASCII("window_open")));
GURL start_url(std::string(extensions::kExtensionScheme) +
url::kStandardSchemeSeparator +
last_loaded_extension_id() + "/test.html");
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), start_url));
WebContents* newtab = nullptr;
ASSERT_NO_FATAL_FAILURE(
OpenWindow(browser()->tab_strip_model()->GetActiveWebContents(),
start_url.Resolve("newtab.html"), true, true, &newtab));
EXPECT_EQ(true, content::EvalJs(newtab, "testExtensionApi()"));
}
// Tests that if an extension page calls window.open to an invalid extension
// URL, the browser doesn't crash.
IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest, WindowOpenInvalidExtension) {
const extensions::Extension* extension = LoadExtension(
test_data_dir_.AppendASCII("uitest").AppendASCII("window_open"));
ASSERT_TRUE(extension);
GURL start_url = extension->GetResourceURL("/test.html");
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), start_url));
WebContents* newtab = nullptr;
bool new_page_in_same_process = false;
bool expect_success = false;
GURL broken_extension_url(
"chrome-extension://thisissurelynotavalidextensionid/newtab.html");
ASSERT_NO_FATAL_FAILURE(OpenWindow(
browser()->tab_strip_model()->GetActiveWebContents(),
broken_extension_url, new_page_in_same_process, expect_success, &newtab));
EXPECT_EQ(broken_extension_url,
newtab->GetPrimaryMainFrame()->GetLastCommittedURL());
EXPECT_EQ(content::PAGE_TYPE_ERROR,
newtab->GetController().GetLastCommittedEntry()->GetPageType());
}
// Tests that calling window.open from the newtab page to an extension URL
// gives the new window extension privileges - even though the opening page
// does not have extension privileges, we break the script connection, so
// there is no privilege leak.
IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest, WindowOpenNoPrivileges) {
ASSERT_TRUE(LoadExtension(
test_data_dir_.AppendASCII("uitest").AppendASCII("window_open")));
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL("about:blank")));
WebContents* newtab = nullptr;
ASSERT_NO_FATAL_FAILURE(
OpenWindow(browser()->tab_strip_model()->GetActiveWebContents(),
GURL(std::string(extensions::kExtensionScheme) +
url::kStandardSchemeSeparator +
last_loaded_extension_id() + "/newtab.html"),
false, true, &newtab));
// Extension API should succeed.
EXPECT_EQ(true, content::EvalJs(newtab, "testExtensionApi()"));
}
// Tests that calling window.open for an extension URL from a non-HTTP or HTTPS
// URL on a new tab cannot access non-web-accessible resources.
IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest,
WindowOpenInaccessibleResourceFromDataURL) {
const extensions::Extension* extension = LoadExtension(
test_data_dir_.AppendASCII("uitest").AppendASCII("window_open"));
ASSERT_TRUE(extension);
ASSERT_TRUE(
ui_test_utils::NavigateToURL(browser(), GURL("data:text/html,foo")));
// test.html is not web-accessible and should not be loaded.
GURL extension_url(extension->GetResourceURL("test.html"));
content::CreateAndLoadWebContentsObserver windowed_observer;
ASSERT_TRUE(
content::ExecJs(browser()->tab_strip_model()->GetActiveWebContents(),
"window.open('" + extension_url.spec() + "');"));
content::WebContents* newtab = windowed_observer.Wait();
ASSERT_TRUE(newtab);
EXPECT_EQ(content::PAGE_TYPE_ERROR,
newtab->GetController().GetLastCommittedEntry()->GetPageType());
EXPECT_EQ(extension_url,
newtab->GetPrimaryMainFrame()->GetLastCommittedURL());
EXPECT_FALSE(
newtab->GetPrimaryMainFrame()->GetSiteInstance()->GetSiteURL().SchemeIs(
extensions::kExtensionScheme));
}
// Test that navigating to an extension URL is allowed on chrome://.
// See https://crbug.com/662602.
IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest,
NavigateToInaccessibleResourceFromChromeURL) {
// Mint an extension URL which is not web-accessible.
const extensions::Extension* extension = LoadExtension(
test_data_dir_.AppendASCII("uitest").AppendASCII("window_open"));
ASSERT_TRUE(extension);
GURL extension_url(extension->GetResourceURL("test.html"));
content::WebContents* tab =
browser()->tab_strip_model()->GetActiveWebContents();
// Navigate to the non-web-accessible URL from chrome:// and
// chrome-search:// pages. Verify that the page loads correctly.
GURL history_url(chrome::kChromeUIHistoryURL);
ASSERT_TRUE(history_url.SchemeIs(content::kChromeUIScheme));
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), history_url));
EXPECT_EQ(history_url, tab->GetPrimaryMainFrame()->GetLastCommittedURL());
content::TestNavigationObserver observer(tab);
ASSERT_TRUE(
content::ExecJs(tab, "location.href = '" + extension_url.spec() + "';"));
observer.Wait();
EXPECT_EQ(extension_url, tab->GetPrimaryMainFrame()->GetLastCommittedURL());
EXPECT_EQ("HOWDIE!!!", content::EvalJs(tab, "document.body.innerText"));
}
#if BUILDFLAG(IS_CHROMEOS)
namespace {
aura::Window* GetCurrentWindow() {
extensions::WindowController* controller = nullptr;
for (extensions::WindowController* window :
*extensions::WindowControllerList::GetInstance()) {
if (window->window()->IsActive()) {
controller = window;
break;
}
}
EXPECT_TRUE(controller);
return controller->window()->GetNativeWindow();
}
chromeos::WindowPinType GetCurrentWindowPinType() {
chromeos::WindowPinType type = GetWindowPinType(GetCurrentWindow());
return type;
}
void SetCurrentWindowPinType(chromeos::WindowPinType type) {
if (type == chromeos::WindowPinType::kNone) {
UnpinWindow(GetCurrentWindow());
} else {
PinWindow(GetCurrentWindow(), /*trusted=*/true);
}
}
} // namespace
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, OpenLockedFullscreenWindow) {
ASSERT_TRUE(RunExtensionTest("locked_fullscreen/with_permission",
{.custom_arg = "openLockedFullscreenWindow"}))
<< message_;
// Make sure the newly created window is "trusted pinned" (which means that
// it's in locked fullscreen mode).
EXPECT_EQ(chromeos::WindowPinType::kTrustedPinned, GetCurrentWindowPinType());
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, UpdateWindowToLockedFullscreen) {
ASSERT_TRUE(
RunExtensionTest("locked_fullscreen/with_permission",
{.custom_arg = "updateWindowToLockedFullscreen"}))
<< message_;
// Make sure the current window is put into the "trusted pinned" state.
EXPECT_EQ(chromeos::WindowPinType::kTrustedPinned, GetCurrentWindowPinType());
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, RemoveLockedFullscreenFromWindow) {
// After locking the window, do a LockedFullscreenStateChanged so the
// command_controller state catches up as well.
SetCurrentWindowPinType(chromeos::WindowPinType::kTrustedPinned);
browser()->command_controller()->LockedFullscreenStateChanged();
ASSERT_TRUE(
RunExtensionTest("locked_fullscreen/with_permission",
{.custom_arg = "removeLockedFullscreenFromWindow"}))
<< message_;
// Make sure the current window is removed from locked-fullscreen state.
EXPECT_EQ(chromeos::WindowPinType::kNone, GetCurrentWindowPinType());
}
// Make sure that commands disabling code works in locked fullscreen mode.
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest, VerifyCommandsInLockedFullscreen) {
// IDC_EXIT is always enabled in regular mode so it's a perfect candidate for
// testing.
EXPECT_TRUE(browser()->command_controller()->IsCommandEnabled(IDC_EXIT));
ASSERT_TRUE(
RunExtensionTest("locked_fullscreen/with_permission",
{.custom_arg = "updateWindowToLockedFullscreen"}))
<< message_;
// IDC_EXIT should always be disabled in locked fullscreen.
EXPECT_FALSE(browser()->command_controller()->IsCommandEnabled(IDC_EXIT));
// Some other disabled commands.
EXPECT_FALSE(browser()->command_controller()->IsCommandEnabled(IDC_FIND));
EXPECT_FALSE(
browser()->command_controller()->IsCommandEnabled(IDC_ZOOM_PLUS));
// Verify some allowlisted commands.
EXPECT_TRUE(browser()->command_controller()->IsCommandEnabled(IDC_COPY));
EXPECT_TRUE(browser()->command_controller()->IsCommandEnabled(IDC_PASTE));
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest,
OpenLockedFullscreenWindowWithoutPermission) {
ASSERT_TRUE(RunExtensionTest("locked_fullscreen/without_permission",
{.custom_arg = "openLockedFullscreenWindow"}))
<< message_;
// Make sure no new windows get created (so only the one created by default
// exists) since the call to chrome.windows.create fails on the javascript
// side.
EXPECT_EQ(1u, extensions::WindowControllerList::GetInstance()->size());
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest,
UpdateWindowToLockedFullscreenWithoutPermission) {
ASSERT_TRUE(
RunExtensionTest("locked_fullscreen/without_permission",
{.custom_arg = "updateWindowToLockedFullscreen"}))
<< message_;
// chrome.windows.update call fails since this extension doesn't have the
// correct permission and hence the current window has NONE as WindowPinType.
EXPECT_EQ(chromeos::WindowPinType::kNone, GetCurrentWindowPinType());
}
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest,
RemoveLockedFullscreenFromWindowWithoutPermission) {
SetCurrentWindowPinType(chromeos::WindowPinType::kTrustedPinned);
browser()->command_controller()->LockedFullscreenStateChanged();
ASSERT_TRUE(
RunExtensionTest("locked_fullscreen/without_permission",
{.custom_arg = "removeLockedFullscreenFromWindow"}))
<< message_;
// The current window is still locked-fullscreen.
EXPECT_EQ(chromeos::WindowPinType::kTrustedPinned, GetCurrentWindowPinType());
}
#endif // BUILDFLAG(IS_CHROMEOS)
#if !BUILDFLAG(IS_CHROMEOS)
// Loading an extension requiring the 'lockWindowFullscreenPrivate' permission
// on non Chrome OS platforms should always fail since the API is available only
// on Chrome OS.
IN_PROC_BROWSER_TEST_F(WindowOpenApiTest,
OpenLockedFullscreenWindowNonChromeOS) {
const extensions::Extension* extension = LoadExtension(
test_data_dir_.AppendASCII("locked_fullscreen/with_permission"),
{.ignore_manifest_warnings = true});
ASSERT_TRUE(extension);
EXPECT_EQ(2u, extension->install_warnings().size());
// TODO(crbug.com/40804030): Remove the check for the deprecated
// manifest version when the test extension is updated to MV3.
EXPECT_EQ(manifest_errors::kManifestV2IsDeprecatedWarning,
extension->install_warnings()[0].message);
EXPECT_EQ(std::string("'lockWindowFullscreenPrivate' "
"is not allowed for specified platform."),
extension->install_warnings()[1].message);
}
#endif
} // namespace extensions
|