stb.cpp 6.3 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11
/**
 * @file stb.cpp
 * @author slguan (slguan@taosdata.com)
 * @brief DNODE module db-msg tests
 * @version 0.1
 * @date 2021-12-17
 *
 * @copyright Copyright (c) 2021
 *
 */

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

class DndTestStb : public ::testing::Test {
 protected:
S
Shengliang Guan 已提交
16 17
  static void SetUpTestSuite() { test.Init("/tmp/dnode_test_stb", 9101); }
  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 DndTestStb::test;
S
Shengliang Guan 已提交
27

S
Shengliang Guan 已提交
28
TEST_F(DndTestStb, 01_Create_Show_Meta_Drop_Restart_Stb) {
S
Shengliang Guan 已提交
29
  {
S
Shengliang Guan 已提交
30 31 32
    int32_t contLen = sizeof(SCreateDbMsg);

    SCreateDbMsg* pReq = (SCreateDbMsg*)rpcMallocCont(contLen);
S
Shengliang Guan 已提交
33 34 35 36 37 38 39 40
    strcpy(pReq->db, "1.d1");
    pReq->numOfVgroups = htonl(2);
    pReq->cacheBlockSize = htonl(16);
    pReq->totalBlocks = htonl(10);
    pReq->daysPerFile = htonl(10);
    pReq->daysToKeep0 = htonl(3650);
    pReq->daysToKeep1 = htonl(3650);
    pReq->daysToKeep2 = htonl(3650);
S
Shengliang Guan 已提交
41 42
    pReq->minRows = htonl(100);
    pReq->maxRows = htonl(4096);
S
Shengliang Guan 已提交
43 44 45 46 47 48 49 50 51 52 53
    pReq->commitTime = htonl(3600);
    pReq->fsyncPeriod = htonl(3000);
    pReq->walLevel = 1;
    pReq->precision = 0;
    pReq->compression = 2;
    pReq->replications = 1;
    pReq->quorum = 1;
    pReq->update = 0;
    pReq->cacheLastRow = 0;
    pReq->ignoreExist = 1;

S
Shengliang Guan 已提交
54 55 56
    SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_DB, pReq, contLen);
    ASSERT_NE(pRsp, nullptr);
    ASSERT_EQ(pRsp->code, 0);
S
Shengliang Guan 已提交
57 58 59
  }

  {
S
Shengliang Guan 已提交
60 61
    int32_t cols = 2;
    int32_t tags = 3;
S
Shengliang Guan 已提交
62
    int32_t contLen = (tags + cols) * sizeof(SSchema) + sizeof(SCreateStbMsg);
S
Shengliang Guan 已提交
63

S
Shengliang Guan 已提交
64
    SCreateStbMsg* pReq = (SCreateStbMsg*)rpcMallocCont(contLen);
S
Shengliang Guan 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    strcpy(pReq->name, "1.d1.stb");
    pReq->numOfTags = htonl(tags);
    pReq->numOfColumns = htonl(cols);

    {
      SSchema* pSchema = &pReq->pSchema[0];
      pSchema->bytes = htonl(8);
      pSchema->type = TSDB_DATA_TYPE_TIMESTAMP;
      strcpy(pSchema->name, "ts");
    }

    {
      SSchema* pSchema = &pReq->pSchema[1];
      pSchema->bytes = htonl(4);
      pSchema->type = TSDB_DATA_TYPE_INT;
      strcpy(pSchema->name, "col1");
    }

    {
      SSchema* pSchema = &pReq->pSchema[2];
      pSchema->bytes = htonl(2);
      pSchema->type = TSDB_DATA_TYPE_TINYINT;
      strcpy(pSchema->name, "tag1");
    }

    {
      SSchema* pSchema = &pReq->pSchema[3];
      pSchema->bytes = htonl(8);
      pSchema->type = TSDB_DATA_TYPE_BIGINT;
      strcpy(pSchema->name, "tag2");
    }

    {
      SSchema* pSchema = &pReq->pSchema[4];
      pSchema->bytes = htonl(16);
      pSchema->type = TSDB_DATA_TYPE_BINARY;
      strcpy(pSchema->name, "tag3");
    }

S
Shengliang Guan 已提交
104 105 106
    SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_STB, pReq, contLen);
    ASSERT_NE(pRsp, nullptr);
    ASSERT_EQ(pRsp->code, 0);
S
Shengliang Guan 已提交
107 108
  }

