1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/strings/utf_string_conversions.h"
6 #include "base/values.h"
7 #include "content/browser/frame_host/navigation_entry_impl.h"
8 #include "content/browser/web_contents/web_contents_impl.h"
9 #include "content/browser/web_contents/web_contents_view.h"
10 #include "content/public/browser/load_notification_details.h"
11 #include "content/public/browser/navigation_controller.h"
12 #include "content/public/browser/notification_details.h"
13 #include "content/public/browser/notification_observer.h"
14 #include "content/public/browser/notification_types.h"
15 #include "content/public/browser/render_view_host.h"
16 #include "content/public/browser/render_widget_host_view.h"
17 #include "content/public/browser/web_contents_observer.h"
18 #include "content/public/common/content_paths.h"
19 #include "content/public/test/browser_test_utils.h"
20 #include "content/public/test/content_browser_test.h"
21 #include "content/public/test/content_browser_test_utils.h"
22 #include "content/public/test/test_utils.h"
23 #include "content/shell/browser/shell.h"
24 #include "net/dns/mock_host_resolver.h"
25 #include "net/test/embedded_test_server/embedded_test_server.h"
29 void ResizeWebContentsView(Shell
* shell
, const gfx::Size
& size
,
30 bool set_start_page
) {
31 // Shell::SizeTo is not implemented on Aura; WebContentsView::SizeContents
32 // works on Win and ChromeOS but not Linux - we need to resize the shell
33 // window on Linux because if we don't, the next layout of the unchanged shell
34 // window will resize WebContentsView back to the previous size.
35 // SizeContents is a hack and should not be relied on.
36 #if defined(OS_MACOSX)
38 // If |set_start_page| is true, start with blank page to make sure resize
41 NavigateToURL(shell
, GURL("about://blank"));
43 static_cast<WebContentsImpl
*>(shell
->web_contents())->GetView()->
45 #endif // defined(OS_MACOSX)
48 class WebContentsImplBrowserTest
: public ContentBrowserTest
{
50 WebContentsImplBrowserTest() {}
53 DISALLOW_COPY_AND_ASSIGN(WebContentsImplBrowserTest
);
56 // Keeps track of data from LoadNotificationDetails so we can later verify that
57 // they are correct, after the LoadNotificationDetails object is deleted.
58 class LoadStopNotificationObserver
: public WindowedNotificationObserver
{
60 LoadStopNotificationObserver(NavigationController
* controller
)
61 : WindowedNotificationObserver(NOTIFICATION_LOAD_STOP
,
62 Source
<NavigationController
>(controller
)),
66 virtual void Observe(int type
,
67 const NotificationSource
& source
,
68 const NotificationDetails
& details
) OVERRIDE
{
69 if (type
== NOTIFICATION_LOAD_STOP
) {
70 const Details
<LoadNotificationDetails
> load_details(details
);
71 url_
= load_details
->url
;
72 session_index_
= load_details
->session_index
;
73 controller_
= load_details
->controller
;
75 WindowedNotificationObserver::Observe(type
, source
, details
);
80 NavigationController
* controller_
;
83 // Starts a new navigation as soon as the current one commits, but does not
84 // wait for it to complete. This allows us to observe DidStopLoading while
85 // a pending entry is present.
86 class NavigateOnCommitObserver
: public WebContentsObserver
{
88 NavigateOnCommitObserver(Shell
* shell
, GURL url
)
89 : WebContentsObserver(shell
->web_contents()),
95 // WebContentsObserver:
96 virtual void NavigationEntryCommitted(
97 const LoadCommittedDetails
& load_details
) OVERRIDE
{
101 shell_
->LoadURL(url_
);
110 class RenderViewSizeDelegate
: public WebContentsDelegate
{
112 void set_size_insets(const gfx::Size
& size_insets
) {
113 size_insets_
= size_insets
;
116 // WebContentsDelegate:
117 virtual gfx::Size
GetSizeForNewRenderView(
118 WebContents
* web_contents
) const OVERRIDE
{
119 gfx::Size
size(web_contents
->GetContainerBounds().size());
120 size
.Enlarge(size_insets_
.width(), size_insets_
.height());
125 gfx::Size size_insets_
;
128 class RenderViewSizeObserver
: public WebContentsObserver
{
130 RenderViewSizeObserver(Shell
* shell
, const gfx::Size
& wcv_new_size
)
131 : WebContentsObserver(shell
->web_contents()),
133 wcv_new_size_(wcv_new_size
) {
136 // WebContentsObserver:
137 virtual void RenderViewCreated(RenderViewHost
* rvh
) OVERRIDE
{
138 rwhv_create_size_
= rvh
->GetView()->GetViewBounds().size();
141 virtual void DidStartNavigationToPendingEntry(
143 NavigationController::ReloadType reload_type
) OVERRIDE
{
144 ResizeWebContentsView(shell_
, wcv_new_size_
, false);
147 gfx::Size
rwhv_create_size() const { return rwhv_create_size_
; }
150 Shell
* shell_
; // Weak ptr.
151 gfx::Size wcv_new_size_
;
152 gfx::Size rwhv_create_size_
;
155 class LoadingStateChangedDelegate
: public WebContentsDelegate
{
157 LoadingStateChangedDelegate()
158 : loadingStateChangedCount_(0)
159 , loadingStateToDifferentDocumentCount_(0) {
162 // WebContentsDelegate:
163 virtual void LoadingStateChanged(WebContents
* contents
,
164 bool to_different_document
) OVERRIDE
{
165 loadingStateChangedCount_
++;
166 if (to_different_document
)
167 loadingStateToDifferentDocumentCount_
++;
170 int loadingStateChangedCount() const { return loadingStateChangedCount_
; }
171 int loadingStateToDifferentDocumentCount() const {
172 return loadingStateToDifferentDocumentCount_
;
176 int loadingStateChangedCount_
;
177 int loadingStateToDifferentDocumentCount_
;
180 // See: http://crbug.com/298193
182 #define MAYBE_DidStopLoadingDetails DISABLED_DidStopLoadingDetails
184 #define MAYBE_DidStopLoadingDetails DidStopLoadingDetails
187 // Test that DidStopLoading includes the correct URL in the details.
188 IN_PROC_BROWSER_TEST_F(WebContentsImplBrowserTest
,
189 MAYBE_DidStopLoadingDetails
) {
190 ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
192 LoadStopNotificationObserver
load_observer(
193 &shell()->web_contents()->GetController());
194 NavigateToURL(shell(), embedded_test_server()->GetURL("/title1.html"));
195 load_observer
.Wait();
197 EXPECT_EQ("/title1.html", load_observer
.url_
.path());
198 EXPECT_EQ(0, load_observer
.session_index_
);
199 EXPECT_EQ(&shell()->web_contents()->GetController(),
200 load_observer
.controller_
);
203 // See: http://crbug.com/298193
205 #define MAYBE_DidStopLoadingDetailsWithPending \
206 DISABLED_DidStopLoadingDetailsWithPending
208 #define MAYBE_DidStopLoadingDetailsWithPending DidStopLoadingDetailsWithPending
211 // Test that DidStopLoading includes the correct URL in the details when a
212 // pending entry is present.
213 IN_PROC_BROWSER_TEST_F(WebContentsImplBrowserTest
,
214 MAYBE_DidStopLoadingDetailsWithPending
) {
215 ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
216 GURL
url("data:text/html,<div>test</div>");
218 // Listen for the first load to stop.
219 LoadStopNotificationObserver
load_observer(
220 &shell()->web_contents()->GetController());
221 // Start a new pending navigation as soon as the first load commits.
222 // We will hear a DidStopLoading from the first load as the new load
224 NavigateOnCommitObserver
commit_observer(
225 shell(), embedded_test_server()->GetURL("/title2.html"));
226 NavigateToURL(shell(), url
);
227 load_observer
.Wait();
229 EXPECT_EQ(url
, load_observer
.url_
);
230 EXPECT_EQ(0, load_observer
.session_index_
);
231 EXPECT_EQ(&shell()->web_contents()->GetController(),
232 load_observer
.controller_
);
234 // Test that a renderer-initiated navigation to an invalid URL does not leave
235 // around a pending entry that could be used in a URL spoof. We test this in
236 // a browser test because our unit test framework incorrectly calls
237 // DidStartProvisionalLoadForFrame for in-page navigations.
238 // See http://crbug.com/280512.
239 IN_PROC_BROWSER_TEST_F(WebContentsImplBrowserTest
,
240 ClearNonVisiblePendingOnFail
) {
241 ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
243 NavigateToURL(shell(), embedded_test_server()->GetURL("/title1.html"));
245 // Navigate to an invalid URL and make sure it doesn't leave a pending entry.
246 LoadStopNotificationObserver
load_observer1(
247 &shell()->web_contents()->GetController());
248 ASSERT_TRUE(ExecuteScript(shell()->web_contents(),
249 "window.location.href=\"nonexistent:12121\";"));
250 load_observer1
.Wait();
251 EXPECT_FALSE(shell()->web_contents()->GetController().GetPendingEntry());
253 LoadStopNotificationObserver
load_observer2(
254 &shell()->web_contents()->GetController());
255 ASSERT_TRUE(ExecuteScript(shell()->web_contents(),
256 "window.location.href=\"#foo\";"));
257 load_observer2
.Wait();
258 EXPECT_EQ(embedded_test_server()->GetURL("/title1.html#foo"),
259 shell()->web_contents()->GetVisibleURL());
262 // Crashes under ThreadSanitizer, http://crbug.com/356758.
263 #if defined(OS_WIN) || defined(OS_ANDROID) \
264 || defined(THREAD_SANITIZER)
265 #define MAYBE_GetSizeForNewRenderView DISABLED_GetSizeForNewRenderView
267 #define MAYBE_GetSizeForNewRenderView GetSizeForNewRenderView
269 // Test that RenderViewHost is created and updated at the size specified by
270 // WebContentsDelegate::GetSizeForNewRenderView().
271 IN_PROC_BROWSER_TEST_F(WebContentsImplBrowserTest
,
272 MAYBE_GetSizeForNewRenderView
) {
273 ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
274 // Create a new server with a different site.
275 net::SpawnedTestServer
https_server(
276 net::SpawnedTestServer::TYPE_HTTPS
,
277 net::SpawnedTestServer::kLocalhost
,
278 base::FilePath(FILE_PATH_LITERAL("content/test/data")));
279 ASSERT_TRUE(https_server
.Start());
281 scoped_ptr
<RenderViewSizeDelegate
> delegate(new RenderViewSizeDelegate());
282 shell()->web_contents()->SetDelegate(delegate
.get());
283 ASSERT_TRUE(shell()->web_contents()->GetDelegate() == delegate
.get());
285 // When no size is set, RenderWidgetHostView adopts the size of
287 NavigateToURL(shell(), embedded_test_server()->GetURL("/title2.html"));
288 EXPECT_EQ(shell()->web_contents()->GetContainerBounds().size(),
289 shell()->web_contents()->GetRenderWidgetHostView()->GetViewBounds().
292 // When a size is set, RenderWidgetHostView and WebContentsView honor this
294 gfx::Size
size(300, 300);
295 gfx::Size
size_insets(10, 15);
296 ResizeWebContentsView(shell(), size
, true);
297 delegate
->set_size_insets(size_insets
);
298 NavigateToURL(shell(), https_server
.GetURL("/"));
299 size
.Enlarge(size_insets
.width(), size_insets
.height());
301 shell()->web_contents()->GetRenderWidgetHostView()->GetViewBounds().
303 // The web_contents size is set by the embedder, and should not depend on the
304 // rwhv size. The behavior is correct on OSX, but incorrect on other
306 gfx::Size
exp_wcv_size(300, 300);
307 #if !defined(OS_MACOSX)
308 exp_wcv_size
.Enlarge(size_insets
.width(), size_insets
.height());
311 EXPECT_EQ(exp_wcv_size
,
312 shell()->web_contents()->GetContainerBounds().size());
314 // If WebContentsView is resized after RenderWidgetHostView is created but
315 // before pending navigation entry is committed, both RenderWidgetHostView and
316 // WebContentsView use the new size of WebContentsView.
317 gfx::Size
init_size(200, 200);
318 gfx::Size
new_size(100, 100);
319 size_insets
= gfx::Size(20, 30);
320 ResizeWebContentsView(shell(), init_size
, true);
321 delegate
->set_size_insets(size_insets
);
322 RenderViewSizeObserver
observer(shell(), new_size
);
323 NavigateToURL(shell(), embedded_test_server()->GetURL("/title1.html"));
324 // RenderWidgetHostView is created at specified size.
325 init_size
.Enlarge(size_insets
.width(), size_insets
.height());
326 EXPECT_EQ(init_size
, observer
.rwhv_create_size());
328 // Once again, the behavior is correct on OSX. The embedder explicitly sets
329 // the size to (100,100) during navigation. Both the wcv and the rwhv should
330 // take on that size.
331 #if !defined(OS_MACOSX)
332 new_size
.Enlarge(size_insets
.width(), size_insets
.height());
334 gfx::Size actual_size
= shell()->web_contents()->GetRenderWidgetHostView()->
335 GetViewBounds().size();
337 EXPECT_EQ(new_size
, actual_size
);
338 EXPECT_EQ(new_size
, shell()->web_contents()->GetContainerBounds().size());
341 IN_PROC_BROWSER_TEST_F(WebContentsImplBrowserTest
, OpenURLSubframe
) {
343 // Navigate with FrameTreeNode ID 4.
344 const GURL
url("http://foo");
345 OpenURLParams
params(url
, Referrer(), 4, CURRENT_TAB
, PAGE_TRANSITION_LINK
,
347 shell()->web_contents()->OpenURL(params
);
349 // Make sure the NavigationEntry ends up with the FrameTreeNode ID.
350 NavigationController
* controller
= &shell()->web_contents()->GetController();
351 EXPECT_TRUE(controller
->GetPendingEntry());
352 EXPECT_EQ(4, NavigationEntryImpl::FromNavigationEntry(
353 controller
->GetPendingEntry())->frame_tree_node_id());
356 // Observer class to track the creation of RenderFrameHost objects. It is used
357 // in subsequent tests.
358 class RenderFrameCreatedObserver
: public WebContentsObserver
{
360 RenderFrameCreatedObserver(Shell
* shell
)
361 : WebContentsObserver(shell
->web_contents()),
365 virtual void RenderFrameCreated(RenderFrameHost
* render_frame_host
) OVERRIDE
{
366 last_rfh_
= render_frame_host
;
369 RenderFrameHost
* last_rfh() const { return last_rfh_
; }
372 RenderFrameHost
* last_rfh_
;
374 DISALLOW_COPY_AND_ASSIGN(RenderFrameCreatedObserver
);
377 // Test that creation of new RenderFrameHost objects sends the correct object
378 // to the WebContentObservers. See http://crbug.com/347339.
379 IN_PROC_BROWSER_TEST_F(WebContentsImplBrowserTest
,
380 RenderFrameCreatedCorrectProcessForObservers
) {
381 std::string
foo_com("foo.com");
382 GURL::Replacements replace_host
;
383 net::HostPortPair foo_host_port
;
386 // Setup the server to allow serving separate sites, so we can perform
387 // cross-process navigation.
388 host_resolver()->AddRule("*", "127.0.0.1");
389 ASSERT_TRUE(test_server()->Start());
391 foo_host_port
= test_server()->host_port_pair();
392 foo_host_port
.set_host(foo_com
);
394 GURL
initial_url(test_server()->GetURL("/title1.html"));
396 cross_site_url
= test_server()->GetURL("/title2.html");
397 replace_host
.SetHostStr(foo_com
);
398 cross_site_url
= cross_site_url
.ReplaceComponents(replace_host
);
400 // Navigate to the initial URL and capture the RenderFrameHost for later
402 NavigateToURL(shell(), initial_url
);
403 RenderFrameHost
* orig_rfh
= shell()->web_contents()->GetMainFrame();
405 // Install the observer and navigate cross-site.
406 RenderFrameCreatedObserver
observer(shell());
407 NavigateToURL(shell(), cross_site_url
);
409 // The observer should've seen a RenderFrameCreated call for the new frame
410 // and not the old one.
411 EXPECT_NE(observer
.last_rfh(), orig_rfh
);
412 EXPECT_EQ(observer
.last_rfh(), shell()->web_contents()->GetMainFrame());
415 IN_PROC_BROWSER_TEST_F(WebContentsImplBrowserTest
,
416 LoadingStateChangedForSameDocumentNavigation
) {
417 ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
418 scoped_ptr
<LoadingStateChangedDelegate
> delegate(
419 new LoadingStateChangedDelegate());
420 shell()->web_contents()->SetDelegate(delegate
.get());
422 LoadStopNotificationObserver
load_observer(
423 &shell()->web_contents()->GetController());
424 TitleWatcher
title_watcher(shell()->web_contents(),
425 base::ASCIIToUTF16("pushState"));
426 NavigateToURL(shell(), embedded_test_server()->GetURL("/push_state.html"));
427 load_observer
.Wait();
428 base::string16 title
= title_watcher
.WaitAndGetTitle();
429 ASSERT_EQ(title
, base::ASCIIToUTF16("pushState"));
431 // LoadingStateChanged should be called 4 times: start and stop for the
432 // initial load of push_state.html, and start and stop for the "navigation"
433 // triggered by history.pushState(). However, the start notification for the
434 // history.pushState() navigation should set to_different_document to false.
435 EXPECT_EQ("pushState", shell()->web_contents()->GetURL().ref());
436 EXPECT_EQ(4, delegate
->loadingStateChangedCount());
437 EXPECT_EQ(3, delegate
->loadingStateToDifferentDocumentCount());
440 IN_PROC_BROWSER_TEST_F(WebContentsImplBrowserTest
,
441 RenderViewCreatedForChildWindow
) {
442 ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
444 NavigateToURL(shell(),
445 embedded_test_server()->GetURL("/title1.html"));
447 WebContentsAddedObserver new_web_contents_observer
;
448 ASSERT_TRUE(ExecuteScript(shell()->web_contents(),
449 "var a = document.createElement('a');"
450 "a.href='./title2.html';"
451 "a.target = '_blank';"
452 "document.body.appendChild(a);"
454 WebContents
* new_web_contents
= new_web_contents_observer
.GetWebContents();
455 WaitForLoadStop(new_web_contents
);
456 EXPECT_TRUE(new_web_contents_observer
.RenderViewCreatedCalled());
459 struct LoadProgressDelegateAndObserver
: public WebContentsDelegate
,
460 public WebContentsObserver
{
461 LoadProgressDelegateAndObserver(Shell
* shell
)
462 : WebContentsObserver(shell
->web_contents()),
463 did_start_loading(false),
464 did_stop_loading(false) {
465 web_contents()->SetDelegate(this);
468 // WebContentsDelegate:
469 virtual void LoadProgressChanged(WebContents
* source
,
470 double progress
) OVERRIDE
{
471 EXPECT_TRUE(did_start_loading
);
472 EXPECT_FALSE(did_stop_loading
);
473 progresses
.push_back(progress
);
476 // WebContentsObserver:
477 virtual void DidStartLoading(RenderViewHost
* render_view_host
) OVERRIDE
{
478 EXPECT_FALSE(did_start_loading
);
479 EXPECT_EQ(0U, progresses
.size());
480 EXPECT_FALSE(did_stop_loading
);
481 did_start_loading
= true;
484 virtual void DidStopLoading(RenderViewHost
* render_view_host
) OVERRIDE
{
485 EXPECT_TRUE(did_start_loading
);
486 EXPECT_GE(progresses
.size(), 1U);
487 EXPECT_FALSE(did_stop_loading
);
488 did_stop_loading
= true;
491 bool did_start_loading
;
492 std::vector
<double> progresses
;
493 bool did_stop_loading
;
496 IN_PROC_BROWSER_TEST_F(WebContentsImplBrowserTest
, LoadProgress
) {
497 ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
498 scoped_ptr
<LoadProgressDelegateAndObserver
> delegate(
499 new LoadProgressDelegateAndObserver(shell()));
501 NavigateToURL(shell(), embedded_test_server()->GetURL("/title1.html"));
503 const std::vector
<double>& progresses
= delegate
->progresses
;
504 // All updates should be in order ...
505 if (std::adjacent_find(progresses
.begin(),
507 std::greater
<double>()) != progresses
.end()) {
508 ADD_FAILURE() << "Progress values should be in order: "
509 << ::testing::PrintToString(progresses
);
512 // ... and the last one should be 1.0, meaning complete.
513 ASSERT_GE(progresses
.size(), 1U)
514 << "There should be at least one progress update";
515 EXPECT_EQ(1.0, *progresses
.rbegin());
518 struct FirstVisuallyNonEmptyPaintObserver
: public WebContentsObserver
{
519 FirstVisuallyNonEmptyPaintObserver(Shell
* shell
)
520 : WebContentsObserver(shell
->web_contents()),
521 did_fist_visually_non_empty_paint_(false) {}
523 virtual void DidFirstVisuallyNonEmptyPaint() OVERRIDE
{
524 did_fist_visually_non_empty_paint_
= true;
525 on_did_first_visually_non_empty_paint_
.Run();
528 void WaitForDidFirstVisuallyNonEmptyPaint() {
529 if (did_fist_visually_non_empty_paint_
)
531 base::RunLoop run_loop
;
532 on_did_first_visually_non_empty_paint_
= run_loop
.QuitClosure();
536 base::Closure on_did_first_visually_non_empty_paint_
;
537 bool did_fist_visually_non_empty_paint_
;
540 // See: http://crbug.com/395664
541 #if defined(OS_ANDROID)
542 #define MAYBE_FirstVisuallyNonEmptyPaint DISABLED_FirstVisuallyNonEmptyPaint
544 // http://crbug.com/398471
545 #define MAYBE_FirstVisuallyNonEmptyPaint DISABLED_FirstVisuallyNonEmptyPaint
547 IN_PROC_BROWSER_TEST_F(WebContentsImplBrowserTest
,
548 MAYBE_FirstVisuallyNonEmptyPaint
) {
549 ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
550 scoped_ptr
<FirstVisuallyNonEmptyPaintObserver
> observer(
551 new FirstVisuallyNonEmptyPaintObserver(shell()));
553 NavigateToURL(shell(), embedded_test_server()->GetURL("/title1.html"));
555 observer
->WaitForDidFirstVisuallyNonEmptyPaint();
556 ASSERT_TRUE(observer
->did_fist_visually_non_empty_paint_
);
559 } // namespace content