OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/file_path.h" | 5 #include "base/file_path.h" |
6 #include "chrome/browser/ui/browser.h" | 6 #include "chrome/browser/ui/browser.h" |
7 #include "chrome/common/url_constants.h" | 7 #include "chrome/common/url_constants.h" |
8 #include "chrome/test/in_process_browser_test.h" | 8 #include "chrome/test/in_process_browser_test.h" |
9 #include "chrome/test/ui_test_utils.h" | 9 #include "chrome/test/ui_test_utils.h" |
10 #include "content/browser/tab_contents/navigation_entry.h" | 10 #include "content/browser/tab_contents/navigation_entry.h" |
11 #include "content/common/content_notification_types.h" | 11 #include "content/common/content_notification_types.h" |
12 #include "content/common/page_transition_types.h" | 12 #include "content/common/page_transition_types.h" |
13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
14 | 14 |
15 namespace { | 15 namespace { |
16 | 16 |
17 void SimulateRendererCrash(Browser* browser) { | 17 void SimulateRendererCrash(Browser* browser) { |
| 18 ui_test_utils::WindowedNotificationObserver observer( |
| 19 content::NOTIFICATION_TAB_CONTENTS_DISCONNECTED, |
| 20 NotificationService::AllSources()); |
18 browser->OpenURL(GURL(chrome::kChromeUICrashURL), GURL(), CURRENT_TAB, | 21 browser->OpenURL(GURL(chrome::kChromeUICrashURL), GURL(), CURRENT_TAB, |
19 PageTransition::TYPED); | 22 PageTransition::TYPED); |
20 LOG(ERROR) << "SimulateRendererCrash, before WaitForNotification"; | 23 observer.Wait(); |
21 ui_test_utils::WaitForNotification( | |
22 content::NOTIFICATION_TAB_CONTENTS_DISCONNECTED); | |
23 LOG(ERROR) << "SimulateRendererCrash, after WaitForNotification"; | |
24 } | 24 } |
25 | 25 |
26 } // namespace | 26 } // namespace |
27 | 27 |
28 class CrashRecoveryBrowserTest : public InProcessBrowserTest { | 28 class CrashRecoveryBrowserTest : public InProcessBrowserTest { |
29 }; | 29 }; |
30 | 30 |
31 // Test that reload works after a crash. | 31 // Test that reload works after a crash. |
32 // Disabled, http://crbug.com/29331, http://crbug.com/69637. | 32 // Disabled, http://crbug.com/29331, http://crbug.com/69637. |
33 IN_PROC_BROWSER_TEST_F(CrashRecoveryBrowserTest, Reload) { | 33 IN_PROC_BROWSER_TEST_F(CrashRecoveryBrowserTest, Reload) { |
34 // The title of the active tab should change each time this URL is loaded. | 34 // The title of the active tab should change each time this URL is loaded. |
35 GURL url( | 35 GURL url( |
36 "data:text/html,<script>document.title=new Date().valueOf()</script>"); | 36 "data:text/html,<script>document.title=new Date().valueOf()</script>"); |
37 ui_test_utils::NavigateToURL(browser(), url); | 37 ui_test_utils::NavigateToURL(browser(), url); |
38 | 38 |
39 string16 title_before_crash; | 39 string16 title_before_crash; |
40 string16 title_after_crash; | 40 string16 title_after_crash; |
41 | 41 |
42 ASSERT_TRUE(ui_test_utils::GetCurrentTabTitle(browser(), | 42 ASSERT_TRUE(ui_test_utils::GetCurrentTabTitle(browser(), |
43 &title_before_crash)); | 43 &title_before_crash)); |
44 SimulateRendererCrash(browser()); | 44 SimulateRendererCrash(browser()); |
| 45 ui_test_utils::WindowedNotificationObserver observer(*browser()); |
45 browser()->Reload(CURRENT_TAB); | 46 browser()->Reload(CURRENT_TAB); |
46 LOG(ERROR) << "Before WaitForNavigationInCurrentTab"; | 47 observer.Wait(); |
47 ASSERT_TRUE(ui_test_utils::WaitForNavigationInCurrentTab(browser())); | |
48 LOG(ERROR) << "After WaitForNavigationInCurrentTab"; | |
49 ASSERT_TRUE(ui_test_utils::GetCurrentTabTitle(browser(), | 48 ASSERT_TRUE(ui_test_utils::GetCurrentTabTitle(browser(), |
50 &title_after_crash)); | 49 &title_after_crash)); |
51 EXPECT_NE(title_before_crash, title_after_crash); | 50 EXPECT_NE(title_before_crash, title_after_crash); |
52 } | 51 } |
53 | 52 |
54 // Tests that loading a crashed page in a new tab correctly updates the title. | 53 // Tests that loading a crashed page in a new tab correctly updates the title. |
55 // There was an earlier bug (1270510) in process-per-site in which the max page | 54 // There was an earlier bug (1270510) in process-per-site in which the max page |
56 // ID of the RenderProcessHost was stale, so the NavigationEntry in the new tab | 55 // ID of the RenderProcessHost was stale, so the NavigationEntry in the new tab |
57 // was not committed. This prevents regression of that bug. | 56 // was not committed. This prevents regression of that bug. |
58 // http://crbug.com/57158 - Times out sometimes on all platforms. | 57 // http://crbug.com/57158 - Times out sometimes on all platforms. |
59 IN_PROC_BROWSER_TEST_F(CrashRecoveryBrowserTest, LoadInNewTab) { | 58 IN_PROC_BROWSER_TEST_F(CrashRecoveryBrowserTest, LoadInNewTab) { |
60 const FilePath::CharType* kTitle2File = FILE_PATH_LITERAL("title2.html"); | 59 const FilePath::CharType* kTitle2File = FILE_PATH_LITERAL("title2.html"); |
61 | 60 |
62 ui_test_utils::NavigateToURL(browser(), | 61 ui_test_utils::NavigateToURL(browser(), |
63 ui_test_utils::GetTestUrl(FilePath(FilePath::kCurrentDirectory), | 62 ui_test_utils::GetTestUrl(FilePath(FilePath::kCurrentDirectory), |
64 FilePath(kTitle2File))); | 63 FilePath(kTitle2File))); |
65 | 64 |
66 string16 title_before_crash; | 65 string16 title_before_crash; |
67 string16 title_after_crash; | 66 string16 title_after_crash; |
68 | 67 |
69 ASSERT_TRUE(ui_test_utils::GetCurrentTabTitle(browser(), | 68 ASSERT_TRUE(ui_test_utils::GetCurrentTabTitle(browser(), |
70 &title_before_crash)); | 69 &title_before_crash)); |
71 SimulateRendererCrash(browser()); | 70 SimulateRendererCrash(browser()); |
| 71 ui_test_utils::WindowedNotificationObserver observer(*browser()); |
72 browser()->Reload(CURRENT_TAB); | 72 browser()->Reload(CURRENT_TAB); |
73 LOG(ERROR) << "Before WaitForNavigationInCurrentTab"; | 73 observer.Wait(); |
74 ASSERT_TRUE(ui_test_utils::WaitForNavigationInCurrentTab(browser())); | |
75 LOG(ERROR) << "After WaitForNavigationInCurrentTab"; | |
76 ASSERT_TRUE(ui_test_utils::GetCurrentTabTitle(browser(), | 74 ASSERT_TRUE(ui_test_utils::GetCurrentTabTitle(browser(), |
77 &title_after_crash)); | 75 &title_after_crash)); |
78 EXPECT_EQ(title_before_crash, title_after_crash); | 76 EXPECT_EQ(title_before_crash, title_after_crash); |
79 } | 77 } |
OLD | NEW |