S
Shengliang Guan 已提交
109
  test.SendShowMetaReq(TSDB_MGMT_TABLE_STB, "1.d1");
S
Shengliang Guan 已提交
110 111 112 113 114 115
  CHECK_META("show stables", 4);

  CHECK_SCHEMA(0, TSDB_DATA_TYPE_BINARY, TSDB_TABLE_NAME_LEN + VARSTR_HEADER_SIZE, "name");
  CHECK_SCHEMA(1, TSDB_DATA_TYPE_TIMESTAMP, 8, "create_time");
  CHECK_SCHEMA(2, TSDB_DATA_TYPE_INT, 4, "columns");
  CHECK_SCHEMA(3, TSDB_DATA_TYPE_INT, 4, "tags");
S
Shengliang Guan 已提交
116

S
Shengliang Guan 已提交
117
  test.SendShowRetrieveReq();
S
Shengliang Guan 已提交
118
  EXPECT_EQ(test.GetShowRows(), 1);
S
Shengliang Guan 已提交
119
  CheckBinary("stb", TSDB_TABLE_NAME_LEN);
S
Shengliang Guan 已提交
120
  CheckTimestamp();
S
Shengliang Guan 已提交
121 122
  CheckInt32(2);
  CheckInt32(3);
S
Shengliang Guan 已提交
123

S
Shengliang Guan 已提交
124
  // ----- meta ------
S
Shengliang Guan 已提交
125
  {
S
Shengliang Guan 已提交
126
    int32_t contLen = sizeof(STableInfoMsg);
S
Shengliang Guan 已提交
127

S
Shengliang Guan 已提交
128 129
    STableInfoMsg* pReq = (STableInfoMsg*)rpcMallocCont(contLen);
    strcpy(pReq->tableFname, "1.d1.stb");
S
Shengliang Guan 已提交
130

S
Shengliang Guan 已提交
131
    SRpcMsg* pMsg = test.SendReq(TDMT_MND_STB_META, pReq, contLen);
S
Shengliang Guan 已提交
132 133 134
    ASSERT_NE(pMsg, nullptr);
    ASSERT_EQ(pMsg->code, 0);

S
Shengliang Guan 已提交
135 136 137 138 139
    STableMetaMsg* pRsp = (STableMetaMsg*)pMsg->pCont;
    pRsp->numOfTags = htonl(pRsp->numOfTags);
    pRsp->numOfColumns = htonl(pRsp->numOfColumns);
    pRsp->sversion = htonl(pRsp->sversion);
    pRsp->tversion = htonl(pRsp->tversion);
D
dapan1121 已提交
140 141 142
    pRsp->suid = be64toh(pRsp->suid);
    pRsp->tuid = be64toh(pRsp->tuid);
    pRsp->vgId = be64toh(pRsp->vgId);
S
Shengliang Guan 已提交
143 144 145 146 147 148
    for (int32_t i = 0; i < pRsp->numOfTags + pRsp->numOfColumns; ++i) {
      SSchema* pSchema = &pRsp->pSchema[i];
      pSchema->colId = htonl(pSchema->colId);
      pSchema->bytes = htonl(pSchema->bytes);
    }

S
Shengliang Guan 已提交
149 150
    EXPECT_STREQ(pRsp->tbFname, "1.d1.stb");
    EXPECT_STREQ(pRsp->stbFname, "");
S
Shengliang Guan 已提交
151 152 153 154 155 156 157 158
    EXPECT_EQ(pRsp->numOfColumns, 2);
    EXPECT_EQ(pRsp->numOfTags, 3);
    EXPECT_EQ(pRsp->precision, TSDB_TIME_PRECISION_MILLI);
    EXPECT_EQ(pRsp->tableType, TSDB_SUPER_TABLE);
    EXPECT_EQ(pRsp->update, 0);
    EXPECT_EQ(pRsp->sversion, 1);
    EXPECT_EQ(pRsp->tversion, 0);
    EXPECT_GT(pRsp->suid, 0);
D
dapan1121 已提交
159
    EXPECT_GT(pRsp->tuid, 0);
S
Shengliang Guan 已提交
160 161 162 163 164
    EXPECT_EQ(pRsp->vgId, 0);

    {
      SSchema* pSchema = &pRsp->pSchema[0];
      EXPECT_EQ(pSchema->type, TSDB_DATA_TYPE_TIMESTAMP);
S
Shengliang Guan 已提交
165
      EXPECT_EQ(pSchema->colId, 1);
S
Shengliang Guan 已提交
166 167 168
      EXPECT_EQ(pSchema->bytes, 8);
      EXPECT_STREQ(pSchema->name, "ts");
    }
S
Shengliang Guan 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200

    {
      SSchema* pSchema = &pRsp->pSchema[1];
      EXPECT_EQ(pSchema->type, TSDB_DATA_TYPE_INT);
      EXPECT_EQ(pSchema->colId, 2);
      EXPECT_EQ(pSchema->bytes, 4);
      EXPECT_STREQ(pSchema->name, "col1");
    }

    {
      SSchema* pSchema = &pRsp->pSchema[2];
      EXPECT_EQ(pSchema->type, TSDB_DATA_TYPE_TINYINT);
      EXPECT_EQ(pSchema->colId, 3);
      EXPECT_EQ(pSchema->bytes, 2);
      EXPECT_STREQ(pSchema->name, "tag1");
    }

    {
      SSchema* pSchema = &pRsp->pSchema[3];
      EXPECT_EQ(pSchema->type, TSDB_DATA_TYPE_BIGINT);
      EXPECT_EQ(pSchema->colId, 4);
      EXPECT_EQ(pSchema->bytes, 8);
      EXPECT_STREQ(pSchema->name, "tag2");
    }

    {
      SSchema* pSchema = &pRsp->pSchema[4];
      EXPECT_EQ(pSchema->type, TSDB_DATA_TYPE_BINARY);
      EXPECT_EQ(pSchema->colId, 5);
      EXPECT_EQ(pSchema->bytes, 16);
      EXPECT_STREQ(pSchema->name, "tag3");
    }
S
Shengliang Guan 已提交
201
  }
