blob: 90c7d61436aab6f22e9b65748b3315c8576f5d74 [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 CHROMEOS_DBUS_FAKE_UPDATE_ENGINE_CLIENT_H_
#define CHROMEOS_DBUS_FAKE_UPDATE_ENGINE_CLIENT_H_
#include <string>
#include "base/component_export.h"
#include "base/containers/queue.h"
#include "chromeos/dbus/update_engine_client.h"
namespace chromeos {
// A fake implementation of UpdateEngineClient. The user of this class can
// use set_update_engine_client_status() to set a fake last Status and
// GetLastStatus() returns the fake with no modification. Other methods do
// nothing.
class COMPONENT_EXPORT(CHROMEOS_DBUS) FakeUpdateEngineClient
: public UpdateEngineClient {
public:
FakeUpdateEngineClient();
~FakeUpdateEngineClient() override;
// UpdateEngineClient overrides
void Init(dbus::Bus* bus) override;
void AddObserver(Observer* observer) override;
void RemoveObserver(Observer* observer) override;
bool HasObserver(const Observer* observer) const override;
void RequestUpdateCheck(UpdateCheckCallback callback) override;
void RebootAfterUpdate() override;
void Rollback() override;
void CanRollbackCheck(RollbackCheckCallback callback) override;
update_engine::StatusResult GetLastStatus() override;
void SetChannel(const std::string& target_channel,
bool is_powerwash_allowed) override;
void GetChannel(bool get_current_channel,
GetChannelCallback callback) override;
void GetEolInfo(GetEolInfoCallback callback) override;
void SetUpdateOverCellularPermission(bool allowed,
base::OnceClosure callback) override;
void SetUpdateOverCellularOneTimePermission(
const std::string& target_version,
int64_t target_size,
UpdateOverCellularOneTimePermissionCallback callback) override;
// Pushes update_engine::StatusResult in the queue to test changing status.
// GetLastStatus() returns the status set by this method in FIFO order.
// See set_default_status().
void PushLastStatus(const update_engine::StatusResult& status) {
status_queue_.push(status);
}
// Sends status change notification.
void NotifyObserversThatStatusChanged(
const update_engine::StatusResult& status);
// Notifies observers that the user's one time permission is granted.
void NotifyUpdateOverCellularOneTimePermissionGranted();
// Sets the default update_engine::StatusResult. GetLastStatus() returns the
// value set here if |status_queue_| is empty.
void set_default_status(const update_engine::StatusResult& status);
void set_eol_date(const base::Time& eol_date) { eol_date_ = eol_date; }
// Sets a value returned by RequestUpdateCheck().
void set_update_check_result(
const UpdateEngineClient::UpdateCheckResult& result);
void set_can_rollback_check_result(bool result) {
can_rollback_stub_result_ = result;
}
// Returns how many times RebootAfterUpdate() is called.
int reboot_after_update_call_count() const {
return reboot_after_update_call_count_;
}
// Returns how many times RequestUpdateCheck() is called.
int request_update_check_call_count() const {
return request_update_check_call_count_;
}
// Returns how many times Rollback() is called.
int rollback_call_count() const { return rollback_call_count_; }
// Returns how many times CanRollback() is called.
int can_rollback_call_count() const { return can_rollback_call_count_; }
// Returns how many times |SetUpdateOverCellularPermission()| is called.
int update_over_cellular_permission_count() const {
return update_over_cellular_permission_count_;
}
// Returns how many times |SetUpdateOverCellularOneTimePermission()| is
// called.
int update_over_cellular_one_time_permission_count() const {
return update_over_cellular_one_time_permission_count_;
}
private:
base::ObserverList<Observer>::Unchecked observers_;
base::queue<update_engine::StatusResult> status_queue_;
update_engine::StatusResult default_status_;
UpdateCheckResult update_check_result_ = UPDATE_RESULT_SUCCESS;
bool can_rollback_stub_result_ = false;
int reboot_after_update_call_count_ = 0;
int request_update_check_call_count_ = 0;
int rollback_call_count_ = 0;
int can_rollback_call_count_ = 0;
int update_over_cellular_permission_count_ = 0;
int update_over_cellular_one_time_permission_count_ = 0;
base::Time eol_date_;
};
} // namespace chromeos
#endif // CHROMEOS_DBUS_FAKE_UPDATE_ENGINE_CLIENT_H_