blob: 67b8812228e88439029d1ffb4506c2968a4fe6f8 [file] [log] [blame]
// Copyright (c) 2012 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 CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_
#define CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_
#include "chrome/browser/extensions/extension_system.h"
class CommandLine;
class TestingValueStore;
namespace base {
class FilePath;
class Time;
}
namespace content {
class BrowserContext;
}
namespace extensions {
class ExtensionPrefs;
// Test ExtensionSystem, for use with TestingProfile.
class TestExtensionSystem : public ExtensionSystem {
public:
explicit TestExtensionSystem(Profile* profile);
virtual ~TestExtensionSystem();
// BrowserContextKeyedService implementation.
virtual void Shutdown() OVERRIDE;
// Creates an ExtensionPrefs with the testing profile and returns it.
// Useful for tests that need to modify prefs before creating the
// ExtensionService.
ExtensionPrefs* CreateExtensionPrefs(const CommandLine* command_line,
const base::FilePath& install_directory);
// Creates an ExtensionService initialized with the testing profile and
// returns it, and creates ExtensionPrefs if it hasn't been created yet.
ExtensionService* CreateExtensionService(
const CommandLine* command_line,
const base::FilePath& install_directory,
bool autoupdate_enabled);
// Creates an ExtensionProcessManager. If not invoked, the
// ExtensionProcessManager is NULL.
void CreateExtensionProcessManager();
void CreateSocketManager();
virtual void InitForRegularProfile(bool extensions_enabled,
bool defer_background_creation) OVERRIDE {}
void SetExtensionService(ExtensionService* service);
virtual ExtensionService* extension_service() OVERRIDE;
virtual ManagementPolicy* management_policy() OVERRIDE;
virtual UserScriptMaster* user_script_master() OVERRIDE;
virtual ExtensionProcessManager* process_manager() OVERRIDE;
virtual StateStore* state_store() OVERRIDE;
virtual StateStore* rules_store() OVERRIDE;
TestingValueStore* value_store() { return value_store_; }
virtual ExtensionInfoMap* info_map() OVERRIDE;
virtual LazyBackgroundTaskQueue* lazy_background_task_queue() OVERRIDE;
virtual EventRouter* event_router() OVERRIDE;
virtual ExtensionWarningService* warning_service() OVERRIDE;
virtual Blacklist* blacklist() OVERRIDE;
virtual const OneShotEvent& ready() const OVERRIDE;
virtual ErrorConsole* error_console() OVERRIDE;
void SetReady() {
LOG(INFO) << "SetReady()";
ready_.Signal();
}
// Factory method for tests to use with SetTestingProfile.
static BrowserContextKeyedService* Build(content::BrowserContext* profile);
protected:
Profile* profile_;
private:
scoped_ptr<StateStore> state_store_;
// A pointer to the TestingValueStore owned by |state_store_|.
TestingValueStore* value_store_;
scoped_ptr<Blacklist> blacklist_;
scoped_ptr<StandardManagementPolicyProvider>
standard_management_policy_provider_;
scoped_ptr<ManagementPolicy> management_policy_;
scoped_ptr<ExtensionService> extension_service_;
scoped_ptr<ExtensionProcessManager> extension_process_manager_;
scoped_refptr<ExtensionInfoMap> info_map_;
scoped_ptr<ErrorConsole> error_console_;
OneShotEvent ready_;
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_