db.cpp 10.5 KB
Newer Older
S
Shengliang Guan 已提交
1
/**
S
Shengliang Guan 已提交
2
 * @file db.cpp
S
Shengliang Guan 已提交
3
 * @author slguan (slguan@taosdata.com)
S
Shengliang Guan 已提交
4 5 6
 * @brief MNODE module db tests
 * @version 1.0
 * @date 2022-01-11
S
Shengliang Guan 已提交
7
 *
S
Shengliang Guan 已提交
8
 * @copyright Copyright (c) 2022
S
Shengliang Guan 已提交
9 10 11
 *
 */

S
Shengliang Guan 已提交
12
#include "sut.h"
S
Shengliang Guan 已提交
13

S
Shengliang Guan 已提交
14
class MndTestDb : public ::testing::Test {
S
Shengliang Guan 已提交
15
 protected:
S
Shengliang Guan 已提交
16 17
  static void SetUpTestSuite() { test.Init("/tmp/mnode_test_db", 9030); }
  static void TearDownTestSuite() { test.Cleanup(); }
S
Shengliang Guan 已提交
18

S
Shengliang Guan 已提交
19
  static Testbase test;
S
Shengliang Guan 已提交
20 21 22 23 24 25

 public:
  void SetUp() override {}
  void TearDown() override {}
};

S
Shengliang Guan 已提交
26
Testbase MndTestDb::test;
S
Shengliang Guan 已提交
27

S
Shengliang Guan 已提交
28
TEST_F(MndTestDb, 01_ShowDb) {
S
Shengliang Guan 已提交
29
  test.SendShowMetaReq(TSDB_MGMT_TABLE_DB, "");
S
Shengliang Guan 已提交
30
  CHECK_META("show databases", 18);
S
Shengliang Guan 已提交
31 32 33
  CHECK_SCHEMA(0, TSDB_DATA_TYPE_BINARY, TSDB_DB_NAME_LEN - 1 + VARSTR_HEADER_SIZE, "name");
  CHECK_SCHEMA(1, TSDB_DATA_TYPE_TIMESTAMP, 8, "create_time");
  CHECK_SCHEMA(2, TSDB_DATA_TYPE_SMALLINT, 2, "vgroups");
S
Shengliang Guan 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
  CHECK_SCHEMA(3, TSDB_DATA_TYPE_INT, 4, "ntables");
  CHECK_SCHEMA(4, TSDB_DATA_TYPE_SMALLINT, 2, "replica");
  CHECK_SCHEMA(5, TSDB_DATA_TYPE_SMALLINT, 2, "quorum");
  CHECK_SCHEMA(6, TSDB_DATA_TYPE_SMALLINT, 2, "days");
  CHECK_SCHEMA(7, TSDB_DATA_TYPE_BINARY, 24 + VARSTR_HEADER_SIZE, "keep0,keep1,keep2");
  CHECK_SCHEMA(8, TSDB_DATA_TYPE_INT, 4, "cache");
  CHECK_SCHEMA(9, TSDB_DATA_TYPE_INT, 4, "blocks");
  CHECK_SCHEMA(10, TSDB_DATA_TYPE_INT, 4, "minrows");
  CHECK_SCHEMA(11, TSDB_DATA_TYPE_INT, 4, "maxrows");
  CHECK_SCHEMA(12, TSDB_DATA_TYPE_TINYINT, 1, "wallevel");
  CHECK_SCHEMA(13, TSDB_DATA_TYPE_INT, 4, "fsync");
  CHECK_SCHEMA(14, TSDB_DATA_TYPE_TINYINT, 1, "comp");
  CHECK_SCHEMA(15, TSDB_DATA_TYPE_TINYINT, 1, "cachelast");
  CHECK_SCHEMA(16, TSDB_DATA_TYPE_BINARY, 3 + VARSTR_HEADER_SIZE, "precision");
  CHECK_SCHEMA(17, TSDB_DATA_TYPE_TINYINT, 1, "update");
S
Shengliang Guan 已提交
49

S
Shengliang Guan 已提交
50
  test.SendShowRetrieveReq();
S
Shengliang Guan 已提交
51
  EXPECT_EQ(test.GetShowRows(), 0);
S
Shengliang Guan 已提交
52 53
}

