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 // Navigates the browser to server and client redirect pages and makes sure | 5 // Navigates the browser to server and client redirect pages and makes sure |
6 // that the correct redirects are reflected in the history database. Errors | 6 // that the correct redirects are reflected in the history database. Errors |
7 // here might indicate that WebKit changed the calls our glue layer gets in | 7 // here might indicate that WebKit changed the calls our glue layer gets in |
8 // the case of redirects. It may also mean problems with the history system. | 8 // the case of redirects. It may also mean problems with the history system. |
9 | 9 |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
11 #include "base/platform_thread.h" | 11 #include "base/platform_thread.h" |
12 #include "base/scoped_ptr.h" | 12 #include "base/scoped_ptr.h" |
13 #include "base/string_util.h" | 13 #include "base/string_util.h" |
14 #include "chrome/test/automation/tab_proxy.h" | 14 #include "chrome/test/automation/tab_proxy.h" |
15 #include "chrome/test/ui/ui_test.h" | 15 #include "chrome/test/ui/ui_test.h" |
16 #include "net/base/net_util.h" | 16 #include "net/base/net_util.h" |
17 #include "net/url_request/url_request_unittest.h" | 17 #include "net/url_request/url_request_unittest.h" |
18 | 18 |
19 namespace { | 19 namespace { |
20 | 20 |
21 const wchar_t kDocRoot[] = L"chrome/test/data"; | 21 const wchar_t kDocRoot[] = L"chrome/test/data"; |
22 | 22 |
23 class RedirectTest : public UITest { | 23 class RedirectTest : public UITest { |
sky
2010/03/25 22:08:06
Go with:
typedef UITest RedirectTest;
| |
24 protected: | |
25 RedirectTest() : UITest() { | |
26 } | |
27 }; | 24 }; |
28 | 25 |
29 // Tests a single server redirect | 26 // Tests a single server redirect |
30 TEST_F(RedirectTest, Server) { | 27 TEST_F(RedirectTest, Server) { |
31 scoped_refptr<HTTPTestServer> server = | 28 scoped_refptr<HTTPTestServer> server = |
32 HTTPTestServer::CreateServer(kDocRoot, NULL); | 29 HTTPTestServer::CreateServer(kDocRoot, NULL); |
33 ASSERT_TRUE(NULL != server.get()); | 30 ASSERT_TRUE(NULL != server.get()); |
34 | 31 |
35 GURL final_url = server->TestServerPageW(std::wstring()); | 32 GURL final_url = server->TestServerPageW(std::wstring()); |
36 GURL first_url = server->TestServerPageW( | 33 GURL first_url = server->TestServerPageW( |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
298 it != redirects.end(); ++it) { | 295 it != redirects.end(); ++it) { |
299 if (final_url.spec() == it->spec()) { | 296 if (final_url.spec() == it->spec()) { |
300 final_navigation_not_redirect = false; | 297 final_navigation_not_redirect = false; |
301 break; | 298 break; |
302 } | 299 } |
303 } | 300 } |
304 EXPECT_TRUE(final_navigation_not_redirect); | 301 EXPECT_TRUE(final_navigation_not_redirect); |
305 } | 302 } |
306 | 303 |
307 } // namespace | 304 } // namespace |
OLD | NEW |