| // Copyright (c) 2012 The Chromium OS 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 CHROMEOS_PLATFORM_UPDATE_ENGINE_MOCK_SYSTEM_STATE_H__ |
| #define CHROMEOS_PLATFORM_UPDATE_ENGINE_MOCK_SYSTEM_STATE_H__ |
| |
| #include <gmock/gmock.h> |
| |
| #include <metrics/metrics_library_mock.h> |
| #include <policy/mock_device_policy.h> |
| |
| #include "update_engine/mock_dbus_interface.h" |
| #include "update_engine/mock_gpio_handler.h" |
| #include "update_engine/mock_payload_state.h" |
| #include "update_engine/clock.h" |
| #include "update_engine/prefs_mock.h" |
| #include "update_engine/system_state.h" |
| |
| namespace chromeos_update_engine { |
| |
| class UpdateAttempterMock; |
| |
| // Mock the SystemStateInterface so that we could lie that |
| // OOBE is completed even when there's no such marker file, etc. |
| class MockSystemState : public SystemState { |
| public: |
| MockSystemState(); |
| |
| virtual ~MockSystemState(); |
| |
| MOCK_METHOD0(IsOOBEComplete, bool()); |
| |
| MOCK_METHOD1(set_device_policy, void(const policy::DevicePolicy*)); |
| MOCK_CONST_METHOD0(device_policy, const policy::DevicePolicy*()); |
| MOCK_METHOD0(system_rebooted, bool()); |
| |
| inline virtual ClockInterface* clock() { |
| return clock_; |
| } |
| |
| inline virtual ConnectionManager* connection_manager() { |
| return connection_manager_; |
| } |
| |
| inline virtual MetricsLibraryInterface* metrics_lib() { |
| return &mock_metrics_lib_; |
| } |
| |
| inline virtual PrefsInterface* prefs() { |
| return prefs_; |
| } |
| |
| inline virtual PayloadStateInterface* payload_state() { |
| return &mock_payload_state_; |
| } |
| |
| inline virtual GpioHandler* gpio_handler() const { |
| return mock_gpio_handler_; |
| } |
| |
| virtual UpdateAttempter* update_attempter(); |
| |
| inline virtual OmahaRequestParams* request_params() { |
| return request_params_; |
| } |
| |
| // MockSystemState-specific public method. |
| inline void set_connection_manager(ConnectionManager* connection_manager) { |
| connection_manager_ = connection_manager; |
| } |
| |
| inline MetricsLibraryMock* mock_metrics_lib() { |
| return &mock_metrics_lib_; |
| } |
| |
| inline void set_clock(ClockInterface* clock) { |
| clock_ = clock; |
| } |
| |
| inline void set_prefs(PrefsInterface* prefs) { |
| prefs_ = prefs; |
| } |
| |
| inline testing::NiceMock<PrefsMock> *mock_prefs() { |
| return &mock_prefs_; |
| } |
| |
| inline MockPayloadState* mock_payload_state() { |
| return &mock_payload_state_; |
| } |
| |
| inline void set_request_params(OmahaRequestParams* params) { |
| request_params_ = params; |
| } |
| |
| private: |
| // These are Mock objects or objects we own. |
| testing::NiceMock<MetricsLibraryMock> mock_metrics_lib_; |
| testing::NiceMock<PrefsMock> mock_prefs_; |
| testing::NiceMock<MockPayloadState> mock_payload_state_; |
| testing::NiceMock<MockGpioHandler>* mock_gpio_handler_; |
| testing::NiceMock<UpdateAttempterMock>* mock_update_attempter_; |
| MockDbusGlib dbus_; |
| |
| // These are the other object we own. |
| Clock default_clock_; |
| OmahaRequestParams default_request_params_; |
| |
| // These are pointers to objects which caller can override. |
| ClockInterface* clock_; |
| PrefsInterface* prefs_; |
| ConnectionManager* connection_manager_; |
| OmahaRequestParams* request_params_; |
| }; |
| |
| } // namespeace chromeos_update_engine |
| |
| #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_MOCK_SYSTEM_STATE_H__ |