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

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

Issue 1521039: Allow extension overinstall (Closed)
Patch Set: blargh Created 10 years, 7 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_install_ui.cc ('k') | chrome/browser/extensions/extensions_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_management_browsertest.cc
diff --git a/chrome/browser/extensions/extension_management_browsertest.cc b/chrome/browser/extensions/extension_management_browsertest.cc
index 2530857d33c5b6618eb0b80e0460762975054d05..fd6ad0de73917f2b31cdc8fae4692d6d7ac64840 100644
--- a/chrome/browser/extensions/extension_management_browsertest.cc
+++ b/chrome/browser/extensions/extension_management_browsertest.cc
@@ -19,6 +19,11 @@ class ExtensionManagementTest : public ExtensionBrowserTest {
// Helper method that returns whether the extension is at the given version.
// This calls version(), which must be defined in the extension's bg page,
// as well as asking the extension itself.
+ //
+ // Note that 'version' here means something different than the version field
+ // in the extension's manifest. We use the version as reported by the
+ // background page to test how overinstalling crx files with the same
+ // manifest version works.
bool IsExtensionAtVersion(Extension* extension,
const std::string& expected_version) {
// Test that the extension's version from the manifest and reported by the
@@ -71,20 +76,23 @@ class ExtensionManagementTest : public ExtensionBrowserTest {
}
};
-// Tests that installing the same version does not overwrite.
+// Tests that installing the same version overwrites.
IN_PROC_BROWSER_TEST_F(ExtensionManagementTest, InstallSameVersion) {
ExtensionsService* service = browser()->profile()->GetExtensionsService();
const size_t size_before = service->extensions()->size();
ASSERT_TRUE(InstallExtension(
test_data_dir_.AppendASCII("install/install.crx"), 1));
+ FilePath old_path = service->extensions()->back()->path();
- // Install an extension with the same version. The previous install should
- // be kept.
+ // Install an extension with the same version. The previous install should be
+ // overwritten.
ASSERT_TRUE(InstallExtension(
test_data_dir_.AppendASCII("install/install_same_version.crx"), 0));
+ FilePath new_path = service->extensions()->back()->path();
- EXPECT_TRUE(IsExtensionAtVersion(service->extensions()->at(size_before),
- "1.0"));
+ EXPECT_FALSE(IsExtensionAtVersion(service->extensions()->at(size_before),
+ "1.0"));
+ EXPECT_NE(old_path.value(), new_path.value());
}
IN_PROC_BROWSER_TEST_F(ExtensionManagementTest, InstallOlderVersion) {
« no previous file with comments | « chrome/browser/extensions/extension_install_ui.cc ('k') | chrome/browser/extensions/extensions_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698