From a698284093c7cf603b2ac2d3939854f2ff81412b Mon Sep 17 00:00:00 2001 From: Shengliang Guan Date: Thu, 23 Dec 2021 18:27:59 -0800 Subject: [PATCH] minor changes --- source/dnode/mgmt/impl/test/db/db.cpp | 89 +++++++++++++-------------- 1 file changed, 43 insertions(+), 46 deletions(-) diff --git a/source/dnode/mgmt/impl/test/db/db.cpp b/source/dnode/mgmt/impl/test/db/db.cpp index 823f58e3a8..378f46aa4d 100644 --- a/source/dnode/mgmt/impl/test/db/db.cpp +++ b/source/dnode/mgmt/impl/test/db/db.cpp @@ -162,52 +162,51 @@ TEST_F(DndTestDb, 02_Create_Alter_Drop_Db) { CheckBinary("ms", 3); // precision CheckInt8(0); // update - // // restart - // test.Restart(); - - // test.SendShowMetaMsg(TSDB_MGMT_TABLE_DB, ""); - // CHECK_META("show databases", 17); - - // test.SendShowRetrieveMsg(); - // EXPECT_EQ(test.GetShowRows(), 1); - - // CheckBinary("d1", TSDB_DB_NAME_LEN - 1); - // CheckTimestamp(); - // CheckInt16(2); // vgroups - // CheckInt16(1); // replica - // CheckInt16(2); // quorum - // CheckInt16(10); // days - // CheckBinary("300,400,500", 24); // days - // CheckInt32(16); // cache - // CheckInt32(12); // blocks - // CheckInt32(100); // minrows - // CheckInt32(4096); // maxrows - // CheckInt8(2); // wallevel - // CheckInt32(4000); // fsync - // CheckInt8(2); // comp - // CheckInt8(1); // cachelast - // CheckBinary("ms", 3); // precision - // CheckInt8(0); // update - - // { - // int32_t contLen = sizeof(SDropDbMsg); - - // SDropDbMsg* pReq = (SDropDbMsg*)rpcMallocCont(contLen); - // strcpy(pReq->db, "1.d1"); - - // SRpcMsg* pMsg = test.SendMsg(TSDB_MSG_TYPE_DROP_DB, pReq, contLen); - // ASSERT_NE(pMsg, nullptr); - // ASSERT_EQ(pMsg->code, 0); - // } - - // test.SendShowMetaMsg(TSDB_MGMT_TABLE_DB, ""); - // CHECK_META("show databases", 17); - - // test.SendShowRetrieveMsg(); - // EXPECT_EQ(test.GetShowRows(), 0); + // restart + test.Restart(); + + test.SendShowMetaMsg(TSDB_MGMT_TABLE_DB, ""); + CHECK_META("show databases", 17); + + test.SendShowRetrieveMsg(); + EXPECT_EQ(test.GetShowRows(), 1); + + CheckBinary("d1", TSDB_DB_NAME_LEN - 1); + CheckTimestamp(); + CheckInt16(2); // vgroups + CheckInt16(1); // replica + CheckInt16(2); // quorum + CheckInt16(10); // days + CheckBinary("300,400,500", 24); // days + CheckInt32(16); // cache + CheckInt32(12); // blocks + CheckInt32(100); // minrows + CheckInt32(4096); // maxrows + CheckInt8(2); // wallevel + CheckInt32(4000); // fsync + CheckInt8(2); // comp + CheckInt8(1); // cachelast + CheckBinary("ms", 3); // precision + CheckInt8(0); // update + + { + int32_t contLen = sizeof(SDropDbMsg); + + SDropDbMsg* pReq = (SDropDbMsg*)rpcMallocCont(contLen); + strcpy(pReq->db, "1.d1"); + + SRpcMsg* pMsg = test.SendMsg(TSDB_MSG_TYPE_DROP_DB, pReq, contLen); + ASSERT_NE(pMsg, nullptr); + ASSERT_EQ(pMsg->code, 0); + } + + test.SendShowMetaMsg(TSDB_MGMT_TABLE_DB, ""); + CHECK_META("show databases", 17); + + test.SendShowRetrieveMsg(); + EXPECT_EQ(test.GetShowRows(), 0); } -#if 0 TEST_F(DndTestDb, 03_Create_Use_Restart_Use_Db) { { int32_t contLen = sizeof(SCreateDbMsg); @@ -299,5 +298,3 @@ TEST_F(DndTestDb, 03_Create_Use_Restart_Use_Db) { } } } - -#endif \ No newline at end of file -- GitLab