OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
| 5 #include "base/path_service.h" |
| 6 |
| 7 #include "content/browser/loader/resource_dispatcher_host_impl.h" |
5 #include "content/browser/web_contents/web_contents_impl.h" | 8 #include "content/browser/web_contents/web_contents_impl.h" |
| 9 #include "content/public/browser/render_widget_host_view.h" |
| 10 #include "content/public/browser/resource_dispatcher_host_delegate.h" |
6 #include "content/public/browser/web_contents.h" | 11 #include "content/public/browser/web_contents.h" |
| 12 #include "content/public/common/content_paths.h" |
| 13 #include "content/public/test/browser_test_utils.h" |
7 #include "content/shell/browser/shell.h" | 14 #include "content/shell/browser/shell.h" |
8 #include "content/test/content_browser_test.h" | 15 #include "content/test/content_browser_test.h" |
9 #include "content/test/content_browser_test_utils.h" | 16 #include "content/test/content_browser_test_utils.h" |
10 #include "content/test/net/url_request_abort_on_end_job.h" | 17 #include "content/test/net/url_request_abort_on_end_job.h" |
11 | 18 |
| 19 #include "net/base/host_port_pair.h" |
| 20 #include "net/base/net_util.h" |
| 21 |
| 22 #include "ui/gfx/size.h" |
| 23 |
| 24 |
12 namespace content { | 25 namespace content { |
13 | 26 |
14 typedef ContentBrowserTest WebKitBrowserTest; | 27 class WebKitBrowserTestResourceDispatcherHostDelegate |
| 28 : public content::ResourceDispatcherHostDelegate { |
| 29 public: |
| 30 WebKitBrowserTestResourceDispatcherHostDelegate() |
| 31 : should_allow_request_(true) {} |
| 32 |
| 33 virtual bool ShouldBeginRequest( |
| 34 int child_id, |
| 35 int route_id, |
| 36 const std::string& method, |
| 37 const GURL& url, |
| 38 ResourceType::Type, |
| 39 ResourceContext*) OVERRIDE { return should_allow_request_; }; |
| 40 |
| 41 void set_should_allow_request(bool allow) { should_allow_request_ = allow; } |
| 42 |
| 43 private: |
| 44 bool should_allow_request_; |
| 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(WebKitBrowserTestResourceDispatcherHostDelegate); |
| 47 }; |
| 48 |
| 49 |
| 50 class WebKitBrowserTest : public ContentBrowserTest { |
| 51 public: |
| 52 // ContentBrowserTest implementation: |
| 53 virtual void SetUpOnMainThread() OVERRIDE { |
| 54 BrowserThread::PostTask( |
| 55 BrowserThread::IO, FROM_HERE, |
| 56 base::Bind( |
| 57 &WebKitBrowserTest::InjectResourceDisptcherHostDelegate, |
| 58 base::Unretained(this))); |
| 59 } |
| 60 |
| 61 void InjectResourceDisptcherHostDelegate() { |
| 62 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 63 ResourceDispatcherHostImpl::Get()->SetDelegate(&dispatcher_delegate_); |
| 64 } |
| 65 |
| 66 WebKitBrowserTestResourceDispatcherHostDelegate& dispatcher_delegate() { |
| 67 return dispatcher_delegate_; |
| 68 } |
| 69 |
| 70 private: |
| 71 WebKitBrowserTestResourceDispatcherHostDelegate dispatcher_delegate_; |
| 72 }; |
| 73 |
15 | 74 |
16 const char kAsyncScriptThatAbortsOnEndPage[] = | 75 const char kAsyncScriptThatAbortsOnEndPage[] = |
17 "files/webkit/async_script_abort_on_end.html"; | 76 "files/webkit/async_script_abort_on_end.html"; |
18 | 77 |
19 // This is a browser test because it is hard to reproduce reliably in a | 78 // This is a browser test because it is hard to reproduce reliably in a |
20 // layout test without races. http://crbug.com/75604 deals with a request | 79 // layout test without races. http://crbug.com/75604 deals with a request |
21 // for an async script which gets data in the response and immediately | 80 // for an async script which gets data in the response and immediately |
22 // after aborts. This test creates that condition, and it is passed | 81 // after aborts. This test creates that condition, and it is passed |
23 // if chrome does not crash. | 82 // if chrome does not crash. |
24 | 83 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 "files/prerender/prerender-no-crash.html"; | 128 "files/prerender/prerender-no-crash.html"; |
70 IN_PROC_BROWSER_TEST_F(WebKitBrowserTest, PrerenderNoCrash) { | 129 IN_PROC_BROWSER_TEST_F(WebKitBrowserTest, PrerenderNoCrash) { |
71 ASSERT_TRUE(test_server()->Start()); | 130 ASSERT_TRUE(test_server()->Start()); |
72 GURL url = test_server()->GetURL(kPrerenderNoCrashPage); | 131 GURL url = test_server()->GetURL(kPrerenderNoCrashPage); |
73 | 132 |
74 NavigateToURL(shell(), url); | 133 NavigateToURL(shell(), url); |
75 | 134 |
76 EXPECT_FALSE(shell()->web_contents()->IsCrashed()); | 135 EXPECT_FALSE(shell()->web_contents()->IsCrashed()); |
77 } | 136 } |
78 | 137 |
| 138 // This is a browser test because of how intertwined WebCore::DocumentLoader is |
| 139 // to other parts of Blink. Essentially, it's written to reproduce issue 34977, |
| 140 // performing the same steps taken in the bug report. |
| 141 const char kDocumentLoaderNoCrashPage[] = |
| 142 "bad-ssl.mht"; |
| 143 IN_PROC_BROWSER_TEST_F(WebKitBrowserTest, DocumentLoaderNoCrash) { |
| 144 base::FilePath content_test_data_dir; |
| 145 ASSERT_TRUE(PathService::Get(DIR_TEST_DATA, &content_test_data_dir)); |
| 146 GURL test_url = net::FilePathToFileURL( |
| 147 content_test_data_dir.AppendASCII(kDocumentLoaderNoCrashPage)); |
| 148 NavigateToURL(shell(), test_url); |
| 149 |
| 150 RenderWidgetHostView* rwhv = |
| 151 shell()->web_contents()->GetRenderWidgetHostView(); |
| 152 ASSERT_TRUE(rwhv); |
| 153 |
| 154 dispatcher_delegate().set_should_allow_request(false); |
| 155 NavigateToURL(shell(), GURL("http://www.ulv.no")); |
| 156 |
| 157 rwhv->SetSize(gfx::Size(200, 200)); |
| 158 |
| 159 // Just something synchronous, allowing WebContents::crashed_status_ to sync |
| 160 NavigateToURL(shell(), GURL("http://www.sau.no")); |
| 161 |
| 162 EXPECT_FALSE(shell()->web_contents()->IsCrashed()); |
| 163 } |
| 164 |
79 } // namespace content | 165 } // namespace content |
OLD | NEW |