Co-authored-by: AnimationFan <30674773338@qq.com> Co-authored-by: simonjoylet <simonjoylet@gmail.com> Co-authored-by: Monk-Liu <1152761042@qq.com>
93 lines
3.0 KiB
C++
93 lines
3.0 KiB
C++
/**
|
|
* Copyright (c) 2021 OceanBase
|
|
* OceanBase CE is licensed under Mulan PubL v2.
|
|
* You can use this software according to the terms and conditions of the Mulan PubL v2.
|
|
* You may obtain a copy of Mulan PubL v2 at:
|
|
* http://license.coscl.org.cn/MulanPubL-2.0
|
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
* See the Mulan PubL v2 for more details.
|
|
*/
|
|
|
|
#include <gtest/gtest.h>
|
|
#define private public
|
|
#define protected public
|
|
|
|
#include "ob_index_block_data_prepare.h"
|
|
#include "storage/ddl/ob_direct_insert_sstable_ctx_new.h"
|
|
|
|
namespace oceanbase
|
|
{
|
|
using namespace lib;
|
|
using namespace common;
|
|
using namespace share;
|
|
using namespace storage;
|
|
using namespace blocksstable;
|
|
|
|
class TestDirectLoad : public TestIndexBlockDataPrepare
|
|
{
|
|
public:
|
|
TestDirectLoad() : TestIndexBlockDataPrepare("Test direct load") {}
|
|
virtual ~TestDirectLoad() {}
|
|
static void SetUpTestCase() { TestIndexBlockDataPrepare::SetUpTestCase(); }
|
|
static void TearDownTestCase() { TestIndexBlockDataPrepare::TearDownTestCase(); }
|
|
|
|
virtual void SetUp();
|
|
virtual void TearDown();
|
|
};
|
|
|
|
void TestDirectLoad::SetUp()
|
|
{
|
|
TestIndexBlockDataPrepare::SetUp();
|
|
ObLSID ls_id(ls_id_);
|
|
ObTabletID tablet_id(tablet_id_);
|
|
ObLSHandle ls_handle;
|
|
ObLSService *ls_svr = MTL(ObLSService*);
|
|
ASSERT_EQ(OB_SUCCESS, ls_svr->get_ls(ls_id, ls_handle, ObLSGetMod::STORAGE_MOD));
|
|
ASSERT_EQ(OB_SUCCESS, ls_handle.get_ls()->get_tablet(tablet_id, tablet_handle_));
|
|
|
|
prepare_query_param(true);
|
|
}
|
|
|
|
void TestDirectLoad::TearDown()
|
|
{
|
|
destroy_query_param();
|
|
tablet_handle_.reset();
|
|
TestIndexBlockDataPrepare::TearDown();
|
|
}
|
|
|
|
TEST_F(TestDirectLoad, init_ddl_table_store)
|
|
{
|
|
ObTabletFullDirectLoadMgr tablet_dl_mgr;
|
|
ObTabletDirectLoadInsertParam build_param;
|
|
build_param.common_param_.ls_id_ = ls_id_;
|
|
build_param.common_param_.tablet_id_ = tablet_id_;
|
|
build_param.common_param_.direct_load_type_ = ObDirectLoadType::DIRECT_LOAD_DDL;
|
|
build_param.common_param_.read_snapshot_ = SNAPSHOT_VERSION;
|
|
build_param.runtime_only_param_.task_cnt_ = 1;
|
|
build_param.runtime_only_param_.task_id_ = 1;
|
|
build_param.runtime_only_param_.table_id_ = TEST_TABLE_ID;
|
|
build_param.runtime_only_param_.schema_version_ = 1;
|
|
SCN ddl_start_scn;
|
|
ASSERT_EQ(OB_SUCCESS, ddl_start_scn.convert_from_ts(ObTimeUtility::current_time()));
|
|
ASSERT_EQ(OB_SUCCESS, tablet_dl_mgr.update(nullptr, build_param));
|
|
tablet_dl_mgr.start_scn_ = ddl_start_scn;
|
|
tablet_dl_mgr.data_format_version_ = DATA_VERSION_4_0_0_0;
|
|
ASSERT_EQ(OB_SUCCESS, tablet_dl_mgr.init_ddl_table_store(ddl_start_scn, SNAPSHOT_VERSION, ddl_start_scn));
|
|
|
|
}
|
|
|
|
|
|
} // namespace oceanbase
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
system("rm -f test_direct_load.log*");
|
|
OB_LOGGER.set_file_name("test_direct_load.log", true, true);
|
|
oceanbase::common::ObLogger::get_logger().set_log_level("INFO");
|
|
testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|