blob: 0c9aacd2c62b62b793601dfb68c796285edd4423 [file] [log] [blame]
[email protected]35abc332012-02-24 23:48:381// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]32b7c492010-09-01 04:15:002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/command_line.h"
[email protected]f9e82d92011-10-29 00:50:456#include "base/memory/scoped_vector.h"
[email protected]7c6ef352013-09-26 07:23:147#include "base/path_service.h"
[email protected]46acbf12013-06-10 18:43:428#include "base/strings/stringprintf.h"
[email protected]32b7c492010-09-01 04:15:009#include "chrome/browser/extensions/extension_apitest.h"
[email protected]01996a592013-09-13 06:55:0410#include "chrome/browser/profiles/profile.h"
[email protected]2ad4a902010-11-17 06:05:1311#include "chrome/browser/ui/browser.h"
[email protected]d8748142012-05-16 21:13:4312#include "chrome/browser/ui/browser_finder.h"
[email protected]bc44f4142013-02-12 06:15:5613#include "chrome/browser/ui/browser_iterator.h"
[email protected]f6ffa7d2012-08-17 17:27:0814#include "chrome/browser/ui/panels/panel_manager.h"
[email protected]e0448872013-01-11 19:35:0215#include "chrome/browser/ui/tabs/tab_strip_model.h"
[email protected]7c6ef352013-09-26 07:23:1416#include "chrome/common/chrome_paths.h"
[email protected]32b7c492010-09-01 04:15:0017#include "chrome/common/chrome_switches.h"
[email protected]b65d4bdcc2013-07-31 00:37:3318#include "chrome/test/base/test_switches.h"
[email protected]af44e7fb2011-07-29 18:32:3219#include "chrome/test/base/ui_test_utils.h"
[email protected]1dd66b72012-09-19 20:41:4820#include "content/public/browser/render_process_host.h"
[email protected]fad73672012-06-15 23:26:0621#include "content/public/browser/web_contents.h"
[email protected]1dd66b72012-09-19 20:41:4822#include "content/public/common/result_codes.h"
[email protected]99bee642014-05-31 22:36:4323#include "content/public/common/url_constants.h"
[email protected]7d478cb2012-07-24 17:19:4224#include "content/public/test/browser_test_utils.h"
[email protected]22401dc2014-03-21 01:38:5725#include "extensions/browser/extension_host.h"
[email protected]98b6d942013-11-10 00:34:0726#include "extensions/browser/process_manager.h"
[email protected]99bee642014-05-31 22:36:4327#include "extensions/common/constants.h"
[email protected]e4452d32013-11-15 23:07:4128#include "extensions/common/extension.h"
[email protected]c8d02992013-07-31 22:16:5129#include "extensions/common/switches.h"
lfg910f2f92014-09-19 05:31:0930#include "extensions/test/extension_test_message_listener.h"
yoze8dc2f12014-09-09 23:16:3231#include "extensions/test/result_catcher.h"
[email protected]f2cb3cf2013-03-21 01:40:5332#include "net/dns/mock_host_resolver.h"
[email protected]7c6ef352013-09-26 07:23:1433#include "net/test/embedded_test_server/embedded_test_server.h"
[email protected]bc44f4142013-02-12 06:15:5634#include "testing/gtest/include/gtest/gtest.h"
[email protected]32b7c492010-09-01 04:15:0035
[email protected]f1c102b2013-02-15 07:44:1236#if defined(USE_ASH)
hashimotoad3c6872014-08-29 09:46:5737#include "extensions/browser/app_window/app_window_registry.h"
[email protected]f1c102b2013-02-15 07:44:1238#endif
39
[email protected]15119302014-05-20 19:23:5840#if defined(USE_ASH) && defined(OS_CHROMEOS)
[email protected]f1c102b2013-02-15 07:44:1241// TODO(stevenjb): Figure out the correct behavior for Ash + Win
42#define USE_ASH_PANELS
43#endif
44
[email protected]e5d549d2011-12-28 01:29:2045using content::OpenURLParams;
46using content::Referrer;
[email protected]fad73672012-06-15 23:26:0647using content::WebContents;
[email protected]e5d549d2011-12-28 01:29:2048
[email protected]e78eb292010-12-22 08:35:3949// Disabled, http://crbug.com/64899.
50IN_PROC_BROWSER_TEST_F(ExtensionApiTest, DISABLED_WindowOpen) {
avi3ef9ec9e2014-12-22 22:50:1751 base::CommandLine::ForCurrentProcess()->AppendSwitch(
[email protected]c8d02992013-07-31 22:16:5152 extensions::switches::kEnableExperimentalExtensionApis);
[email protected]32b7c492010-09-01 04:15:0053
yoze8dc2f12014-09-09 23:16:3254 extensions::ResultCatcher catcher;
[email protected]32b7c492010-09-01 04:15:0055 ASSERT_TRUE(LoadExtensionIncognito(test_data_dir_
56 .AppendASCII("window_open").AppendASCII("spanning")));
57 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
58}
[email protected]4026ce1e2010-09-14 19:35:0459
[email protected]f1c102b2013-02-15 07:44:1260int GetPanelCount(Browser* browser) {
61#if defined(USE_ASH_PANELS)
hashimotoad3c6872014-08-29 09:46:5762 return static_cast<int>(extensions::AppWindowRegistry::Get(
63 browser->profile())->app_windows().size());
[email protected]f1c102b2013-02-15 07:44:1264#else
65 return PanelManager::GetInstance()->num_panels();
66#endif
67}
68
69bool WaitForTabsAndPopups(Browser* browser,
[email protected]f9e82d92011-10-29 00:50:4570 int num_tabs,
71 int num_popups,
72 int num_panels) {
[email protected]58b349b2011-11-23 02:07:1573 SCOPED_TRACE(
[email protected]7d3cbc92013-03-18 22:33:0474 base::StringPrintf("WaitForTabsAndPopups tabs:%d, popups:%d, panels:%d",
75 num_tabs, num_popups, num_panels));
[email protected]4026ce1e2010-09-14 19:35:0476 // We start with one tab and one browser already open.
77 ++num_tabs;
[email protected]f6ffa7d2012-08-17 17:27:0878 size_t num_browsers = static_cast<size_t>(num_popups) + 1;
[email protected]4026ce1e2010-09-14 19:35:0479
[email protected]f1c102b2013-02-15 07:44:1280 const base::TimeDelta kWaitTime = base::TimeDelta::FromSeconds(10);
[email protected]0a5bdc6522011-06-08 19:04:4981 base::TimeTicks end_time = base::TimeTicks::Now() + kWaitTime;
82 while (base::TimeTicks::Now() < end_time) {
[email protected]c987a242013-02-28 01:17:4183 if (chrome::GetBrowserCount(browser->profile(),
84 browser->host_desktop_type()) == num_browsers &&
[email protected]e0448872013-01-11 19:35:0285 browser->tab_strip_model()->count() == num_tabs &&
[email protected]f1c102b2013-02-15 07:44:1286 GetPanelCount(browser) == num_panels)
[email protected]0a5bdc6522011-06-08 19:04:4987 break;
88
[email protected]b8deecd2012-07-30 21:09:4489 content::RunAllPendingInMessageLoop();
[email protected]0a5bdc6522011-06-08 19:04:4990 }
91
[email protected]c987a242013-02-28 01:17:4192 EXPECT_EQ(num_browsers,
93 chrome::GetBrowserCount(browser->profile(),
94 browser->host_desktop_type()));
[email protected]e0448872013-01-11 19:35:0295 EXPECT_EQ(num_tabs, browser->tab_strip_model()->count());
[email protected]f1c102b2013-02-15 07:44:1296 EXPECT_EQ(num_panels, GetPanelCount(browser));
[email protected]0a5bdc6522011-06-08 19:04:4997
[email protected]f9e82d92011-10-29 00:50:4598 int num_popups_seen = 0;
[email protected]bc44f4142013-02-12 06:15:5699 for (chrome::BrowserIterator iter; !iter.done(); iter.Next()) {
[email protected]0a5bdc6522011-06-08 19:04:49100 if (*iter == browser)
[email protected]4026ce1e2010-09-14 19:35:04101 continue;
[email protected]4026ce1e2010-09-14 19:35:04102
[email protected]f6ffa7d2012-08-17 17:27:08103 EXPECT_TRUE((*iter)->is_type_popup());
104 ++num_popups_seen;
[email protected]4026ce1e2010-09-14 19:35:04105 }
[email protected]f9e82d92011-10-29 00:50:45106 EXPECT_EQ(num_popups, num_popups_seen);
[email protected]f1c102b2013-02-15 07:44:12107
[email protected]c987a242013-02-28 01:17:41108 return ((num_browsers ==
109 chrome::GetBrowserCount(browser->profile(),
110 browser->host_desktop_type())) &&
[email protected]f1c102b2013-02-15 07:44:12111 (num_tabs == browser->tab_strip_model()->count()) &&
112 (num_panels == GetPanelCount(browser)) &&
113 (num_popups == num_popups_seen));
[email protected]4026ce1e2010-09-14 19:35:04114}
115
[email protected]f112b0f2011-05-26 01:53:52116IN_PROC_BROWSER_TEST_F(ExtensionApiTest, BrowserIsApp) {
117 host_resolver()->AddRule("a.com", "127.0.0.1");
[email protected]c1dffe82013-06-26 20:59:05118 ASSERT_TRUE(StartEmbeddedTestServer());
[email protected]f112b0f2011-05-26 01:53:52119 ASSERT_TRUE(LoadExtension(
120 test_data_dir_.AppendASCII("window_open").AppendASCII("browser_is_app")));
121
[email protected]f1c102b2013-02-15 07:44:12122 EXPECT_TRUE(WaitForTabsAndPopups(browser(), 0, 2, 0));
[email protected]f112b0f2011-05-26 01:53:52123
[email protected]bc44f4142013-02-12 06:15:56124 for (chrome::BrowserIterator iter; !iter.done(); iter.Next()) {
[email protected]f112b0f2011-05-26 01:53:52125 if (*iter == browser())
[email protected]bc44f4142013-02-12 06:15:56126 ASSERT_FALSE(iter->is_app());
[email protected]f112b0f2011-05-26 01:53:52127 else
[email protected]bc44f4142013-02-12 06:15:56128 ASSERT_TRUE(iter->is_app());
[email protected]f112b0f2011-05-26 01:53:52129 }
130}
131
[email protected]0a5bdc6522011-06-08 19:04:49132IN_PROC_BROWSER_TEST_F(ExtensionApiTest, WindowOpenPopupDefault) {
[email protected]c1dffe82013-06-26 20:59:05133 ASSERT_TRUE(StartEmbeddedTestServer());
[email protected]0a5bdc6522011-06-08 19:04:49134 ASSERT_TRUE(LoadExtension(
135 test_data_dir_.AppendASCII("window_open").AppendASCII("popup")));
136
137 const int num_tabs = 1;
138 const int num_popups = 0;
[email protected]f1c102b2013-02-15 07:44:12139 EXPECT_TRUE(WaitForTabsAndPopups(browser(), num_tabs, num_popups, 0));
[email protected]0a5bdc6522011-06-08 19:04:49140}
141
[email protected]7c6ef352013-09-26 07:23:14142IN_PROC_BROWSER_TEST_F(ExtensionApiTest, WindowOpenPopupIframe) {
143 ASSERT_TRUE(StartEmbeddedTestServer());
144 base::FilePath test_data_dir;
145 PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir);
146 embedded_test_server()->ServeFilesFromDirectory(test_data_dir);
147 ASSERT_TRUE(LoadExtension(
148 test_data_dir_.AppendASCII("window_open").AppendASCII("popup_iframe")));
149
jochenc5cfa642014-09-02 15:30:03150 const int num_tabs = 1;
151 const int num_popups = 0;
[email protected]7c6ef352013-09-26 07:23:14152 EXPECT_TRUE(WaitForTabsAndPopups(browser(), num_tabs, num_popups, 0));
153}
154
[email protected]0a5bdc6522011-06-08 19:04:49155IN_PROC_BROWSER_TEST_F(ExtensionApiTest, WindowOpenPopupLarge) {
[email protected]c1dffe82013-06-26 20:59:05156 ASSERT_TRUE(StartEmbeddedTestServer());
[email protected]0a5bdc6522011-06-08 19:04:49157 ASSERT_TRUE(LoadExtension(
158 test_data_dir_.AppendASCII("window_open").AppendASCII("popup_large")));
159
[email protected]0a5bdc6522011-06-08 19:04:49160 // On other systems this should open a new popup window.
161 const int num_tabs = 0;
162 const int num_popups = 1;
[email protected]f1c102b2013-02-15 07:44:12163 EXPECT_TRUE(WaitForTabsAndPopups(browser(), num_tabs, num_popups, 0));
[email protected]0a5bdc6522011-06-08 19:04:49164}
165
166IN_PROC_BROWSER_TEST_F(ExtensionApiTest, WindowOpenPopupSmall) {
[email protected]c1dffe82013-06-26 20:59:05167 ASSERT_TRUE(StartEmbeddedTestServer());
[email protected]0a5bdc6522011-06-08 19:04:49168 ASSERT_TRUE(LoadExtension(
169 test_data_dir_.AppendASCII("window_open").AppendASCII("popup_small")));
170
171 // On ChromeOS this should open a new panel (acts like a new popup window).
172 // On other systems this should open a new popup window.
173 const int num_tabs = 0;
174 const int num_popups = 1;
[email protected]f1c102b2013-02-15 07:44:12175 EXPECT_TRUE(WaitForTabsAndPopups(browser(), num_tabs, num_popups, 0));
[email protected]0a5bdc6522011-06-08 19:04:49176}
177
[email protected]73fa1fce2013-02-21 20:10:05178// Disabled on Windows. Often times out or fails: crbug.com/177530
179#if defined(OS_WIN)
180#define MAYBE_PopupBlockingExtension DISABLED_PopupBlockingExtension
181#else
182#define MAYBE_PopupBlockingExtension PopupBlockingExtension
183#endif
184IN_PROC_BROWSER_TEST_F(ExtensionApiTest, MAYBE_PopupBlockingExtension) {
[email protected]4026ce1e2010-09-14 19:35:04185 host_resolver()->AddRule("*", "127.0.0.1");
[email protected]c1dffe82013-06-26 20:59:05186 ASSERT_TRUE(StartEmbeddedTestServer());
[email protected]4026ce1e2010-09-14 19:35:04187
188 ASSERT_TRUE(LoadExtension(
189 test_data_dir_.AppendASCII("window_open").AppendASCII("popup_blocking")
190 .AppendASCII("extension")));
191
[email protected]f1c102b2013-02-15 07:44:12192 EXPECT_TRUE(WaitForTabsAndPopups(browser(), 5, 3, 0));
[email protected]4026ce1e2010-09-14 19:35:04193}
194
195IN_PROC_BROWSER_TEST_F(ExtensionApiTest, PopupBlockingHostedApp) {
196 host_resolver()->AddRule("*", "127.0.0.1");
197 ASSERT_TRUE(test_server()->Start());
198
199 ASSERT_TRUE(LoadExtension(
200 test_data_dir_.AppendASCII("window_open").AppendASCII("popup_blocking")
201 .AppendASCII("hosted_app")));
202
[email protected]fe3048872010-10-18 14:58:59203 // The app being tested owns the domain a.com . The test URLs we navigate
204 // to below must be within that domain, so that they fall within the app's
205 // web extent.
206 GURL::Replacements replace_host;
mgiuca77752c32015-02-05 07:31:18207 replace_host.SetHostStr("a.com");
[email protected]fe3048872010-10-18 14:58:59208
209 const std::string popup_app_contents_path(
210 "files/extensions/api_test/window_open/popup_blocking/hosted_app/");
211
212 GURL open_tab =
213 test_server()->GetURL(popup_app_contents_path + "open_tab.html")
214 .ReplaceComponents(replace_host);
215 GURL open_popup =
216 test_server()->GetURL(popup_app_contents_path + "open_popup.html")
217 .ReplaceComponents(replace_host);
218
[email protected]e5d549d2011-12-28 01:29:20219 browser()->OpenURL(OpenURLParams(
Sylvain Defresnec6ccc77d2014-09-19 10:19:35220 open_tab, Referrer(), NEW_FOREGROUND_TAB, ui::PAGE_TRANSITION_TYPED,
[email protected]e5d549d2011-12-28 01:29:20221 false));
222 browser()->OpenURL(OpenURLParams(
223 open_popup, Referrer(), NEW_FOREGROUND_TAB,
Sylvain Defresnec6ccc77d2014-09-19 10:19:35224 ui::PAGE_TRANSITION_TYPED, false));
[email protected]4026ce1e2010-09-14 19:35:04225
[email protected]f1c102b2013-02-15 07:44:12226 EXPECT_TRUE(WaitForTabsAndPopups(browser(), 3, 1, 0));
[email protected]4026ce1e2010-09-14 19:35:04227}
[email protected]d4db6c702011-03-28 21:49:14228
[email protected]e7f90562011-05-23 21:38:24229IN_PROC_BROWSER_TEST_F(ExtensionApiTest, WindowArgumentsOverflow) {
230 ASSERT_TRUE(RunExtensionTest("window_open/argument_overflow")) << message_;
231}
232
[email protected]d5c14062011-10-27 00:02:13233class WindowOpenPanelDisabledTest : public ExtensionApiTest {
avi3ef9ec9e2014-12-22 22:50:17234 void SetUpCommandLine(base::CommandLine* command_line) override {
[email protected]08aa0c32011-04-11 22:18:37235 ExtensionApiTest::SetUpCommandLine(command_line);
[email protected]7e7a28092011-12-09 22:24:55236 // TODO(jennb): Re-enable when panels are enabled by default.
237 // command_line->AppendSwitch(switches::kDisablePanels);
[email protected]08aa0c32011-04-11 22:18:37238 }
239};
240
[email protected]7e7a28092011-12-09 22:24:55241IN_PROC_BROWSER_TEST_F(WindowOpenPanelDisabledTest,
242 DISABLED_WindowOpenPanelNotEnabled) {
[email protected]d5c14062011-10-27 00:02:13243 ASSERT_TRUE(RunExtensionTest("window_open/panel_not_enabled")) << message_;
244}
245
[email protected]af6b54512011-12-14 06:11:21246class WindowOpenPanelTest : public ExtensionApiTest {
avi3ef9ec9e2014-12-22 22:50:17247 void SetUpCommandLine(base::CommandLine* command_line) override {
[email protected]af6b54512011-12-14 06:11:21248 ExtensionApiTest::SetUpCommandLine(command_line);
249 command_line->AppendSwitch(switches::kEnablePanels);
250 }
251};
252
[email protected]f1c102b2013-02-15 07:44:12253#if defined(USE_ASH_PANELS)
[email protected]87d722a2012-07-12 15:38:33254// On Ash, this currently fails because we're currently opening new panel
[email protected]d101b0c2012-03-16 00:30:57255// windows as popup windows instead.
[email protected]e00ccc92012-11-01 17:32:30256#define MAYBE_WindowOpenPanel DISABLED_WindowOpenPanel
[email protected]d101b0c2012-03-16 00:30:57257#else
258#define MAYBE_WindowOpenPanel WindowOpenPanel
259#endif
260IN_PROC_BROWSER_TEST_F(WindowOpenPanelTest, MAYBE_WindowOpenPanel) {
[email protected]08aa0c32011-04-11 22:18:37261 ASSERT_TRUE(RunExtensionTest("window_open/panel")) << message_;
262}
[email protected]54edcea2011-07-27 01:56:38263
[email protected]a60837b2014-03-11 03:49:20264#if defined(USE_ASH_PANELS) || defined(OS_LINUX)
[email protected]ca29ed12012-09-06 09:10:50265// On Ash, this currently fails because we're currently opening new panel
266// windows as popup windows instead.
[email protected]a60837b2014-03-11 03:49:20267// We're also failing on Linux-aura due to the panel is not opened in the
268// right origin.
[email protected]cb1849e2013-07-08 21:12:53269#define MAYBE_WindowOpenPanelDetached DISABLED_WindowOpenPanelDetached
270#else
271#define MAYBE_WindowOpenPanelDetached WindowOpenPanelDetached
272#endif
273IN_PROC_BROWSER_TEST_F(WindowOpenPanelTest, MAYBE_WindowOpenPanelDetached) {
[email protected]ca29ed12012-09-06 09:10:50274 ASSERT_TRUE(RunExtensionTest("window_open/panel_detached")) << message_;
275}
276
[email protected]15119302014-05-20 19:23:58277#if defined(OS_LINUX) && !defined(OS_CHROMEOS)
278// TODO(erg): Bring up ash http://crbug.com/300084
279#define MAYBE_CloseNonExtensionPanelsOnUninstall \
280 DISABLED_CloseNonExtensionPanelsOnUninstall
281#else
282#define MAYBE_CloseNonExtensionPanelsOnUninstall \
283 CloseNonExtensionPanelsOnUninstall
284#endif
[email protected]af6b54512011-12-14 06:11:21285IN_PROC_BROWSER_TEST_F(WindowOpenPanelTest,
[email protected]15119302014-05-20 19:23:58286 MAYBE_CloseNonExtensionPanelsOnUninstall) {
[email protected]45c6f6722013-07-23 03:02:19287#if defined(OS_WIN) && defined(USE_ASH)
288 // Disable this test in Metro+Ash for now (http://crbug.com/262796).
avi3ef9ec9e2014-12-22 22:50:17289 if (base::CommandLine::ForCurrentProcess()->HasSwitch(
290 switches::kAshBrowserTests))
[email protected]45c6f6722013-07-23 03:02:19291 return;
292#endif
293
[email protected]f1c102b2013-02-15 07:44:12294#if defined(USE_ASH_PANELS)
[email protected]1dd66b72012-09-19 20:41:48295 // On Ash, new panel windows open as popup windows instead.
[email protected]f1c102b2013-02-15 07:44:12296 int num_popups, num_panels;
avi3ef9ec9e2014-12-22 22:50:17297 if (base::CommandLine::ForCurrentProcess()->HasSwitch(
298 switches::kEnablePanels)) {
[email protected]f1c102b2013-02-15 07:44:12299 num_popups = 2;
300 num_panels = 2;
301 } else {
302 num_popups = 4;
303 num_panels = 0;
304 }
[email protected]1dd66b72012-09-19 20:41:48305#else
306 int num_popups = 2;
307 int num_panels = 2;
308#endif
[email protected]c1dffe82013-06-26 20:59:05309 ASSERT_TRUE(StartEmbeddedTestServer());
[email protected]1dd66b72012-09-19 20:41:48310
311 // Setup listeners to wait on strings we expect the extension pages to send.
312 std::vector<std::string> test_strings;
313 test_strings.push_back("content_tab");
314 if (num_panels)
315 test_strings.push_back("content_panel");
316 test_strings.push_back("content_popup");
317
318 ScopedVector<ExtensionTestMessageListener> listeners;
319 for (size_t i = 0; i < test_strings.size(); ++i) {
320 listeners.push_back(
321 new ExtensionTestMessageListener(test_strings[i], false));
322 }
323
324 const extensions::Extension* extension = LoadExtension(
325 test_data_dir_.AppendASCII("window_open").AppendASCII(
326 "close_panels_on_uninstall"));
327 ASSERT_TRUE(extension);
328
329 // Two tabs. One in extension domain and one in non-extension domain.
330 // Two popups - one in extension domain and one in non-extension domain.
331 // Two panels - one in extension domain and one in non-extension domain.
[email protected]f1c102b2013-02-15 07:44:12332 EXPECT_TRUE(WaitForTabsAndPopups(browser(), 2, num_popups, num_panels));
[email protected]4cdd8572013-02-15 00:33:25333
334 // Wait on test messages to make sure the pages loaded.
335 for (size_t i = 0; i < listeners.size(); ++i)
336 ASSERT_TRUE(listeners[i]->WaitUntilSatisfied());
337
338 UninstallExtension(extension->id());
339
340 // Wait for the tabs and popups in non-extension domain to stay open.
341 // Expect everything else, including panels, to close.
[email protected]4cdd8572013-02-15 00:33:25342 num_popups -= 1;
[email protected]f1c102b2013-02-15 07:44:12343#if defined(USE_ASH_PANELS)
avi3ef9ec9e2014-12-22 22:50:17344 if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
345 switches::kEnablePanels)) {
[email protected]f1c102b2013-02-15 07:44:12346 // On Ash, new panel windows open as popup windows instead, so there are 2
347 // extension domain popups that will close (instead of 1 popup on non-Ash).
348 num_popups -= 1;
349 }
[email protected]4cdd8572013-02-15 00:33:25350#endif
[email protected]9111fff2013-06-12 18:01:55351#if defined(USE_ASH)
352#if !defined(OS_WIN)
353 // On linux ash we close all popup applications when closing its extension.
354 num_popups = 0;
355#endif
356#endif
[email protected]f1c102b2013-02-15 07:44:12357 EXPECT_TRUE(WaitForTabsAndPopups(browser(), 1, num_popups, 0));
[email protected]4cdd8572013-02-15 00:33:25358}
359
[email protected]15119302014-05-20 19:23:58360// This test isn't applicable on Chrome OS, which automatically reloads crashed
361// pages.
[email protected]4ad85f42013-07-24 02:31:57362#if !defined(OS_CHROMEOS)
363IN_PROC_BROWSER_TEST_F(WindowOpenPanelTest, ClosePanelsOnExtensionCrash) {
[email protected]f1c102b2013-02-15 07:44:12364#if defined(USE_ASH_PANELS)
[email protected]4cdd8572013-02-15 00:33:25365 // On Ash, new panel windows open as popup windows instead.
366 int num_popups = 4;
367 int num_panels = 0;
368#else
369 int num_popups = 2;
370 int num_panels = 2;
371#endif
[email protected]c1dffe82013-06-26 20:59:05372 ASSERT_TRUE(StartEmbeddedTestServer());
[email protected]4cdd8572013-02-15 00:33:25373
374 // Setup listeners to wait on strings we expect the extension pages to send.
375 std::vector<std::string> test_strings;
376 test_strings.push_back("content_tab");
377 if (num_panels)
378 test_strings.push_back("content_panel");
379 test_strings.push_back("content_popup");
380
381 ScopedVector<ExtensionTestMessageListener> listeners;
382 for (size_t i = 0; i < test_strings.size(); ++i) {
383 listeners.push_back(
384 new ExtensionTestMessageListener(test_strings[i], false));
385 }
386
387 const extensions::Extension* extension = LoadExtension(
388 test_data_dir_.AppendASCII("window_open").AppendASCII(
389 "close_panels_on_uninstall"));
390 ASSERT_TRUE(extension);
391
392 // Two tabs. One in extension domain and one in non-extension domain.
393 // Two popups - one in extension domain and one in non-extension domain.
394 // Two panels - one in extension domain and one in non-extension domain.
[email protected]f1c102b2013-02-15 07:44:12395 EXPECT_TRUE(WaitForTabsAndPopups(browser(), 2, num_popups, num_panels));
[email protected]1dd66b72012-09-19 20:41:48396
397 // Wait on test messages to make sure the pages loaded.
398 for (size_t i = 0; i < listeners.size(); ++i)
399 ASSERT_TRUE(listeners[i]->WaitUntilSatisfied());
400
401 // Crash the extension.
402 extensions::ExtensionHost* extension_host =
reillyg0ea3fa902014-10-28 15:30:23403 extensions::ProcessManager::Get(browser()->profile())
404 ->GetBackgroundHostForExtension(extension->id());
[email protected]1dd66b72012-09-19 20:41:48405 ASSERT_TRUE(extension_host);
jaekyun37e572a32014-12-04 23:33:35406 extension_host->render_process_host()->Shutdown(content::RESULT_CODE_KILLED,
407 false);
[email protected]1dd66b72012-09-19 20:41:48408 WaitForExtensionCrash(extension->id());
409
410 // Only expect panels to close. The rest stay open to show a sad-tab.
[email protected]f1c102b2013-02-15 07:44:12411 EXPECT_TRUE(WaitForTabsAndPopups(browser(), 2, num_popups, 0));
[email protected]1dd66b72012-09-19 20:41:48412}
[email protected]4ad85f42013-07-24 02:31:57413#endif // !defined(OS_CHROMEOS)
[email protected]1dd66b72012-09-19 20:41:48414
[email protected]f1c102b2013-02-15 07:44:12415#if defined(USE_ASH_PANELS)
416// This test is not applicable on Ash. The modified window.open behavior only
417// applies to non-Ash panel windows.
[email protected]99f4fdb92012-08-30 23:13:51418#define MAYBE_WindowOpenFromPanel DISABLED_WindowOpenFromPanel
419#else
420#define MAYBE_WindowOpenFromPanel WindowOpenFromPanel
421#endif
422IN_PROC_BROWSER_TEST_F(WindowOpenPanelTest, MAYBE_WindowOpenFromPanel) {
[email protected]c1dffe82013-06-26 20:59:05423 ASSERT_TRUE(StartEmbeddedTestServer());
[email protected]6798c332012-08-29 02:16:51424
[email protected]99f4fdb92012-08-30 23:13:51425 // Load the extension that will open a panel which then calls window.open.
[email protected]6798c332012-08-29 02:16:51426 ASSERT_TRUE(LoadExtension(test_data_dir_.AppendASCII("window_open").
427 AppendASCII("panel_window_open")));
[email protected]99f4fdb92012-08-30 23:13:51428
429 // Expect one panel (opened by extension) and one tab (from the panel calling
430 // window.open). Panels modify the WindowOpenDisposition in window.open
431 // to always open in a tab.
[email protected]f1c102b2013-02-15 07:44:12432 EXPECT_TRUE(WaitForTabsAndPopups(browser(), 1, 0, 1));
[email protected]6798c332012-08-29 02:16:51433}
434
[email protected]24c6bcfc2012-02-29 21:06:36435IN_PROC_BROWSER_TEST_F(ExtensionApiTest, DISABLED_WindowOpener) {
[email protected]54edcea2011-07-27 01:56:38436 ASSERT_TRUE(RunExtensionTest("window_open/opener")) << message_;
437}
[email protected]fad73672012-06-15 23:26:06438
[email protected]fa7c1602013-04-03 23:00:20439#if defined(OS_MACOSX)
440// Extension popup windows are incorrectly sized on OSX, crbug.com/225601
441#define MAYBE_WindowOpenSized DISABLED_WindowOpenSized
442#else
443#define MAYBE_WindowOpenSized WindowOpenSized
444#endif
445// Ensure that the width and height properties of a window opened with
446// chrome.windows.create match the creation parameters. See crbug.com/173831.
447IN_PROC_BROWSER_TEST_F(ExtensionApiTest, MAYBE_WindowOpenSized) {
448 ASSERT_TRUE(RunExtensionTest("window_open/window_size")) << message_;
449 EXPECT_TRUE(WaitForTabsAndPopups(browser(), 0, 1, 0));
450}
451
[email protected]fad73672012-06-15 23:26:06452// Tests that an extension page can call window.open to an extension URL and
453// the new window has extension privileges.
454IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest, WindowOpenExtension) {
455 ASSERT_TRUE(LoadExtension(
456 test_data_dir_.AppendASCII("uitest").AppendASCII("window_open")));
457
[email protected]99bee642014-05-31 22:36:43458 GURL start_url(std::string(extensions::kExtensionScheme) +
[email protected]fb4fe0952014-06-05 09:44:24459 url::kStandardSchemeSeparator +
[email protected]99bee642014-05-31 22:36:43460 last_loaded_extension_id() + "/test.html");
[email protected]fad73672012-06-15 23:26:06461 ui_test_utils::NavigateToURL(browser(), start_url);
[email protected]f3e73f62012-10-20 05:35:16462 WebContents* newtab = NULL;
[email protected]e0448872013-01-11 19:35:02463 ASSERT_NO_FATAL_FAILURE(
464 OpenWindow(browser()->tab_strip_model()->GetActiveWebContents(),
465 start_url.Resolve("newtab.html"), true, &newtab));
[email protected]fad73672012-06-15 23:26:06466
467 bool result = false;
[email protected]b6987e02013-01-04 18:30:43468 ASSERT_TRUE(content::ExecuteScriptAndExtractBool(newtab, "testExtensionApi()",
469 &result));
[email protected]fad73672012-06-15 23:26:06470 EXPECT_TRUE(result);
471}
472
473// Tests that if an extension page calls window.open to an invalid extension
474// URL, the browser doesn't crash.
475IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest, WindowOpenInvalidExtension) {
476 ASSERT_TRUE(LoadExtension(
477 test_data_dir_.AppendASCII("uitest").AppendASCII("window_open")));
478
[email protected]99bee642014-05-31 22:36:43479 GURL start_url(std::string(extensions::kExtensionScheme) +
[email protected]fb4fe0952014-06-05 09:44:24480 url::kStandardSchemeSeparator +
[email protected]99bee642014-05-31 22:36:43481 last_loaded_extension_id() + "/test.html");
[email protected]fad73672012-06-15 23:26:06482 ui_test_utils::NavigateToURL(browser(), start_url);
[email protected]e0448872013-01-11 19:35:02483 ASSERT_NO_FATAL_FAILURE(
484 OpenWindow(browser()->tab_strip_model()->GetActiveWebContents(),
[email protected]fad73672012-06-15 23:26:06485 GURL("chrome-extension://thisissurelynotavalidextensionid/newtab.html"),
486 false, NULL));
487
488 // If we got to this point, we didn't crash, so we're good.
489}
490
491// Tests that calling window.open from the newtab page to an extension URL
492// gives the new window extension privileges - even though the opening page
493// does not have extension privileges, we break the script connection, so
494// there is no privilege leak.
495IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest, WindowOpenNoPrivileges) {
496 ASSERT_TRUE(LoadExtension(
497 test_data_dir_.AppendASCII("uitest").AppendASCII("window_open")));
498
499 ui_test_utils::NavigateToURL(browser(), GURL("about:blank"));
[email protected]f3e73f62012-10-20 05:35:16500 WebContents* newtab = NULL;
[email protected]e0448872013-01-11 19:35:02501 ASSERT_NO_FATAL_FAILURE(
502 OpenWindow(browser()->tab_strip_model()->GetActiveWebContents(),
[email protected]99bee642014-05-31 22:36:43503 GURL(std::string(extensions::kExtensionScheme) +
[email protected]fb4fe0952014-06-05 09:44:24504 url::kStandardSchemeSeparator +
[email protected]99bee642014-05-31 22:36:43505 last_loaded_extension_id() + "/newtab.html"),
506 false,
507 &newtab));
[email protected]fad73672012-06-15 23:26:06508
509 // Extension API should succeed.
510 bool result = false;
[email protected]b6987e02013-01-04 18:30:43511 ASSERT_TRUE(content::ExecuteScriptAndExtractBool(newtab, "testExtensionApi()",
512 &result));
[email protected]fad73672012-06-15 23:26:06513 EXPECT_TRUE(result);
514}