Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Patrick Venture | aceb4ba | 2018-09-27 14:50:37 -0700 | [diff] [blame^] | 3 | #include <blobs-ipmid/blobs.hpp> |
| 4 | #include <blobs-ipmid/manager.hpp> |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 5 | #include <memory> |
| 6 | #include <string> |
| 7 | |
| 8 | #include <gmock/gmock.h> |
| 9 | |
| 10 | namespace blobs |
| 11 | { |
| 12 | |
| 13 | class ManagerMock : public ManagerInterface |
| 14 | { |
| 15 | public: |
| 16 | virtual ~ManagerMock() = default; |
| 17 | |
| 18 | MOCK_METHOD1(registerHandler, bool(std::unique_ptr<GenericBlobInterface>)); |
| 19 | MOCK_METHOD0(buildBlobList, uint32_t()); |
| 20 | MOCK_METHOD1(getBlobId, std::string(uint32_t)); |
| 21 | MOCK_METHOD3(open, bool(uint16_t, const std::string&, uint16_t*)); |
| 22 | MOCK_METHOD2(stat, bool(const std::string&, struct BlobMeta*)); |
| 23 | MOCK_METHOD2(stat, bool(uint16_t, struct BlobMeta*)); |
| 24 | MOCK_METHOD2(commit, bool(uint16_t, const std::vector<uint8_t>&)); |
| 25 | MOCK_METHOD1(close, bool(uint16_t)); |
| 26 | MOCK_METHOD3(read, std::vector<uint8_t>(uint16_t, uint32_t, uint32_t)); |
| 27 | MOCK_METHOD3(write, bool(uint16_t, uint32_t, const std::vector<uint8_t>&)); |
| 28 | MOCK_METHOD1(deleteBlob, bool(const std::string&)); |
| 29 | }; |
| 30 | } // namespace blobs |