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

Unified Diff: chrome/browser/memory/tab_manager_browsertest.cc

Issue 1867343002: [TabManager] [Merge M50] Protect tabs opened in background. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2661
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/memory/tab_manager.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/memory/tab_manager_browsertest.cc
diff --git a/chrome/browser/memory/tab_manager_browsertest.cc b/chrome/browser/memory/tab_manager_browsertest.cc
index eae4ce52b13b59ce397d0135cb525ed34f5ab9fe..e292fa3ab3c16a6827b363419b53991634767137 100644
--- a/chrome/browser/memory/tab_manager_browsertest.cc
+++ b/chrome/browser/memory/tab_manager_browsertest.cc
@@ -235,6 +235,9 @@ IN_PROC_BROWSER_TEST_F(TabManagerTest, InvalidOrEmptyURL) {
TabManager* tab_manager = g_browser_process->GetTabManager();
ASSERT_TRUE(tab_manager);
+ // Disable the protection of recent tabs.
+ tab_manager->minimum_protection_time_ = base::TimeDelta::FromMinutes(0);
+
// Open two tabs. Wait for the foreground one to load but do not wait for the
// background one.
content::WindowedNotificationObserver load1(
@@ -287,43 +290,63 @@ IN_PROC_BROWSER_TEST_F(TabManagerTest, ProtectPDFPages) {
EXPECT_FALSE(tab_manager->DiscardTab());
}
-// Makes sure that recently used tabs are protected, depending on the value of
-// of |minimum_protection_time_|.
+// Makes sure that recently opened or used tabs are protected, depending on the
+// value of of |minimum_protection_time_|.
// TODO(georgesak): Move this to a unit test instead (requires change to API).
IN_PROC_BROWSER_TEST_F(TabManagerTest, ProtectRecentlyUsedTabs) {
- const int protection_time = 5;
+ // TODO(georgesak): Retrieve this value from tab_manager.h once it becomes a
+ // constant (as of now, it gets set through variations).
+ const int kProtectionTime = 5;
TabManager* tab_manager = g_browser_process->GetTabManager();
ASSERT_TRUE(tab_manager);
base::SimpleTestTickClock test_clock_;
tab_manager->set_test_tick_clock(&test_clock_);
+ auto tsm = browser()->tab_strip_model();
+
// Set the minimum time of protection.
tab_manager->minimum_protection_time_ =
- base::TimeDelta::FromMinutes(protection_time);
+ base::TimeDelta::FromMinutes(kProtectionTime);
// Open 2 tabs, the second one being in the background.
ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIAboutURL));
ui_test_utils::NavigateToURLWithDisposition(
browser(), GURL(chrome::kChromeUIAboutURL), NEW_BACKGROUND_TAB,
ui_test_utils::BROWSER_TEST_WAIT_FOR_NAVIGATION);
+ EXPECT_EQ(2, tsm->count());
- // Set the last inactive time of the background tab.
- auto tab = browser()->tab_strip_model()->GetWebContentsAt(1);
- tab_manager->GetWebContentsData(tab)
- ->SetLastInactiveTime(test_clock_.NowTicks());
+ // Advance the clock for less than the protection time.
+ test_clock_.Advance(base::TimeDelta::FromMinutes(kProtectionTime / 2));
+
+ // Should not be able to discard a tab.
+ ASSERT_FALSE(tab_manager->DiscardTab());
+
+ // Advance the clock for more than the protection time.
+ test_clock_.Advance(base::TimeDelta::FromMinutes(kProtectionTime / 2 + 2));
+
+ // Should be able to discard the background tab now.
+ EXPECT_TRUE(tab_manager->DiscardTab());
+
+ // Activate the 2nd tab.
+ tsm->ActivateTabAt(1, true);
+ EXPECT_EQ(1, tsm->active_index());
// Advance the clock for less than the protection time.
- test_clock_.Advance(base::TimeDelta::FromMinutes(protection_time / 2));
+ test_clock_.Advance(base::TimeDelta::FromMinutes(kProtectionTime / 2));
// Should not be able to discard a tab.
ASSERT_FALSE(tab_manager->DiscardTab());
// Advance the clock for more than the protection time.
- test_clock_.Advance(base::TimeDelta::FromMinutes(protection_time / 2 + 2));
+ test_clock_.Advance(base::TimeDelta::FromMinutes(kProtectionTime / 2 + 2));
// Should be able to discard the background tab now.
EXPECT_TRUE(tab_manager->DiscardTab());
+
+ // This is necessary otherwise the test crashes in
+ // WebContentsData::WebContentsDestroyed.
+ tsm->CloseAllTabs();
}
// Makes sure that tabs using media devices are protected.
@@ -331,6 +354,9 @@ IN_PROC_BROWSER_TEST_F(TabManagerTest, ProtectVideoTabs) {
TabManager* tab_manager = g_browser_process->GetTabManager();
ASSERT_TRUE(tab_manager);
+ // Disable the protection of recent tabs.
+ tab_manager->minimum_protection_time_ = base::TimeDelta::FromMinutes(0);
+
// Open 2 tabs, the second one being in the background.
ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIAboutURL));
ui_test_utils::NavigateToURLWithDisposition(
« no previous file with comments | « chrome/browser/memory/tab_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698