Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: chrome/browser/tab_contents/navigation_controller_unittest.cc

Issue 5716003: View source after POST command isn't what you expected. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added navigation controller test. Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/scoped_ptr.h" 7 #include "base/scoped_ptr.h"
8 #include "base/stl_util-inl.h" 8 #include "base/stl_util-inl.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
(...skipping 1847 matching lines...) Expand 10 before | Expand all | Expand 10 after
1858 EXPECT_EQ(url3, nav_params.a.url); 1858 EXPECT_EQ(url3, nav_params.a.url);
1859 process()->sink().ClearMessages(); 1859 process()->sink().ClearMessages();
1860 1860
1861 // Make sure an extravagant history.go() doesn't break. 1861 // Make sure an extravagant history.go() doesn't break.
1862 rvh_delegate->GoToEntryAtOffset(120); // Out of bounds. 1862 rvh_delegate->GoToEntryAtOffset(120); // Out of bounds.
1863 EXPECT_EQ(-1, controller().pending_entry_index()); 1863 EXPECT_EQ(-1, controller().pending_entry_index());
1864 message = process()->sink().GetFirstMessageMatching(ViewMsg_Navigate::ID); 1864 message = process()->sink().GetFirstMessageMatching(ViewMsg_Navigate::ID);
1865 EXPECT_TRUE(message == NULL); 1865 EXPECT_TRUE(message == NULL);
1866 } 1866 }
1867 1867
1868 // Test call to PruneAllButActive for the only entry.
1869 TEST_F(NavigationControllerTest, PruneAllButActiveForSingle) {
1870 const GURL url1("http://foo1");
1871 NavigateAndCommit(url1);
1872 controller().PruneAllButActive();
1873
1874 EXPECT_EQ(-1, controller().pending_entry_index());
1875 EXPECT_EQ(controller().GetEntryAtIndex(0)->url(), url1);
1876 }
1877
1878 // Test call to PruneAllButActive for last entry.
1879 TEST_F(NavigationControllerTest, PruneAllButActiveForLast) {
1880 const GURL url1("http://foo1");
1881 const GURL url2("http://foo2");
1882 const GURL url3("http://foo3");
1883
1884 NavigateAndCommit(url1);
1885 NavigateAndCommit(url2);
1886 NavigateAndCommit(url3);
1887 controller().GoBack();
1888 controller().GoBack();
1889 contents()->CommitPendingNavigation();
1890
1891 controller().PruneAllButActive();
1892
1893 EXPECT_EQ(-1, controller().pending_entry_index());
1894 EXPECT_EQ(controller().GetEntryAtIndex(0)->url(), url1);
1895 }
1896
1897 // Test call to PruneAllButActive for intermediate entry.
1898 TEST_F(NavigationControllerTest, PruneAllButActiveForIntermediate) {
1899 const GURL url1("http://foo1");
1900 const GURL url2("http://foo2");
1901 const GURL url3("http://foo3");
1902
1903 NavigateAndCommit(url1);
1904 NavigateAndCommit(url2);
1905 NavigateAndCommit(url3);
1906 controller().GoBack();
1907 contents()->CommitPendingNavigation();
1908
1909 controller().PruneAllButActive();
1910
1911 EXPECT_EQ(-1, controller().pending_entry_index());
1912 EXPECT_EQ(controller().GetEntryAtIndex(0)->url(), url2);
1913 }
1914
1915 // Test call to PruneAllButActive for intermediate entry.
1916 TEST_F(NavigationControllerTest, PruneAllButActiveForPending) {
1917 const GURL url1("http://foo1");
1918 const GURL url2("http://foo2");
1919 const GURL url3("http://foo3");
1920
1921 NavigateAndCommit(url1);
1922 NavigateAndCommit(url2);
1923 NavigateAndCommit(url3);
1924 controller().GoBack();
1925
1926 controller().PruneAllButActive();
1927
1928 EXPECT_EQ(0, controller().pending_entry_index());
1929 }
1930
1868 /* TODO(brettw) These test pass on my local machine but fail on the XP buildbot 1931 /* TODO(brettw) These test pass on my local machine but fail on the XP buildbot
1869 (but not Vista) cleaning up the directory after they run. 1932 (but not Vista) cleaning up the directory after they run.
1870 This should be fixed. 1933 This should be fixed.
1871 1934
1872 // A basic test case. Navigates to a single url, and make sure the history 1935 // A basic test case. Navigates to a single url, and make sure the history
1873 // db matches. 1936 // db matches.
1874 TEST_F(NavigationControllerHistoryTest, Basic) { 1937 TEST_F(NavigationControllerHistoryTest, Basic) {
1875 controller().LoadURL(url0, GURL(), PageTransition::LINK); 1938 controller().LoadURL(url0, GURL(), PageTransition::LINK);
1876 rvh()->SendNavigate(0, url0); 1939 rvh()->SendNavigate(0, url0);
1877 1940
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
1940 PageTransition::LINK); 2003 PageTransition::LINK);
1941 session_helper_.AssertNavigationEquals(nav, 2004 session_helper_.AssertNavigationEquals(nav,
1942 windows_[0]->tabs[0]->navigations[0]); 2005 windows_[0]->tabs[0]->navigations[0]);
1943 nav.set_url(url2); 2006 nav.set_url(url2);
1944 session_helper_.AssertNavigationEquals(nav, 2007 session_helper_.AssertNavigationEquals(nav,
1945 windows_[0]->tabs[0]->navigations[1]); 2008 windows_[0]->tabs[0]->navigations[1]);
1946 } 2009 }
1947 */ 2010 */
1948 2011
1949 } // namespace 2012 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698