OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/ref_counted.h" | 5 #include "base/ref_counted.h" |
6 #include "chrome/browser/extensions/autoupdate_interceptor.h" | 6 #include "chrome/browser/extensions/autoupdate_interceptor.h" |
7 #include "chrome/browser/extensions/extension_browsertest.h" | 7 #include "chrome/browser/extensions/extension_browsertest.h" |
8 #include "chrome/browser/extensions/extension_host.h" | 8 #include "chrome/browser/extensions/extension_host.h" |
9 #include "chrome/browser/extensions/extension_service.h" | 9 #include "chrome/browser/extensions/extension_service.h" |
10 #include "chrome/browser/extensions/extension_test_message_listener.h" | 10 #include "chrome/browser/extensions/extension_test_message_listener.h" |
11 #include "chrome/browser/extensions/extension_updater.h" | 11 #include "chrome/browser/extensions/extension_updater.h" |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 ASSERT_TRUE(service->disabled_extensions()->empty()); | 345 ASSERT_TRUE(service->disabled_extensions()->empty()); |
346 | 346 |
347 PrefService* prefs = browser()->profile()->GetPrefs(); | 347 PrefService* prefs = browser()->profile()->GetPrefs(); |
348 { | 348 { |
349 // Set the policy as a user preference and fire notification observers. | 349 // Set the policy as a user preference and fire notification observers. |
350 ScopedPrefUpdate pref_update(prefs, prefs::kExtensionInstallForceList); | 350 ScopedPrefUpdate pref_update(prefs, prefs::kExtensionInstallForceList); |
351 ListValue* forcelist = | 351 ListValue* forcelist = |
352 prefs->GetMutableList(prefs::kExtensionInstallForceList); | 352 prefs->GetMutableList(prefs::kExtensionInstallForceList); |
353 ASSERT_TRUE(forcelist->empty()); | 353 ASSERT_TRUE(forcelist->empty()); |
354 forcelist->Append(Value::CreateStringValue( | 354 forcelist->Append(Value::CreateStringValue( |
355 "ogjcoiohnmldgjemafoockdghcjciccf;" | 355 std::string(kExtensionId) + |
356 "http://localhost/autoupdate/manifest")); | 356 ";http://localhost/autoupdate/manifest")); |
357 } | 357 } |
358 | 358 |
359 // Check if the extension got installed. | 359 // Check if the extension got installed. |
360 ASSERT_TRUE(WaitForExtensionInstall()); | 360 ASSERT_TRUE(WaitForExtensionInstall()); |
361 const ExtensionList* extensions = service->extensions(); | 361 const ExtensionList* extensions = service->extensions(); |
362 ASSERT_EQ(size_before + 1, extensions->size()); | 362 ASSERT_EQ(size_before + 1, extensions->size()); |
363 ASSERT_EQ(kExtensionId, extensions->at(size_before)->id()); | 363 ASSERT_EQ(kExtensionId, extensions->at(size_before)->id()); |
364 EXPECT_EQ("2.0", extensions->at(size_before)->VersionString()); | 364 EXPECT_EQ("2.0", extensions->at(size_before)->VersionString()); |
365 EXPECT_EQ(Extension::EXTERNAL_POLICY_DOWNLOAD, | 365 EXPECT_EQ(Extension::EXTERNAL_POLICY_DOWNLOAD, |
366 extensions->at(size_before)->location()); | 366 extensions->at(size_before)->location()); |
367 | 367 |
368 // Check that emptying the list doesn't cause any trouble. | 368 // Check that emptying the list triggers uninstall. |
369 prefs->ClearPref(prefs::kExtensionInstallForceList); | 369 { |
| 370 ScopedPrefUpdate pref_update(prefs, prefs::kExtensionInstallForceList); |
| 371 prefs->ClearPref(prefs::kExtensionInstallForceList); |
| 372 } |
| 373 EXPECT_EQ(size_before, extensions->size()); |
| 374 ExtensionList::const_iterator i; |
| 375 for (i = extensions->begin(); i != extensions->end(); ++i) |
| 376 EXPECT_NE(kExtensionId, (*i)->id()); |
370 } | 377 } |
OLD | NEW |