From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- src/test/librados_test_stub/LibradosTestStub.h | 42 ++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/test/librados_test_stub/LibradosTestStub.h (limited to 'src/test/librados_test_stub/LibradosTestStub.h') diff --git a/src/test/librados_test_stub/LibradosTestStub.h b/src/test/librados_test_stub/LibradosTestStub.h new file mode 100644 index 000000000..5d335f488 --- /dev/null +++ b/src/test/librados_test_stub/LibradosTestStub.h @@ -0,0 +1,42 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#ifndef LIBRADOS_TEST_STUB_H +#define LIBRADOS_TEST_STUB_H + +#include "include/rados/librados_fwd.hpp" +#include + +namespace neorados { +struct IOContext; +struct RADOS; +} // namespace neorados + +namespace librados { + +class MockTestMemIoCtxImpl; +class MockTestMemRadosClient; +class TestCluster; +class TestClassHandler; + +MockTestMemIoCtxImpl &get_mock_io_ctx(IoCtx &ioctx); +MockTestMemIoCtxImpl &get_mock_io_ctx(neorados::RADOS& rados, + neorados::IOContext& io_context); + +MockTestMemRadosClient &get_mock_rados_client(neorados::RADOS& rados); + +} // namespace librados + +namespace librados_test_stub { + +typedef boost::shared_ptr TestClusterRef; + +void set_cluster(TestClusterRef cluster); +TestClusterRef get_cluster(); + +librados::TestClassHandler* get_class_handler(); + +} // namespace librados_test_stub + + +#endif // LIBRADOS_TEST_STUB_H -- cgit v1.2.3