summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_commands_unittest.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-29 02:42:09 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-29 02:42:09 +0000
commite21e8c9fd9c5829b7daff4ce35da037ec924bcd0 (patch)
treed904258a0383cab2331c1cff6fe15bd317221921 /chrome/browser/browser_commands_unittest.cc
parent25564e80ea9a7e1752d53b741f255cddea69dbf6 (diff)
downloadchromium_src-e21e8c9fd9c5829b7daff4ce35da037ec924bcd0.zip
chromium_src-e21e8c9fd9c5829b7daff4ce35da037ec924bcd0.tar.gz
chromium_src-e21e8c9fd9c5829b7daff4ce35da037ec924bcd0.tar.bz2
Write a test for my previous patch to fix a crash in back/forward navigations
creating new tabs. Review URL: http://codereview.chromium.org/100031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14819 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_commands_unittest.cc')
-rw-r--r--chrome/browser/browser_commands_unittest.cc66
1 files changed, 66 insertions, 0 deletions
diff --git a/chrome/browser/browser_commands_unittest.cc b/chrome/browser/browser_commands_unittest.cc
index 5cecf0a..4a6735c 100644
--- a/chrome/browser/browser_commands_unittest.cc
+++ b/chrome/browser/browser_commands_unittest.cc
@@ -99,3 +99,69 @@ TEST_F(BrowserCommandsTest, BookmarkCurrentPage) {
EXPECT_EQ(profile(), browser()->profile());
EXPECT_TRUE(browser()->profile()->GetBookmarkModel()->IsBookmarked(url1));
}
+
+// Tests back/forward in new tab (Control + Back/Forward button in the UI).
+TEST_F(BrowserCommandsTest, BackForwardInNewTab) {
+ GURL url1("http://foo/1");
+ GURL url2("http://foo/2");
+
+ // Make a tab with the two pages navigated in it.
+ AddTab(browser(), url1);
+ NavigateAndCommitActiveTab(url2);
+
+ // Go back in a new background tab.
+ browser()->GoBack(NEW_BACKGROUND_TAB);
+ EXPECT_EQ(0, browser()->selected_index());
+ ASSERT_EQ(2, browser()->tab_count());
+
+ // The original tab should be unchanged.
+ TabContents* zeroth = browser()->GetTabContentsAt(0);
+ EXPECT_EQ(url2, zeroth->GetURL());
+ EXPECT_TRUE(zeroth->controller().CanGoBack());
+ EXPECT_FALSE(zeroth->controller().CanGoForward());
+
+ // The new tab should be like the first one but navigated back.
+ TabContents* first = browser()->GetTabContentsAt(1);
+ EXPECT_EQ(url1, browser()->GetTabContentsAt(1)->GetURL());
+ EXPECT_FALSE(first->controller().CanGoBack());
+ EXPECT_TRUE(first->controller().CanGoForward());
+
+ // Select the second tab and make it go forward in a new background tab.
+ browser()->SelectTabContentsAt(1, true);
+ // TODO(brettw) bug 11055: It should not be necessary to commit the load here,
+ // but because of this bug, it will assert later if we don't. When the bug is
+ // fixed, one of the three commits here related to this bug should be removed
+ // (to test both codepaths).
+ CommitPendingLoad(&first->controller());
+ EXPECT_EQ(1, browser()->selected_index());
+ browser()->GoForward(NEW_BACKGROUND_TAB);
+
+ // The previous tab should be unchanged and still in the foreground.
+ EXPECT_EQ(url1, first->GetURL());
+ EXPECT_FALSE(first->controller().CanGoBack());
+ EXPECT_TRUE(first->controller().CanGoForward());
+ EXPECT_EQ(1, browser()->selected_index());
+
+ // There should be a new tab navigated forward.
+ ASSERT_EQ(3, browser()->tab_count());
+ TabContents* second = browser()->GetTabContentsAt(2);
+ EXPECT_EQ(url2, second->GetURL());
+ EXPECT_TRUE(second->controller().CanGoBack());
+ EXPECT_FALSE(second->controller().CanGoForward());
+
+ // Now do back in a new foreground tab. Don't bother re-checking every sngle
+ // thing above, just validate that it's opening properly.
+ browser()->SelectTabContentsAt(2, true);
+ // TODO(brettw) bug 11055: see the comment above about why we need this.
+ CommitPendingLoad(&second->controller());
+ browser()->GoBack(NEW_FOREGROUND_TAB);
+ ASSERT_EQ(3, browser()->selected_index());
+ ASSERT_EQ(url1, browser()->GetSelectedTabContents()->GetURL());
+
+ // Same thing again for forward.
+ // TODO(brettw) bug 11055: see the comment above about why we need this.
+ CommitPendingLoad(&browser()->GetSelectedTabContents()->controller());
+ browser()->GoForward(NEW_FOREGROUND_TAB);
+ ASSERT_EQ(4, browser()->selected_index());
+ ASSERT_EQ(url2, browser()->GetSelectedTabContents()->GetURL());
+}