X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Ftest%2Frbd_mirror%2Ftest_fixture.h;fp=src%2Fceph%2Fsrc%2Ftest%2Frbd_mirror%2Ftest_fixture.h;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=5cc99e454cbfe8db5fe595ac5332e0d3d1a006ce;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/test/rbd_mirror/test_fixture.h b/src/ceph/src/test/rbd_mirror/test_fixture.h deleted file mode 100644 index 5cc99e4..0000000 --- a/src/ceph/src/test/rbd_mirror/test_fixture.h +++ /dev/null @@ -1,64 +0,0 @@ -// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- -// vim: ts=8 sw=2 smarttab - -#ifndef CEPH_TEST_RBD_MIRROR_TEST_FIXTURE_H -#define CEPH_TEST_RBD_MIRROR_TEST_FIXTURE_H - -#include "include/int_types.h" -#include "include/rados/librados.hpp" -#include -#include - -namespace librbd { -class ImageCtx; -class RBD; -} - -namespace rbd { -namespace mirror { - -template class Threads; - -class TestFixture : public ::testing::Test { -public: - TestFixture(); - - static void SetUpTestCase(); - static void TearDownTestCase(); - - void SetUp() override; - void TearDown() override; - - librados::IoCtx m_local_io_ctx; - librados::IoCtx m_remote_io_ctx; - - std::string m_image_name; - uint64_t m_image_size = 1 << 24; - - std::set m_image_ctxs; - - Threads *m_threads = nullptr; - - - int create_image(librbd::RBD &rbd, librados::IoCtx &ioctx, - const std::string &name, uint64_t size); - int open_image(librados::IoCtx &io_ctx, const std::string &image_name, - librbd::ImageCtx **image_ctx); - - int create_snap(librbd::ImageCtx *image_ctx, const char* snap_name, - librados::snap_t *snap_id = nullptr); - - static std::string get_temp_image_name(); - static int create_image_data_pool(std::string &data_pool); - - static std::string _local_pool_name; - static std::string _remote_pool_name; - static std::shared_ptr _rados; - static uint64_t _image_number; - static std::string _data_pool; -}; - -} // namespace mirror -} // namespace rbd - -#endif // CEPH_TEST_RBD_MIRROR_TEST_FIXTURE_H