OLD | NEW |
1 // Copyright (c) 2010 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/string_util.h" | 5 #include "base/string_util.h" |
| 6 #include "base/test/test_timeouts.h" |
6 #include "base/threading/platform_thread.h" | 7 #include "base/threading/platform_thread.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 "chrome/browser/net/url_request_failed_dns_job.h" | 10 #include "chrome/browser/net/url_request_failed_dns_job.h" |
10 #include "chrome/browser/net/url_request_mock_http_job.h" | 11 #include "chrome/browser/net/url_request_mock_http_job.h" |
11 #include "net/test/test_server.h" | 12 #include "net/test/test_server.h" |
12 | 13 |
13 class ErrorPageTest : public UITest { | 14 class ErrorPageTest : public UITest { |
14 protected: | 15 protected: |
15 bool WaitForTitleMatching(const std::wstring& title) { | 16 bool WaitForTitleMatching(const std::wstring& title) { |
16 for (int i = 0; i < 10; ++i) { | 17 for (int i = 0; i < 10; ++i) { |
17 if (GetActiveTabTitle() == title) | 18 if (GetActiveTabTitle() == title) |
18 return true; | 19 return true; |
19 base::PlatformThread::Sleep(sleep_timeout_ms()); | 20 base::PlatformThread::Sleep(TestTimeouts::action_timeout_ms()); |
20 } | 21 } |
21 EXPECT_EQ(title, GetActiveTabTitle()); | 22 EXPECT_EQ(title, GetActiveTabTitle()); |
22 return false; | 23 return false; |
23 } | 24 } |
24 }; | 25 }; |
25 | 26 |
26 TEST_F(ErrorPageTest, DNSError_Basic) { | 27 TEST_F(ErrorPageTest, DNSError_Basic) { |
27 GURL test_url(URLRequestFailedDnsJob::kTestUrl); | 28 GURL test_url(URLRequestFailedDnsJob::kTestUrl); |
28 | 29 |
29 // The first navigation should fail, and the second one should be the error | 30 // The first navigation should fail, and the second one should be the error |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 // page. | 203 // page. |
203 NavigateToURLBlockUntilNavigationsComplete( | 204 NavigateToURLBlockUntilNavigationsComplete( |
204 URLRequestMockHTTPJob::GetMockUrl( | 205 URLRequestMockHTTPJob::GetMockUrl( |
205 FilePath(FILE_PATH_LITERAL("page404.html"))), 2); | 206 FilePath(FILE_PATH_LITERAL("page404.html"))), 2); |
206 EXPECT_TRUE(WaitForTitleMatching(L"Mock Link Doctor")); | 207 EXPECT_TRUE(WaitForTitleMatching(L"Mock Link Doctor")); |
207 | 208 |
208 EXPECT_TRUE(GetActiveTab()->GoBack()); | 209 EXPECT_TRUE(GetActiveTab()->GoBack()); |
209 | 210 |
210 EXPECT_TRUE(WaitForTitleMatching(L"Title Of Awesomeness")); | 211 EXPECT_TRUE(WaitForTitleMatching(L"Title Of Awesomeness")); |
211 } | 212 } |
OLD | NEW |