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

Side by Side Diff: chrome/browser/sessions/session_restore_browsertest.cc

Issue 1371002: Fixes bug where triggering session restore while the browser was... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 months 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/defaults.h"
6 #include "chrome/browser/browser.h"
7 #include "chrome/browser/browser_window.h"
8 #include "chrome/browser/tab_contents/tab_contents.h"
9 #include "chrome/test/in_process_browser_test.h"
10 #include "chrome/test/ui_test_utils.h"
11
12 typedef InProcessBrowserTest SessionRestoreTest;
13
14 // Makes sure when session restore is triggered in the same process we don't end
15 // up with an extra tab.
16 IN_PROC_BROWSER_TEST_F(SessionRestoreTest,
17 RestoreOnNewWindowWithNoTabbedBrowsers) {
18 if (browser_defaults::kRestorePopups)
19 return;
20
21 GURL url(ui_test_utils::GetTestUrl(L".", L"title1.html"));
22 ui_test_utils::NavigateToURL(browser(), url);
23
24 // Turn on session restore.
25 SessionStartupPref::SetStartupPref(
26 browser()->profile(),
27 SessionStartupPref(SessionStartupPref::LAST));
28
29 // Create a new popup.
30 Profile* profile = browser()->profile();
31 Browser* popup = Browser::CreateForPopup(profile);
32 popup->window()->Show();
33
34 // Close the browser.
35 browser()->window()->Close();
36
37 // Create a new window, which should trigger session restore.
38 popup->NewWindow();
39
40 Browser* new_browser = ui_test_utils::WaitForNewBrowser();
41
42 EXPECT_TRUE(new_browser != NULL);
Paweł Hajdan Jr. 2010/03/26 08:03:20 This should be ASSERT_TRUE to avoid a crash.
43
44 // The browser should only have one tab.
45 EXPECT_EQ(1, new_browser->tab_count());
Paweł Hajdan Jr. 2010/03/26 08:03:20 Same here.
46
47 // And the first url should be url.
48 EXPECT_EQ(url, new_browser->GetTabContentsAt(0)->GetURL());
49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698