blob: e71c83ab609d00aad5659409c47a89faa3e032eb [file] [log] [blame]
Alex Deymo763e7db2015-08-27 21:08:08 -07001//
2// Copyright (C) 2015 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
Alex Deymo39910dc2015-11-09 17:04:30 -080017#ifndef UPDATE_ENGINE_COMMON_FAKE_BOOT_CONTROL_H_
18#define UPDATE_ENGINE_COMMON_FAKE_BOOT_CONTROL_H_
Alex Deymo763e7db2015-08-27 21:08:08 -070019
20#include <map>
21#include <string>
22#include <vector>
23
24#include <base/time/time.h>
25
Alex Deymo39910dc2015-11-09 17:04:30 -080026#include "update_engine/common/boot_control_interface.h"
Alex Deymo763e7db2015-08-27 21:08:08 -070027
28namespace chromeos_update_engine {
29
30// Implements a fake bootloader control interface used for testing.
31class FakeBootControl : public BootControlInterface {
32 public:
33 FakeBootControl() {
34 SetNumSlots(num_slots_);
35 // The current slot should be bootable.
36 is_bootable_[current_slot_] = true;
37 }
38
39 // BootControlInterface overrides.
40 unsigned int GetNumSlots() const override { return num_slots_; }
41 BootControlInterface::Slot GetCurrentSlot() const override {
42 return current_slot_;
43 }
44
45 bool GetPartitionDevice(const std::string& partition_name,
46 BootControlInterface::Slot slot,
47 std::string* device) const override {
48 if (slot >= num_slots_)
49 return false;
50 auto part_it = devices_[slot].find(partition_name);
51 if (part_it == devices_[slot].end())
52 return false;
53 *device = part_it->second;
54 return true;
55 }
56
57 bool IsSlotBootable(BootControlInterface::Slot slot) const override {
58 return slot < num_slots_ && is_bootable_[slot];
59 }
60
61 bool MarkSlotUnbootable(BootControlInterface::Slot slot) override {
62 if (slot >= num_slots_)
63 return false;
64 is_bootable_[slot] = false;
65 return true;
66 }
67
Alex Deymo31d95ac2015-09-17 11:56:18 -070068 bool SetActiveBootSlot(Slot slot) override { return true; }
69
Alex Deymoaa26f622015-09-16 18:21:27 -070070 bool MarkBootSuccessfulAsync(base::Callback<void(bool)> callback) override {
71 // We run the callback directly from here to avoid having to setup a message
72 // loop in the test environment.
73 callback.Run(true);
74 return true;
75 }
76
Yifan Hong537802d2018-08-15 13:15:42 -070077 bool InitPartitionMetadata(Slot slot,
78 const PartitionSizes& partition_sizes) override {
79 return true;
80 }
81
82 void Cleanup() override {}
83
Alex Deymo763e7db2015-08-27 21:08:08 -070084 // Setters
85 void SetNumSlots(unsigned int num_slots) {
86 num_slots_ = num_slots;
87 is_bootable_.resize(num_slots_, false);
88 devices_.resize(num_slots_);
89 }
90
91 void SetCurrentSlot(BootControlInterface::Slot slot) {
92 current_slot_ = slot;
93 }
94
Chih-Hung Hsieh5c6bb1d2016-07-27 13:33:15 -070095 void SetPartitionDevice(const std::string& partition_name,
Alex Deymo763e7db2015-08-27 21:08:08 -070096 BootControlInterface::Slot slot,
Chih-Hung Hsieh5c6bb1d2016-07-27 13:33:15 -070097 const std::string& device) {
Alex Deymo763e7db2015-08-27 21:08:08 -070098 DCHECK(slot < num_slots_);
99 devices_[slot][partition_name] = device;
100 }
101
102 void SetSlotBootable(BootControlInterface::Slot slot, bool bootable) {
103 DCHECK(slot < num_slots_);
104 is_bootable_[slot] = bootable;
105 }
106
107 private:
108 BootControlInterface::Slot num_slots_{2};
109 BootControlInterface::Slot current_slot_{0};
110
111 std::vector<bool> is_bootable_;
112 std::vector<std::map<std::string, std::string>> devices_;
113
114 DISALLOW_COPY_AND_ASSIGN(FakeBootControl);
115};
116
117} // namespace chromeos_update_engine
118
Alex Deymo39910dc2015-11-09 17:04:30 -0800119#endif // UPDATE_ENGINE_COMMON_FAKE_BOOT_CONTROL_H_