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

Unified Diff: chrome/browser/extensions/extension_prefs_unittest.cc

Issue 3611014: Fix 57090: NTP apps sorted in random-looking order.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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/extensions/extension_prefs.cc ('k') | chrome/browser/resources/ntp/apps.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_prefs_unittest.cc
===================================================================
--- chrome/browser/extensions/extension_prefs_unittest.cc (revision 61932)
+++ chrome/browser/extensions/extension_prefs_unittest.cc (working copy)
@@ -334,3 +334,36 @@
};
TEST_F(ExtensionPrefsOnExtensionInstalled,
ExtensionPrefsOnExtensionInstalled) {}
+
+class ExtensionPrefsAppLaunchIndex : public ExtensionPrefsTest {
+public:
+ virtual void Initialize() {
+ // No extensions yet.
+ EXPECT_EQ(0, prefs()->GetNextAppLaunchIndex());
+
+ extension_.reset(prefs_.AddExtension("on_extension_installed"));
+ EXPECT_EQ(Extension::ENABLED,
+ prefs()->GetExtensionState(extension_->id()));
+ prefs()->OnExtensionInstalled(extension_.get(),
+ Extension::ENABLED, false);
+ }
+
+ virtual void Verify() {
+ int launch_index = prefs()->GetAppLaunchIndex(extension_->id());
+ // Extension should have been assigned a launch index > 0.
+ EXPECT_GT(launch_index, 0);
+ EXPECT_EQ(launch_index + 1, prefs()->GetNextAppLaunchIndex());
+ // Set a new launch index of one higher and verify.
+ prefs()->SetAppLaunchIndex(extension_->id(),
+ prefs()->GetNextAppLaunchIndex());
+ int new_launch_index = prefs()->GetAppLaunchIndex(extension_->id());
+ EXPECT_EQ(launch_index + 1, new_launch_index);
+
+ // This extension doesn't exist, so it should return -1.
+ EXPECT_EQ(-1, prefs()->GetAppLaunchIndex("foo"));
+ }
+
+private:
+ scoped_ptr<Extension> extension_;
+};
+TEST_F(ExtensionPrefsAppLaunchIndex, ExtensionPrefsAppLaunchIndex) {}
« no previous file with comments | « chrome/browser/extensions/extension_prefs.cc ('k') | chrome/browser/resources/ntp/apps.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698