// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_BROWSER_API_STORAGE_SETTINGS_TEST_UTIL_H_ #define EXTENSIONS_BROWSER_API_STORAGE_SETTINGS_TEST_UTIL_H_ #include #include #include "base/compiler_specific.h" #include "base/memory/linked_ptr.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "chrome/test/base/testing_profile.h" #include "extensions/browser/api/storage/settings_namespace.h" #include "extensions/browser/api/storage/settings_storage_factory.h" #include "extensions/browser/event_router.h" #include "extensions/browser/mock_extension_system.h" #include "extensions/common/extension.h" class ValueStore; namespace extensions { class StorageFrontend; // Utilities for extension settings API tests. namespace settings_test_util { // Creates a kilobyte of data. scoped_ptr CreateKilobyte(); // Creates a megabyte of data. scoped_ptr CreateMegabyte(); // Synchronously gets the storage area for an extension from |frontend|. ValueStore* GetStorage(scoped_refptr extension, settings_namespace::Namespace setting_namespace, StorageFrontend* frontend); // Synchronously gets the SYNC storage for an extension from |frontend|. ValueStore* GetStorage(scoped_refptr extension, StorageFrontend* frontend); // Creates an extension with |id| and adds it to the registry for |context|. scoped_refptr AddExtensionWithId( content::BrowserContext* context, const std::string& id, Manifest::Type type); // Creates an extension with |id| with a set of |permissions| and adds it to // the registry for |context|. scoped_refptr AddExtensionWithIdAndPermissions( content::BrowserContext* context, const std::string& id, Manifest::Type type, const std::set& permissions); // A MockExtensionSystem to serve an EventRouter. // NOTE: New code should prefer using MockExtensionSystem directly. class MockExtensionSystemWithEventRouter : public MockExtensionSystem { public: explicit MockExtensionSystemWithEventRouter(content::BrowserContext* context); ~MockExtensionSystemWithEventRouter() override; // Factory method for SetTestingFactoryAndUse. static KeyedService* Build(content::BrowserContext* context); // MockExtensionSystem overrides: EventRouter* event_router() override; private: scoped_ptr event_router_; DISALLOW_COPY_AND_ASSIGN(MockExtensionSystemWithEventRouter); }; // SettingsStorageFactory which acts as a wrapper for other factories. class ScopedSettingsStorageFactory : public SettingsStorageFactory { public: ScopedSettingsStorageFactory(); explicit ScopedSettingsStorageFactory( const scoped_refptr& delegate); // Sets the delegate factory (equivalent to scoped_ptr::reset). void Reset(const scoped_refptr& delegate); // SettingsStorageFactory implementation. ValueStore* Create(const base::FilePath& base_path, const std::string& extension_id) override; void DeleteDatabaseIfExists(const base::FilePath& base_path, const std::string& extension_id) override; private: // SettingsStorageFactory is refcounted. ~ScopedSettingsStorageFactory() override; scoped_refptr delegate_; }; } // namespace settings_test_util } // namespace extensions #endif // EXTENSIONS_BROWSER_API_STORAGE_SETTINGS_TEST_UTIL_H_