OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_util.h" | 5 #include "base/file_util.h" |
6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
7 #include "base/stl_util-inl.h" | 7 #include "base/stl_util-inl.h" |
8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
9 #include "chrome/browser/profile_manager.h" | 9 #include "chrome/browser/profile_manager.h" |
10 #include "chrome/browser/history/history.h" | 10 #include "chrome/browser/history/history.h" |
(...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 EXPECT_EQ(controller().last_committed_entry_index(), 0); | 760 EXPECT_EQ(controller().last_committed_entry_index(), 0); |
761 EXPECT_TRUE(controller().GetLastCommittedEntry()); | 761 EXPECT_TRUE(controller().GetLastCommittedEntry()); |
762 EXPECT_EQ(controller().pending_entry_index(), -1); | 762 EXPECT_EQ(controller().pending_entry_index(), -1); |
763 EXPECT_FALSE(controller().pending_entry()); | 763 EXPECT_FALSE(controller().pending_entry()); |
764 EXPECT_EQ(url2, controller().GetActiveEntry()->url()); | 764 EXPECT_EQ(url2, controller().GetActiveEntry()->url()); |
765 | 765 |
766 EXPECT_FALSE(controller().CanGoBack()); | 766 EXPECT_FALSE(controller().CanGoBack()); |
767 EXPECT_FALSE(controller().CanGoForward()); | 767 EXPECT_FALSE(controller().CanGoForward()); |
768 } | 768 } |
769 | 769 |
| 770 // Similar to Redirect above, but the first URL is requested by POST, |
| 771 // the second URL is requested by GET. NavigationEntry::has_post_data_ |
| 772 // must be cleared. http://crbug.com/21245 |
| 773 TEST_F(NavigationControllerTest, PostThenRedirect) { |
| 774 TestNotificationTracker notifications; |
| 775 RegisterForAllNavNotifications(¬ifications, &controller()); |
| 776 |
| 777 const GURL url1("http://foo1"); |
| 778 const GURL url2("http://foo2"); // Redirection target |
| 779 |
| 780 // First request as POST |
| 781 controller().LoadURL(url1, GURL(), PageTransition::TYPED); |
| 782 controller().GetActiveEntry()->set_has_post_data(true); |
| 783 |
| 784 EXPECT_EQ(0U, notifications.size()); |
| 785 rvh()->SendNavigate(0, url2); |
| 786 EXPECT_TRUE(notifications.Check1AndReset( |
| 787 NotificationType::NAV_ENTRY_COMMITTED)); |
| 788 |
| 789 // Second request |
| 790 controller().LoadURL(url1, GURL(), PageTransition::TYPED); |
| 791 |
| 792 EXPECT_TRUE(controller().pending_entry()); |
| 793 EXPECT_EQ(controller().pending_entry_index(), -1); |
| 794 EXPECT_EQ(url1, controller().GetActiveEntry()->url()); |
| 795 |
| 796 ViewHostMsg_FrameNavigate_Params params = {0}; |
| 797 params.page_id = 0; |
| 798 params.url = url2; |
| 799 params.transition = PageTransition::SERVER_REDIRECT; |
| 800 params.redirects.push_back(GURL("http://foo1")); |
| 801 params.redirects.push_back(GURL("http://foo2")); |
| 802 params.should_update_history = false; |
| 803 params.gesture = NavigationGestureAuto; |
| 804 params.is_post = false; |
| 805 |
| 806 NavigationController::LoadCommittedDetails details; |
| 807 |
| 808 EXPECT_EQ(0U, notifications.size()); |
| 809 EXPECT_TRUE(controller().RendererDidNavigate(params, 0, &details)); |
| 810 EXPECT_TRUE(notifications.Check1AndReset( |
| 811 NotificationType::NAV_ENTRY_COMMITTED)); |
| 812 |
| 813 EXPECT_TRUE(details.type == NavigationType::SAME_PAGE); |
| 814 EXPECT_EQ(controller().entry_count(), 1); |
| 815 EXPECT_EQ(controller().last_committed_entry_index(), 0); |
| 816 EXPECT_TRUE(controller().GetLastCommittedEntry()); |
| 817 EXPECT_EQ(controller().pending_entry_index(), -1); |
| 818 EXPECT_FALSE(controller().pending_entry()); |
| 819 EXPECT_EQ(url2, controller().GetActiveEntry()->url()); |
| 820 EXPECT_FALSE(controller().GetActiveEntry()->has_post_data()); |
| 821 |
| 822 EXPECT_FALSE(controller().CanGoBack()); |
| 823 EXPECT_FALSE(controller().CanGoForward()); |
| 824 } |
| 825 |
770 // A redirect right off the bat should be a NEW_PAGE. | 826 // A redirect right off the bat should be a NEW_PAGE. |
771 TEST_F(NavigationControllerTest, ImmediateRedirect) { | 827 TEST_F(NavigationControllerTest, ImmediateRedirect) { |
772 TestNotificationTracker notifications; | 828 TestNotificationTracker notifications; |
773 RegisterForAllNavNotifications(¬ifications, &controller()); | 829 RegisterForAllNavNotifications(¬ifications, &controller()); |
774 | 830 |
775 const GURL url1("http://foo1"); | 831 const GURL url1("http://foo1"); |
776 const GURL url2("http://foo2"); // Redirection target | 832 const GURL url2("http://foo2"); // Redirection target |
777 | 833 |
778 // First request | 834 // First request |
779 controller().LoadURL(url1, GURL(), PageTransition::TYPED); | 835 controller().LoadURL(url1, GURL(), PageTransition::TYPED); |
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1536 TabNavigation nav(0, url0, GURL(), string16(), | 1592 TabNavigation nav(0, url0, GURL(), string16(), |
1537 webkit_glue::CreateHistoryStateForURL(url0), | 1593 webkit_glue::CreateHistoryStateForURL(url0), |
1538 PageTransition::LINK); | 1594 PageTransition::LINK); |
1539 session_helper_.AssertNavigationEquals(nav, | 1595 session_helper_.AssertNavigationEquals(nav, |
1540 windows_[0]->tabs[0]->navigations[0]); | 1596 windows_[0]->tabs[0]->navigations[0]); |
1541 nav.set_url(url2); | 1597 nav.set_url(url2); |
1542 session_helper_.AssertNavigationEquals(nav, | 1598 session_helper_.AssertNavigationEquals(nav, |
1543 windows_[0]->tabs[0]->navigations[1]); | 1599 windows_[0]->tabs[0]->navigations[1]); |
1544 } | 1600 } |
1545 */ | 1601 */ |
OLD | NEW |