S
Shengliang Guan 已提交
54
TEST_F(MndTestDb, 02_Create_Alter_Drop_Db) {
S
Shengliang Guan 已提交
55
  {
S
Shengliang Guan 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
    SCreateDbReq createReq = {0};
    strcpy(createReq.db, "1.d1");
    createReq.numOfVgroups = 2;
    createReq.cacheBlockSize = 16;
    createReq.totalBlocks = 10;
    createReq.daysPerFile = 10;
    createReq.daysToKeep0 = 3650;
    createReq.daysToKeep1 = 3650;
    createReq.daysToKeep2 = 3650;
    createReq.minRows = 100;
    createReq.maxRows = 4096;
    createReq.commitTime = 3600;
    createReq.fsyncPeriod = 3000;
    createReq.walLevel = 1;
    createReq.precision = 0;
    createReq.compression = 2;
    createReq.replications = 1;
    createReq.quorum = 1;
    createReq.update = 0;
    createReq.cacheLastRow = 0;
    createReq.ignoreExist = 1;

    int32_t contLen = tSerializeSCreateDbReq(NULL, 0, &createReq);
    void*   pReq = rpcMallocCont(contLen);
    tSerializeSCreateDbReq(pReq, contLen, &createReq);
S
Shengliang Guan 已提交
81

S
Shengliang Guan 已提交
82 83 84
    SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_DB, pReq, contLen);
    ASSERT_NE(pRsp, nullptr);
    ASSERT_EQ(pRsp->code, 0);
S
Shengliang Guan 已提交
85 86
  }

S
Shengliang Guan 已提交
87
  test.SendShowMetaReq(TSDB_MGMT_TABLE_DB, "");
S
Shengliang Guan 已提交
88
  CHECK_META("show databases", 18);
S
Shengliang Guan 已提交
89

S
Shengliang Guan 已提交
90
  test.SendShowRetrieveReq();
S
Shengliang Guan 已提交
91
  EXPECT_EQ(test.GetShowRows(), 1);
S
Shengliang Guan 已提交
92
  CheckBinary("d1", TSDB_DB_NAME_LEN - 1);
S
Shengliang Guan 已提交
93
  CheckTimestamp();
S
Shengliang Guan 已提交
94
  CheckInt16(2);                      // vgroups
S
Shengliang Guan 已提交
95
  CheckInt32(0);                      // ntables
S
Shengliang Guan 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109
  CheckInt16(1);                      // replica
  CheckInt16(1);                      // quorum
  CheckInt16(10);                     // days
  CheckBinary("3650,3650,3650", 24);  // days
  CheckInt32(16);                     // cache
  CheckInt32(10);                     // blocks
  CheckInt32(100);                    // minrows
  CheckInt32(4096);                   // maxrows
  CheckInt8(1);                       // wallevel
  CheckInt32(3000);                   // fsync
  CheckInt8(2);                       // comp
  CheckInt8(0);                       // cachelast
  CheckBinary("ms", 3);               // precision
  CheckInt8(0);                       // update
S
Shengliang Guan 已提交
110

S
Shengliang Guan 已提交
111
  test.SendShowMetaReq(TSDB_MGMT_TABLE_VGROUP, "1.d1");
S
Shengliang Guan 已提交
112 113 114 115 116 117
  CHECK_META("show vgroups", 4);
  CHECK_SCHEMA(0, TSDB_DATA_TYPE_INT, 4, "vgId");
  CHECK_SCHEMA(1, TSDB_DATA_TYPE_INT, 4, "tables");
  CHECK_SCHEMA(2, TSDB_DATA_TYPE_SMALLINT, 2, "v1_dnode");
  CHECK_SCHEMA(3, TSDB_DATA_TYPE_BINARY, 9 + VARSTR_HEADER_SIZE, "v1_status");

