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