blob: 0ee9e5eef6fe75c0a62d2c9c71d654a82ad57a55 [file] [log] [blame]
// 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.
#include "update_engine/mock_system_state.h"
#include "update_engine/update_attempter_mock.h"
namespace chromeos_update_engine {
// Mock the SystemStateInterface so that we could lie that
// OOBE is completed even when there's no such marker file, etc.
MockSystemState::MockSystemState()
: default_request_params_(this),
clock_(&default_clock_),
hardware_(&default_hardware_),
prefs_(&mock_prefs_),
powerwash_safe_prefs_(&mock_powerwash_safe_prefs_) {
request_params_ = &default_request_params_;
mock_payload_state_.Initialize(this);
mock_gpio_handler_ = new testing::NiceMock<MockGpioHandler>();
mock_update_attempter_ = new testing::NiceMock<UpdateAttempterMock>(
this, &dbus_);
}
MockSystemState::~MockSystemState() {
delete mock_gpio_handler_;
}
UpdateAttempter* MockSystemState::update_attempter() {
return mock_update_attempter_;
}
} // namespeace chromeos_update_engine