OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_util.h" | 6 #include "base/file_util.h" |
6 #include "chrome/test/automation/browser_proxy.h" | 7 #include "chrome/test/automation/browser_proxy.h" |
7 #include "chrome/test/automation/tab_proxy.h" | 8 #include "chrome/test/automation/tab_proxy.h" |
8 #include "chrome/test/ui/ui_test.h" | 9 #include "chrome/test/ui/ui_test.h" |
9 #include "net/base/net_util.h" | 10 #include "net/base/net_util.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
11 | 12 |
12 typedef UITest CrashRecoveryUITest; | 13 typedef UITest CrashRecoveryUITest; |
13 | 14 |
14 TEST_F(CrashRecoveryUITest, Reload) { | 15 TEST_F(CrashRecoveryUITest, Reload) { |
(...skipping 28 matching lines...) Expand all Loading... |
43 // Tests that loading a crashed page in a new tab correctly updates the title. | 44 // Tests that loading a crashed page in a new tab correctly updates the title. |
44 // There was an earlier bug (1270510) in process-per-site in which the max page | 45 // There was an earlier bug (1270510) in process-per-site in which the max page |
45 // ID of the RenderProcessHost was stale, so the NavigationEntry in the new tab | 46 // ID of the RenderProcessHost was stale, so the NavigationEntry in the new tab |
46 // was not committed. This prevents regression of that bug. | 47 // was not committed. This prevents regression of that bug. |
47 TEST_F(CrashRecoveryUITest, LoadInNewTab) { | 48 TEST_F(CrashRecoveryUITest, LoadInNewTab) { |
48 // This test only works in multi-process mode | 49 // This test only works in multi-process mode |
49 if (in_process_renderer()) | 50 if (in_process_renderer()) |
50 return; | 51 return; |
51 | 52 |
52 // The title of the active tab should change each time this URL is loaded. | 53 // The title of the active tab should change each time this URL is loaded. |
53 std::wstring test_file = test_data_directory_; | 54 FilePath test_file(FilePath::FromWStringHack(test_data_directory_)); |
54 file_util::AppendToPath(&test_file, L"title2.html"); | 55 test_file = test_file.AppendASCII("title2.html"); |
55 GURL url(net::FilePathToFileURL(test_file)); | 56 GURL url(net::FilePathToFileURL(test_file)); |
56 | 57 |
57 NavigateToURL(url); | 58 NavigateToURL(url); |
58 | 59 |
59 const std::wstring title(L"Title Of Awesomeness"); | 60 const std::wstring title(L"Title Of Awesomeness"); |
60 EXPECT_EQ(title, GetActiveTabTitle()); | 61 EXPECT_EQ(title, GetActiveTabTitle()); |
61 | 62 |
62 scoped_ptr<TabProxy> tab(GetActiveTab()); | 63 scoped_ptr<TabProxy> tab(GetActiveTab()); |
63 | 64 |
64 // Cause the renderer to crash. | 65 // Cause the renderer to crash. |
65 expected_crashes_ = 1; | 66 expected_crashes_ = 1; |
66 tab->NavigateToURLAsync(GURL("about:crash")); | 67 tab->NavigateToURLAsync(GURL("about:crash")); |
67 | 68 |
68 Sleep(1000); // Wait for the browser to notice the renderer crash. | 69 Sleep(1000); // Wait for the browser to notice the renderer crash. |
69 | 70 |
70 scoped_ptr<BrowserProxy> browser_proxy(automation()->GetBrowserWindow(0)); | 71 scoped_ptr<BrowserProxy> browser_proxy(automation()->GetBrowserWindow(0)); |
71 ASSERT_TRUE(browser_proxy->AppendTab(url)); | 72 ASSERT_TRUE(browser_proxy->AppendTab(url)); |
72 | 73 |
73 // Ensure the title of the new tab is updated, indicating that the navigation | 74 // Ensure the title of the new tab is updated, indicating that the navigation |
74 // entry was properly committed. | 75 // entry was properly committed. |
75 EXPECT_EQ(title, GetActiveTabTitle()); | 76 EXPECT_EQ(title, GetActiveTabTitle()); |
76 } | 77 } |
OLD | NEW |