OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/message_loop.h" | 5 #include "base/message_loop.h" |
6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
7 #include "base/scoped_temp_dir.h" | 7 #include "base/scoped_temp_dir.h" |
8 #include "base/stl_util-inl.h" | 8 #include "base/stl_util-inl.h" |
9 #include "base/string_number_conversions.h" | 9 #include "base/string_number_conversions.h" |
10 #include "chrome/browser/chrome_thread.h" | 10 #include "chrome/browser/chrome_thread.h" |
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 EXPECT_EQ(Extension::DISABLED, | 327 EXPECT_EQ(Extension::DISABLED, |
328 prefs()->GetExtensionState(extension_->id())); | 328 prefs()->GetExtensionState(extension_->id())); |
329 EXPECT_TRUE(prefs()->IsIncognitoEnabled(extension_->id())); | 329 EXPECT_TRUE(prefs()->IsIncognitoEnabled(extension_->id())); |
330 } | 330 } |
331 | 331 |
332 private: | 332 private: |
333 scoped_ptr<Extension> extension_; | 333 scoped_ptr<Extension> extension_; |
334 }; | 334 }; |
335 TEST_F(ExtensionPrefsOnExtensionInstalled, | 335 TEST_F(ExtensionPrefsOnExtensionInstalled, |
336 ExtensionPrefsOnExtensionInstalled) {} | 336 ExtensionPrefsOnExtensionInstalled) {} |
| 337 |
| 338 class ExtensionPrefsAppLaunchIndex : public ExtensionPrefsTest { |
| 339 public: |
| 340 virtual void Initialize() { |
| 341 // No extensions yet. |
| 342 EXPECT_EQ(0, prefs()->GetNextAppLaunchIndex()); |
| 343 |
| 344 extension_.reset(prefs_.AddExtension("on_extension_installed")); |
| 345 EXPECT_EQ(Extension::ENABLED, |
| 346 prefs()->GetExtensionState(extension_->id())); |
| 347 prefs()->OnExtensionInstalled(extension_.get(), |
| 348 Extension::ENABLED, false); |
| 349 } |
| 350 |
| 351 virtual void Verify() { |
| 352 int launch_index = prefs()->GetAppLaunchIndex(extension_->id()); |
| 353 // Extension should have been assigned a launch index > 0. |
| 354 EXPECT_GT(launch_index, 0); |
| 355 EXPECT_EQ(launch_index + 1, prefs()->GetNextAppLaunchIndex()); |
| 356 // Set a new launch index of one higher and verify. |
| 357 prefs()->SetAppLaunchIndex(extension_->id(), |
| 358 prefs()->GetNextAppLaunchIndex()); |
| 359 int new_launch_index = prefs()->GetAppLaunchIndex(extension_->id()); |
| 360 EXPECT_EQ(launch_index + 1, new_launch_index); |
| 361 |
| 362 // This extension doesn't exist, so it should return -1. |
| 363 EXPECT_EQ(-1, prefs()->GetAppLaunchIndex("foo")); |
| 364 } |
| 365 |
| 366 private: |
| 367 scoped_ptr<Extension> extension_; |
| 368 }; |
| 369 TEST_F(ExtensionPrefsAppLaunchIndex, ExtensionPrefsAppLaunchIndex) {} |
OLD | NEW |