Don Garrett | 83692e4 | 2013-11-08 10:11:30 -0800 | [diff] [blame] | 1 | // Copyright (c) 2013 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Gilad Arnold | cf175a0 | 2014-07-10 16:48:47 -0700 | [diff] [blame] | 5 | #ifndef UPDATE_ENGINE_MOCK_HARDWARE_H_ |
| 6 | #define UPDATE_ENGINE_MOCK_HARDWARE_H_ |
Don Garrett | 83692e4 | 2013-11-08 10:11:30 -0800 | [diff] [blame] | 7 | |
Alex Deymo | df632d1 | 2014-04-29 20:04:36 -0700 | [diff] [blame] | 8 | #include <string> |
| 9 | #include <vector> |
| 10 | |
Alex Deymo | 04f2b38 | 2014-03-21 15:45:17 -0700 | [diff] [blame] | 11 | #include "update_engine/fake_hardware.h" |
Don Garrett | 83692e4 | 2013-11-08 10:11:30 -0800 | [diff] [blame] | 12 | |
| 13 | #include <gmock/gmock.h> |
| 14 | |
| 15 | namespace chromeos_update_engine { |
| 16 | |
| 17 | // A mocked, fake implementation of HardwareInterface. |
| 18 | class MockHardware : public HardwareInterface { |
Alex Deymo | df632d1 | 2014-04-29 20:04:36 -0700 | [diff] [blame] | 19 | public: |
Don Garrett | 83692e4 | 2013-11-08 10:11:30 -0800 | [diff] [blame] | 20 | MockHardware() { |
| 21 | // Delegate all calls to the fake instance |
| 22 | ON_CALL(*this, BootKernelDevice()) |
| 23 | .WillByDefault(testing::Invoke(&fake_, |
| 24 | &FakeHardware::BootKernelDevice)); |
| 25 | ON_CALL(*this, BootDevice()) |
| 26 | .WillByDefault(testing::Invoke(&fake_, |
| 27 | &FakeHardware::BootDevice)); |
Alex Deymo | 5708ecd | 2014-04-29 19:44:50 -0700 | [diff] [blame] | 28 | ON_CALL(*this, IsBootDeviceRemovable()) |
| 29 | .WillByDefault(testing::Invoke(&fake_, |
| 30 | &FakeHardware::IsBootDeviceRemovable)); |
Alex Vakulenko | 59e253e | 2014-02-24 10:40:21 -0800 | [diff] [blame] | 31 | ON_CALL(*this, GetKernelDevices()) |
| 32 | .WillByDefault(testing::Invoke(&fake_, |
| 33 | &FakeHardware::GetKernelDevices)); |
Don Garrett | 83692e4 | 2013-11-08 10:11:30 -0800 | [diff] [blame] | 34 | ON_CALL(*this, IsKernelBootable(testing::_, testing::_)) |
| 35 | .WillByDefault(testing::Invoke(&fake_, |
| 36 | &FakeHardware::IsKernelBootable)); |
| 37 | ON_CALL(*this, MarkKernelUnbootable(testing::_)) |
| 38 | .WillByDefault(testing::Invoke(&fake_, |
| 39 | &FakeHardware::MarkKernelUnbootable)); |
| 40 | ON_CALL(*this, IsOfficialBuild()) |
| 41 | .WillByDefault(testing::Invoke(&fake_, |
| 42 | &FakeHardware::IsOfficialBuild)); |
| 43 | ON_CALL(*this, IsNormalBootMode()) |
| 44 | .WillByDefault(testing::Invoke(&fake_, |
| 45 | &FakeHardware::IsNormalBootMode)); |
Alex Deymo | bccbc38 | 2014-04-03 13:38:55 -0700 | [diff] [blame] | 46 | ON_CALL(*this, IsOOBEComplete(testing::_)) |
| 47 | .WillByDefault(testing::Invoke(&fake_, |
| 48 | &FakeHardware::IsOOBEComplete)); |
Don Garrett | 83692e4 | 2013-11-08 10:11:30 -0800 | [diff] [blame] | 49 | ON_CALL(*this, GetHardwareClass()) |
| 50 | .WillByDefault(testing::Invoke(&fake_, |
| 51 | &FakeHardware::GetHardwareClass)); |
| 52 | ON_CALL(*this, GetFirmwareVersion()) |
| 53 | .WillByDefault(testing::Invoke(&fake_, |
| 54 | &FakeHardware::GetFirmwareVersion)); |
| 55 | ON_CALL(*this, GetECVersion()) |
| 56 | .WillByDefault(testing::Invoke(&fake_, |
| 57 | &FakeHardware::GetECVersion)); |
Alex Deymo | ebbe7ef | 2014-10-30 13:02:49 -0700 | [diff] [blame] | 58 | ON_CALL(*this, GetPowerwashCount()) |
| 59 | .WillByDefault(testing::Invoke(&fake_, |
| 60 | &FakeHardware::GetPowerwashCount)); |
Don Garrett | 83692e4 | 2013-11-08 10:11:30 -0800 | [diff] [blame] | 61 | } |
| 62 | |
Alex Deymo | 610277e | 2014-11-11 21:18:11 -0800 | [diff] [blame] | 63 | ~MockHardware() override {} |
Don Garrett | 83692e4 | 2013-11-08 10:11:30 -0800 | [diff] [blame] | 64 | |
| 65 | // Hardware overrides. |
Alex Vakulenko | d0fdfb3 | 2014-02-21 15:26:26 -0800 | [diff] [blame] | 66 | MOCK_CONST_METHOD0(BootKernelDevice, std::string()); |
| 67 | MOCK_CONST_METHOD0(BootDevice, std::string()); |
Alex Deymo | 5708ecd | 2014-04-29 19:44:50 -0700 | [diff] [blame] | 68 | MOCK_CONST_METHOD0(IsBootDeviceRemovable, bool()); |
Alex Vakulenko | d0fdfb3 | 2014-02-21 15:26:26 -0800 | [diff] [blame] | 69 | MOCK_CONST_METHOD0(GetKernelDevices, std::vector<std::string>()); |
| 70 | MOCK_CONST_METHOD2(IsKernelBootable, |
Don Garrett | 83692e4 | 2013-11-08 10:11:30 -0800 | [diff] [blame] | 71 | bool(const std::string& kernel_device, bool* bootable)); |
| 72 | MOCK_METHOD1(MarkKernelUnbootable, |
| 73 | bool(const std::string& kernel_device)); |
Alex Vakulenko | d0fdfb3 | 2014-02-21 15:26:26 -0800 | [diff] [blame] | 74 | MOCK_CONST_METHOD0(IsOfficialBuild, bool()); |
| 75 | MOCK_CONST_METHOD0(IsNormalBootMode, bool()); |
Alex Deymo | bccbc38 | 2014-04-03 13:38:55 -0700 | [diff] [blame] | 76 | MOCK_CONST_METHOD1(IsOOBEComplete, bool(base::Time* out_time_of_oobe)); |
Alex Vakulenko | d0fdfb3 | 2014-02-21 15:26:26 -0800 | [diff] [blame] | 77 | MOCK_CONST_METHOD0(GetHardwareClass, std::string()); |
| 78 | MOCK_CONST_METHOD0(GetFirmwareVersion, std::string()); |
| 79 | MOCK_CONST_METHOD0(GetECVersion, std::string()); |
Alex Deymo | ebbe7ef | 2014-10-30 13:02:49 -0700 | [diff] [blame] | 80 | MOCK_CONST_METHOD0(GetPowerwashCount, int()); |
Don Garrett | 83692e4 | 2013-11-08 10:11:30 -0800 | [diff] [blame] | 81 | |
| 82 | // Returns a reference to the underlying FakeHardware. |
| 83 | FakeHardware& fake() { |
| 84 | return fake_; |
| 85 | } |
| 86 | |
Alex Deymo | df632d1 | 2014-04-29 20:04:36 -0700 | [diff] [blame] | 87 | private: |
Don Garrett | 83692e4 | 2013-11-08 10:11:30 -0800 | [diff] [blame] | 88 | // The underlying FakeHardware. |
| 89 | FakeHardware fake_; |
| 90 | |
| 91 | DISALLOW_COPY_AND_ASSIGN(MockHardware); |
| 92 | }; |
| 93 | |
| 94 | |
| 95 | } // namespace chromeos_update_engine |
| 96 | |
Gilad Arnold | cf175a0 | 2014-07-10 16:48:47 -0700 | [diff] [blame] | 97 | #endif // UPDATE_ENGINE_MOCK_HARDWARE_H_ |