S
Shengliang Guan 已提交
118
  test.SendShowRetrieveReq();
S
Shengliang Guan 已提交
119
  EXPECT_EQ(test.GetShowRows(), 2);
S
Shengliang Guan 已提交
120
  CheckInt32(2);
121
  CheckInt32(3);
S
Shengliang Guan 已提交
122 123 124 125 126 127 128
  CheckInt32(0);
  CheckInt32(0);
  CheckInt16(1);
  CheckInt16(1);
  CheckBinary("master", 9);
  CheckBinary("master", 9);

S
Shengliang Guan 已提交
129
  {
S
Shengliang Guan 已提交
130
    int32_t contLen = sizeof(SAlterDbReq);
S
Shengliang Guan 已提交
131

S
Shengliang Guan 已提交
132
    SAlterDbReq* pReq = (SAlterDbReq*)rpcMallocCont(contLen);
S
Shengliang Guan 已提交
133 134 135 136 137 138 139 140 141
    strcpy(pReq->db, "1.d1");
    pReq->totalBlocks = htonl(12);
    pReq->daysToKeep0 = htonl(300);
    pReq->daysToKeep1 = htonl(400);
    pReq->daysToKeep2 = htonl(500);
    pReq->fsyncPeriod = htonl(4000);
    pReq->walLevel = 2;
    pReq->quorum = 2;
    pReq->cacheLastRow = 1;
S
Shengliang Guan 已提交
142

S
Shengliang Guan 已提交
143 144 145
    SRpcMsg* pRsp = test.SendReq(TDMT_MND_ALTER_DB, pReq, contLen);
    ASSERT_NE(pRsp, nullptr);
    ASSERT_EQ(pRsp->code, 0);
S
Shengliang Guan 已提交
146 147
  }

S
Shengliang Guan 已提交
148 149
  test.SendShowMetaReq(TSDB_MGMT_TABLE_DB, "");
  test.SendShowRetrieveReq();
S
Shengliang Guan 已提交
150
  EXPECT_EQ(test.GetShowRows(), 1);
S
Shengliang Guan 已提交
151
  CheckBinary("d1", TSDB_DB_NAME_LEN - 1);
S
Shengliang Guan 已提交
152
  CheckTimestamp();
S
Shengliang Guan 已提交
153
  CheckInt16(2);                   // vgroups
S
Shengliang Guan 已提交
154
  CheckInt32(0);                   // tables
S
Shengliang Guan 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167 168
  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
S
Shengliang Guan 已提交
169

S
Shengliang Guan 已提交
170 171 172
  // restart
  test.Restart();

S
Shengliang Guan 已提交
173
  test.SendShowMetaReq(TSDB_MGMT_TABLE_DB, "");
S
Shengliang Guan 已提交
174
  CHECK_META("show databases", 18);
S
Shengliang Guan 已提交
175

S
Shengliang Guan 已提交
176
  test.SendShowRetrieveReq();
S
Shengliang Guan 已提交
177 178 179 180 181
  EXPECT_EQ(test.GetShowRows(), 1);

  CheckBinary("d1", TSDB_DB_NAME_LEN - 1);
  CheckTimestamp();
  CheckInt16(2);                   // vgroups
S
Shengliang Guan 已提交
182
  CheckInt32(0);                   // tables
S
Shengliang Guan 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
  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

  {
S
Shengliang Guan 已提交
199
    int32_t contLen = sizeof(SDropDbReq);
S
Shengliang Guan 已提交
200

S
Shengliang Guan 已提交
201
    SDropDbReq* pReq = (SDropDbReq*)rpcMallocCont(contLen);
S
Shengliang Guan 已提交
202 203
    strcpy(pReq->db, "1.d1");

S
Shengliang Guan 已提交
204 205 206
    SRpcMsg* pRsp = test.SendReq(TDMT_MND_DROP_DB, pReq, contLen);
    ASSERT_NE(pRsp, nullptr);
    ASSERT_EQ(pRsp->code, 0);
S
Shengliang Guan 已提交
207 208 209 210

    SDropDbRsp* pDrop = (SDropDbRsp*)pRsp->pCont;
    pDrop->uid = htobe64(pDrop->uid);
    EXPECT_STREQ(pDrop->db, "1.d1");
S
Shengliang Guan 已提交
211 212
  }

