tools: blob: implement get blob stat command
The firmware update process requires implementing the stat command, so
that one can verify the firmware mechanism requested is available.
Change-Id: I582f344124767975ee305c420657f991d2223889
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/test/blob_interface_mock.hpp b/test/blob_interface_mock.hpp
index 1e57771..8218ed5 100644
--- a/test/blob_interface_mock.hpp
+++ b/test/blob_interface_mock.hpp
@@ -5,4 +5,5 @@
public:
virtual ~BlobInterfaceMock() = default;
MOCK_METHOD0(getBlobList, std::vector<std::string>());
+ MOCK_METHOD1(getStat, StatResponse(const std::string&));
};