| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/file_util.h" | 11 #include "base/file_util.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/scoped_temp_dir.h" | 13 #include "base/scoped_temp_dir.h" |
| 14 #include "base/string16.h" | 14 #include "base/string16.h" |
| 15 #include "base/string_util.h" |
| 15 #include "base/stringprintf.h" | 16 #include "base/stringprintf.h" |
| 16 #include "base/string_util.h" | |
| 17 #include "base/test/test_timeouts.h" | 17 #include "base/test/test_timeouts.h" |
| 18 #include "base/threading/platform_thread.h" | 18 #include "base/threading/platform_thread.h" |
| 19 #include "base/utf_string_conversions.h" | 19 #include "base/utf_string_conversions.h" |
| 20 #include "chrome/browser/history/history.h" | 20 #include "chrome/browser/history/history.h" |
| 21 #include "chrome/browser/history/history_service_factory.h" | 21 #include "chrome/browser/history/history_service_factory.h" |
| 22 #include "chrome/browser/profiles/profile.h" | 22 #include "chrome/browser/profiles/profile.h" |
| 23 #include "chrome/browser/ui/browser.h" | 23 #include "chrome/browser/ui/browser.h" |
| 24 #include "chrome/browser/ui/browser_tabstrip.h" | 24 #include "chrome/browser/ui/browser_tabstrip.h" |
| 25 #include "chrome/browser/ui/view_ids.h" | 25 #include "chrome/browser/ui/view_ids.h" |
| 26 #include "chrome/test/base/in_process_browser_test.h" | 26 #include "chrome/test/base/in_process_browser_test.h" |
| 27 #include "chrome/test/base/ui_test_utils.h" | 27 #include "chrome/test/base/ui_test_utils.h" |
| 28 #include "content/public/browser/web_contents.h" | 28 #include "content/public/browser/web_contents.h" |
| 29 #include "content/public/test/browser_test_utils.h" | 29 #include "content/public/test/browser_test_utils.h" |
| 30 #include "content/public/test/test_navigation_observer.h" | 30 #include "content/public/test/test_navigation_observer.h" |
| 31 #include "net/base/net_util.h" | 31 #include "net/base/net_util.h" |
| 32 #include "net/test/test_server.h" | 32 #include "net/test/test_server.h" |
| 33 #include "ui/base/events.h" | 33 #include "ui/base/events/event_constants.h" |
| 34 | 34 |
| 35 class RedirectTest : public InProcessBrowserTest { | 35 class RedirectTest : public InProcessBrowserTest { |
| 36 public: | 36 public: |
| 37 RedirectTest() {} | 37 RedirectTest() {} |
| 38 | 38 |
| 39 std::vector<GURL> GetRedirects(const GURL& url) { | 39 std::vector<GURL> GetRedirects(const GURL& url) { |
| 40 HistoryService* history_service = | 40 HistoryService* history_service = |
| 41 HistoryServiceFactory::GetForProfile(browser()->profile(), | 41 HistoryServiceFactory::GetForProfile(browser()->profile(), |
| 42 Profile::EXPLICIT_ACCESS); | 42 Profile::EXPLICIT_ACCESS); |
| 43 | 43 |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 // as a client redirect from the first (/client-redirect?) page. | 296 // as a client redirect from the first (/client-redirect?) page. |
| 297 for (std::vector<GURL>::iterator it = redirects.begin(); | 297 for (std::vector<GURL>::iterator it = redirects.begin(); |
| 298 it != redirects.end(); ++it) { | 298 it != redirects.end(); ++it) { |
| 299 if (final_url.spec() == it->spec()) { | 299 if (final_url.spec() == it->spec()) { |
| 300 final_navigation_not_redirect = false; | 300 final_navigation_not_redirect = false; |
| 301 break; | 301 break; |
| 302 } | 302 } |
| 303 } | 303 } |
| 304 EXPECT_TRUE(final_navigation_not_redirect); | 304 EXPECT_TRUE(final_navigation_not_redirect); |
| 305 } | 305 } |
| OLD | NEW |