S
Shengliang Guan 已提交
213
  test.SendShowMetaReq(TSDB_MGMT_TABLE_DB, "");
S
Shengliang Guan 已提交
214
  CHECK_META("show databases", 18);
S
Shengliang Guan 已提交
215

S
Shengliang Guan 已提交
216
  test.SendShowRetrieveReq();
S
Shengliang Guan 已提交
217
  EXPECT_EQ(test.GetShowRows(), 0);
S
Shengliang Guan 已提交
218 219
}

S
Shengliang Guan 已提交
220
TEST_F(MndTestDb, 03_Create_Use_Restart_Use_Db) {
S
Shengliang Guan 已提交
221
  {
S
Shengliang Guan 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
    SCreateDbReq createReq = {0};
    strcpy(createReq.db, "1.d2");
    createReq.numOfVgroups = 2;
    createReq.cacheBlockSize = 16;
    createReq.totalBlocks = 10;
    createReq.daysPerFile = 10;
    createReq.daysToKeep0 = 3650;
    createReq.daysToKeep1 = 3650;
    createReq.daysToKeep2 = 3650;
    createReq.minRows = 100;
    createReq.maxRows = 4096;
    createReq.commitTime = 3600;
    createReq.fsyncPeriod = 3000;
    createReq.walLevel = 1;
    createReq.precision = 0;
    createReq.compression = 2;
    createReq.replications = 1;
    createReq.quorum = 1;
    createReq.update = 0;
    createReq.cacheLastRow = 0;
    createReq.ignoreExist = 1;

    int32_t contLen = tSerializeSCreateDbReq(NULL, 0, &createReq);
    void*   pReq = rpcMallocCont(contLen);
    tSerializeSCreateDbReq(pReq, contLen, &createReq);
S
Shengliang Guan 已提交
247

S
Shengliang Guan 已提交
248 249 250
    SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_DB, pReq, contLen);
    ASSERT_NE(pRsp, nullptr);
    ASSERT_EQ(pRsp->code, 0);
S
Shengliang Guan 已提交
251 252
  }

S
Shengliang Guan 已提交
253
  test.SendShowMetaReq(TSDB_MGMT_TABLE_DB, "");
S
Shengliang Guan 已提交
254
  CHECK_META("show databases", 18);
S
Shengliang Guan 已提交
255

S
Shengliang Guan 已提交
256
  test.SendShowRetrieveReq();
S
Shengliang Guan 已提交
257
  EXPECT_EQ(test.GetShowRows(), 1);
S
Shengliang Guan 已提交
258 259
  CheckBinary("d2", TSDB_DB_NAME_LEN - 1);

S
Shengliang Guan 已提交
260 261
  uint64_t d2_uid = 0;