S
Shengliang Guan 已提交
202 203

  // restart
S
Shengliang Guan 已提交
204
  test.Restart();
S
Shengliang Guan 已提交
205

S
Shengliang Guan 已提交
206
  test.SendShowMetaReq(TSDB_MGMT_TABLE_STB, "1.d1");
S
Shengliang Guan 已提交
207
  CHECK_META("show stables", 4);
S
Shengliang Guan 已提交
208
  test.SendShowRetrieveReq();
S
Shengliang Guan 已提交
209
  EXPECT_EQ(test.GetShowRows(), 1);
S
Shengliang Guan 已提交
210

S
Shengliang Guan 已提交
211
  CheckBinary("stb", TSDB_TABLE_NAME_LEN);
S
Shengliang Guan 已提交
212
  CheckTimestamp();
S
Shengliang Guan 已提交
213 214
  CheckInt32(2);
  CheckInt32(3);
S
Shengliang Guan 已提交
215 216

  {
S
Shengliang Guan 已提交
217
    int32_t contLen = sizeof(SDropStbMsg);
S
Shengliang Guan 已提交
218

S
Shengliang Guan 已提交
219 220
    SDropStbMsg* pReq = (SDropStbMsg*)rpcMallocCont(contLen);
    strcpy(pReq->name, "1.d1.stb");
S
Shengliang Guan 已提交
221

S
Shengliang Guan 已提交
222 223 224
    SRpcMsg* pRsp = test.SendReq(TDMT_MND_DROP_STB, pReq, contLen);
    ASSERT_NE(pRsp, nullptr);
    ASSERT_EQ(pRsp->code, 0);
S
Shengliang Guan 已提交
225 226
  }

S
Shengliang Guan 已提交
227
  test.SendShowMetaReq(TSDB_MGMT_TABLE_STB, "1.d1");
S
Shengliang Guan 已提交
228
  CHECK_META("show stables", 4);
S
Shengliang Guan 已提交
229
  test.SendShowRetrieveReq();
S
Shengliang Guan 已提交
230
  EXPECT_EQ(test.GetShowRows(), 0);
S
Shengliang Guan 已提交
231
}