S
Shengliang Guan 已提交
262
  {
S
Shengliang Guan 已提交
263
    int32_t contLen = sizeof(SUseDbReq);
S
Shengliang Guan 已提交
264

S
Shengliang Guan 已提交
265
    SUseDbReq* pReq = (SUseDbReq*)rpcMallocCont(contLen);
S
Shengliang Guan 已提交
266 267 268
    strcpy(pReq->db, "1.d2");
    pReq->vgVersion = htonl(-1);

S
Shengliang Guan 已提交
269
    SRpcMsg* pMsg = test.SendReq(TDMT_MND_USE_DB, pReq, contLen);
S
Shengliang Guan 已提交
270 271 272 273 274
    ASSERT_NE(pMsg, nullptr);
    ASSERT_EQ(pMsg->code, 0);

    SUseDbRsp* pRsp = (SUseDbRsp*)pMsg->pCont;
    EXPECT_STREQ(pRsp->db, "1.d2");
S
Shengliang Guan 已提交
275 276
    pRsp->uid = htobe64(pRsp->uid);
    d2_uid = pRsp->uid;
S
Shengliang Guan 已提交
277 278 279 280 281 282 283 284 285 286 287 288 289 290
    pRsp->vgVersion = htonl(pRsp->vgVersion);
    pRsp->vgNum = htonl(pRsp->vgNum);
    pRsp->hashMethod = pRsp->hashMethod;
    EXPECT_EQ(pRsp->vgVersion, 1);
    EXPECT_EQ(pRsp->vgNum, 2);
    EXPECT_EQ(pRsp->hashMethod, 1);

    {
      SVgroupInfo* pInfo = &pRsp->vgroupInfo[0];
      pInfo->vgId = htonl(pInfo->vgId);
      pInfo->hashBegin = htonl(pInfo->hashBegin);
      pInfo->hashEnd = htonl(pInfo->hashEnd);
      EXPECT_GT(pInfo->vgId, 0);
      EXPECT_EQ(pInfo->hashBegin, 0);
S
Shengliang Guan 已提交
291
      EXPECT_EQ(pInfo->hashEnd, UINT32_MAX / 2 - 1);
H
Haojun Liao 已提交
292 293 294
      EXPECT_EQ(pInfo->epset.inUse, 0);
      EXPECT_EQ(pInfo->epset.numOfEps, 1);
      SEp* pAddr = &pInfo->epset.eps[0];
S
Shengliang Guan 已提交
295
      pAddr->port = htons(pAddr->port);
S
Shengliang Guan 已提交
296
      EXPECT_EQ(pAddr->port, 9030);
S
Shengliang Guan 已提交
297 298 299 300 301 302 303 304 305
      EXPECT_STREQ(pAddr->fqdn, "localhost");
    }

    {
      SVgroupInfo* pInfo = &pRsp->vgroupInfo[1];
      pInfo->vgId = htonl(pInfo->vgId);
      pInfo->hashBegin = htonl(pInfo->hashBegin);
      pInfo->hashEnd = htonl(pInfo->hashEnd);
      EXPECT_GT(pInfo->vgId, 0);
S
Shengliang Guan 已提交
306 307
      EXPECT_EQ(pInfo->hashBegin, UINT32_MAX / 2);
      EXPECT_EQ(pInfo->hashEnd, UINT32_MAX);
H
Haojun Liao 已提交
308 309 310
      EXPECT_EQ(pInfo->epset.inUse, 0);
      EXPECT_EQ(pInfo->epset.numOfEps, 1);
      SEp* pAddr = &pInfo->epset.eps[0];
S
Shengliang Guan 已提交
311
      pAddr->port = htons(pAddr->port);
S
Shengliang Guan 已提交
312
      EXPECT_EQ(pAddr->port, 9030);
S
Shengliang Guan 已提交
313 314 315
      EXPECT_STREQ(pAddr->fqdn, "localhost");
    }
  }
S
Shengliang Guan 已提交
316 317

  {
S
Shengliang Guan 已提交
318
    int32_t contLen = sizeof(SDropDbReq);
S
Shengliang Guan 已提交
319

S
Shengliang Guan 已提交
320
    SDropDbReq* pReq = (SDropDbReq*)rpcMallocCont(contLen);
S
Shengliang Guan 已提交
321 322 323 324 325
    strcpy(pReq->db, "1.d2");

    SRpcMsg* pRsp = test.SendReq(TDMT_MND_DROP_DB, pReq, contLen);
    ASSERT_NE(pRsp, nullptr);
    ASSERT_EQ(pRsp->code, 0);
S
Shengliang Guan 已提交
326 327 328 329 330

    SDropDbRsp* pDrop = (SDropDbRsp*)pRsp->pCont;
    pDrop->uid = htobe64(pDrop->uid);
    EXPECT_STREQ(pDrop->db, "1.d2");
    EXPECT_EQ(pDrop->uid, d2_uid);
S
Shengliang Guan 已提交
331
  }
S
Shengliang Guan 已提交
332
}