mnode.cpp 7.7 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
/**
 * @file dnode.cpp
 * @author slguan (slguan@taosdata.com)
 * @brief DNODE module dnode-msg tests
 * @version 0.1
 * @date 2021-12-15
 *
 * @copyright Copyright (c) 2021
 *
 */

#include "base.h"

class DndTestMnode : public ::testing::Test {
 public:
  void SetUp() override {}
  void TearDown() override {}

 public:
  static void SetUpTestSuite() {
    test.Init("/tmp/dnode_test_mnode1", 9061);
    const char* fqdn = "localhost";
    const char* firstEp = "localhost:9061";

    server2.Start("/tmp/dnode_test_mnode2", fqdn, 9062, firstEp);
    server3.Start("/tmp/dnode_test_mnode3", fqdn, 9063, firstEp);
    server4.Start("/tmp/dnode_test_mnode4", fqdn, 9064, firstEp);
    server5.Start("/tmp/dnode_test_mnode5", fqdn, 9065, firstEp);
    taosMsleep(300);
  }

  static void TearDownTestSuite() {
    server2.Stop();
    server3.Stop();
    server4.Stop();
    server5.Stop();
    test.Cleanup();
  }

  static Testbase   test;
  static TestServer server2;
  static TestServer server3;
  static TestServer server4;
  static TestServer server5;
};

Testbase   DndTestMnode::test;
TestServer DndTestMnode::server2;
TestServer DndTestMnode::server3;
TestServer DndTestMnode::server4;
TestServer DndTestMnode::server5;

TEST_F(DndTestMnode, 01_ShowDnode) {
S
Shengliang Guan 已提交
54 55
  test.SendShowMetaMsg(TSDB_MGMT_TABLE_MNODE, "");
  CHECK_META("show mnodes", 5);
S
Shengliang Guan 已提交
56 57 58

  CHECK_SCHEMA(0, TSDB_DATA_TYPE_SMALLINT, 2, "id");
  CHECK_SCHEMA(1, TSDB_DATA_TYPE_BINARY, TSDB_EP_LEN + VARSTR_HEADER_SIZE, "endpoint");
S
Shengliang Guan 已提交
59 60 61
  CHECK_SCHEMA(2, TSDB_DATA_TYPE_BINARY, 12 + VARSTR_HEADER_SIZE, "role");
  CHECK_SCHEMA(3, TSDB_DATA_TYPE_TIMESTAMP, 8, "role_time");
  CHECK_SCHEMA(4, TSDB_DATA_TYPE_TIMESTAMP, 8, "create_time");
S
Shengliang Guan 已提交
62 63 64 65 66 67

  test.SendShowRetrieveMsg();
  EXPECT_EQ(test.GetShowRows(), 1);

  CheckInt16(1);
  CheckBinary("localhost:9061", TSDB_EP_LEN);
S
Shengliang Guan 已提交
68 69
  CheckBinary("master", 12);
  CheckInt64(0);
S
Shengliang Guan 已提交
70 71 72
  CheckTimestamp();
}

S
Shengliang Guan 已提交
73
TEST_F(DndTestMnode, 02_Create_Mnode_Invalid_Id) {
S
Shengliang Guan 已提交
74
  {
S
Shengliang Guan 已提交
75
    int32_t contLen = sizeof(SCreateMnodeMsg);
S
Shengliang Guan 已提交
76

S
Shengliang Guan 已提交
77 78
    SCreateMnodeMsg* pReq = (SCreateMnodeMsg*)rpcMallocCont(contLen);
    pReq->dnodeId = htonl(1);
S
Shengliang Guan 已提交
79

S
Shengliang Guan 已提交
80
    SRpcMsg* pMsg = test.SendMsg(TSDB_MSG_TYPE_CREATE_MNODE, pReq, contLen);
S
Shengliang Guan 已提交
81
    ASSERT_NE(pMsg, nullptr);
S
Shengliang Guan 已提交
82
    ASSERT_EQ(pMsg->code, TSDB_CODE_MND_MNODE_ALREADY_EXIST);
S
Shengliang Guan 已提交
83
  }
S
Shengliang Guan 已提交
84
}
S
Shengliang Guan 已提交
85

S
Shengliang Guan 已提交
86
TEST_F(DndTestMnode, 03_Create_Mnode_Invalid_Id) {
S
Shengliang Guan 已提交
87
  {
S
Shengliang Guan 已提交
88
    int32_t contLen = sizeof(SCreateMnodeMsg);
S
Shengliang Guan 已提交
89

S
Shengliang Guan 已提交
90
    SCreateMnodeMsg* pReq = (SCreateMnodeMsg*)rpcMallocCont(contLen);
S
Shengliang Guan 已提交
91 92
    pReq->dnodeId = htonl(2);

S
Shengliang Guan 已提交
93
    SRpcMsg* pMsg = test.SendMsg(TSDB_MSG_TYPE_CREATE_MNODE, pReq, contLen);
S
Shengliang Guan 已提交
94
    ASSERT_NE(pMsg, nullptr);
S
Shengliang Guan 已提交
95
    ASSERT_EQ(pMsg->code, TSDB_CODE_MND_DNODE_NOT_EXIST);
S
Shengliang Guan 已提交
96
  }
S
Shengliang Guan 已提交
97
}
S
Shengliang Guan 已提交
98

S
Shengliang Guan 已提交
99
TEST_F(DndTestMnode, 04_Create_Mnode) {
S
Shengliang Guan 已提交
100
  {
S
Shengliang Guan 已提交
101
    // create dnode
S
Shengliang Guan 已提交
102 103 104
    int32_t contLen = sizeof(SCreateDnodeMsg);

    SCreateDnodeMsg* pReq = (SCreateDnodeMsg*)rpcMallocCont(contLen);
S
Shengliang Guan 已提交
105
    strcpy(pReq->ep, "localhost:9062");
S
Shengliang Guan 已提交
106 107 108 109 110

    SRpcMsg* pMsg = test.SendMsg(TSDB_MSG_TYPE_CREATE_DNODE, pReq, contLen);
    ASSERT_NE(pMsg, nullptr);
    ASSERT_EQ(pMsg->code, 0);

S
Shengliang Guan 已提交
111 112 113 114
    taosMsleep(1300);
    test.SendShowMetaMsg(TSDB_MGMT_TABLE_DNODE, "");
    test.SendShowRetrieveMsg();
    EXPECT_EQ(test.GetShowRows(), 2);
S
Shengliang Guan 已提交
115 116 117
  }

  {
S
Shengliang Guan 已提交
118 119
    // create mnode
    int32_t contLen = sizeof(SCreateMnodeMsg);
S
Shengliang Guan 已提交
120

S
Shengliang Guan 已提交
121 122
    SCreateMnodeMsg* pReq = (SCreateMnodeMsg*)rpcMallocCont(contLen);
    pReq->dnodeId = htonl(2);
S
Shengliang Guan 已提交
123

S
Shengliang Guan 已提交
124
    SRpcMsg* pMsg = test.SendMsg(TSDB_MSG_TYPE_CREATE_MNODE, pReq, contLen);
S
Shengliang Guan 已提交
125 126 127
    ASSERT_NE(pMsg, nullptr);
    ASSERT_EQ(pMsg->code, 0);

S
Shengliang Guan 已提交
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
    test.SendShowMetaMsg(TSDB_MGMT_TABLE_MNODE, "");
    test.SendShowRetrieveMsg();
    EXPECT_EQ(test.GetShowRows(), 2);

    CheckInt16(1);
    CheckInt16(2);
    CheckBinary("localhost:9061", TSDB_EP_LEN);
    CheckBinary("localhost:9062", TSDB_EP_LEN);
    CheckBinary("master", 12);
    CheckBinary("slave", 12);
    CheckInt64(0);
    CheckInt64(0);
    CheckTimestamp();
    CheckTimestamp();
  }
S
Shengliang Guan 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164

  {
    // drop mnode
    int32_t contLen = sizeof(SDropMnodeMsg);

    SDropMnodeMsg* pReq = (SDropMnodeMsg*)rpcMallocCont(contLen);
    pReq->dnodeId = htonl(2);

    SRpcMsg* pMsg = test.SendMsg(TSDB_MSG_TYPE_DROP_MNODE, pReq, contLen);
    ASSERT_NE(pMsg, nullptr);
    ASSERT_EQ(pMsg->code, 0);

    test.SendShowMetaMsg(TSDB_MGMT_TABLE_MNODE, "");
    test.SendShowRetrieveMsg();
    EXPECT_EQ(test.GetShowRows(), 1);

    CheckInt16(1);
    CheckBinary("localhost:9061", TSDB_EP_LEN);
    CheckBinary("master", 12);
    CheckInt64(0);
    CheckTimestamp();
  }
S
Shengliang Guan 已提交
165
}
S
Shengliang Guan 已提交
166 167 168 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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
// {
//   int32_t contLen = sizeof(SDropDnodeMsg);

//   SDropDnodeMsg* pReq = (SDropDnodeMsg*)rpcMallocCont(contLen);
//   pReq->dnodeId = htonl(2);

//   SRpcMsg* pMsg = test.SendMsg(TSDB_MSG_TYPE_DROP_DNODE, pReq, contLen);
//   ASSERT_NE(pMsg, nullptr);
//   ASSERT_EQ(pMsg->code, 0);
// }

// test.SendShowMetaMsg(TSDB_MGMT_TABLE_DNODE, "");
// CHECK_META("show dnodes", 7);
// test.SendShowRetrieveMsg();
// EXPECT_EQ(test.GetShowRows(), 1);

// CheckInt16(1);
// CheckBinary("localhost:9061", TSDB_EP_LEN);
// CheckInt16(0);
// CheckInt16(1);
// CheckBinary("ready", 10);
// CheckTimestamp();
// CheckBinary("", 24);

// {
//   int32_t contLen = sizeof(SCreateDnodeMsg);

//   SCreateDnodeMsg* pReq = (SCreateDnodeMsg*)rpcMallocCont(contLen);
//   strcpy(pReq->ep, "localhost:9063");

//   SRpcMsg* pMsg = test.SendMsg(TSDB_MSG_TYPE_CREATE_DNODE, pReq, contLen);
//   ASSERT_NE(pMsg, nullptr);
//   ASSERT_EQ(pMsg->code, 0);
// }

// {
//   int32_t contLen = sizeof(SCreateDnodeMsg);

//   SCreateDnodeMsg* pReq = (SCreateDnodeMsg*)rpcMallocCont(contLen);
//   strcpy(pReq->ep, "localhost:9064");

//   SRpcMsg* pMsg = test.SendMsg(TSDB_MSG_TYPE_CREATE_DNODE, pReq, contLen);
//   ASSERT_NE(pMsg, nullptr);
//   ASSERT_EQ(pMsg->code, 0);
// }

// {
//   int32_t contLen = sizeof(SCreateDnodeMsg);

//   SCreateDnodeMsg* pReq = (SCreateDnodeMsg*)rpcMallocCont(contLen);
//   strcpy(pReq->ep, "localhost:9065");

//   SRpcMsg* pMsg = test.SendMsg(TSDB_MSG_TYPE_CREATE_DNODE, pReq, contLen);
//   ASSERT_NE(pMsg, nullptr);
//   ASSERT_EQ(pMsg->code, 0);
// }

// taosMsleep(1300);
// test.SendShowMetaMsg(TSDB_MGMT_TABLE_DNODE, "");
// CHECK_META("show dnodes", 7);
// test.SendShowRetrieveMsg();
// EXPECT_EQ(test.GetShowRows(), 4);

// CheckInt16(1);
// CheckInt16(3);
// CheckInt16(4);
// CheckInt16(5);
// CheckBinary("localhost:9061", TSDB_EP_LEN);
// CheckBinary("localhost:9063", TSDB_EP_LEN);
// CheckBinary("localhost:9064", TSDB_EP_LEN);
// CheckBinary("localhost:9065", TSDB_EP_LEN);
// CheckInt16(0);
// CheckInt16(0);
// CheckInt16(0);
// CheckInt16(0);
// CheckInt16(1);
// CheckInt16(1);
// CheckInt16(1);
// CheckInt16(1);
// CheckBinary("ready", 10);
// CheckBinary("ready", 10);
// CheckBinary("ready", 10);
// CheckBinary("ready", 10);
// CheckTimestamp();
// CheckTimestamp();
// CheckTimestamp();
// CheckTimestamp();
// CheckBinary("", 24);
// CheckBinary("", 24);
// CheckBinary("", 24);
// CheckBinary("", 24);

// // restart
// uInfo("stop all server");
// test.Restart();
// server2.Restart();
// server3.Restart();
// server4.Restart();
// server5.Restart();

// taosMsleep(1300);
// test.SendShowMetaMsg(TSDB_MGMT_TABLE_DNODE, "");
// CHECK_META("show dnodes", 7);
// test.SendShowRetrieveMsg();
// EXPECT_EQ(test.GetShowRows(), 4);

// CheckInt16(1);
// CheckInt16(3);
// CheckInt16(4);
// CheckInt16(5);
// CheckBinary("localhost:9061", TSDB_EP_LEN);
// CheckBinary("localhost:9063", TSDB_EP_LEN);
// CheckBinary("localhost:9064", TSDB_EP_LEN);
// CheckBinary("localhost:9065", TSDB_EP_LEN);
// CheckInt16(0);
// CheckInt16(0);
// CheckInt16(0);
// CheckInt16(0);
// CheckInt16(1);
// CheckInt16(1);
// CheckInt16(1);
// CheckInt16(1);
// CheckBinary("ready", 10);
// CheckBinary("ready", 10);
// CheckBinary("ready", 10);
// CheckBinary("ready", 10);
// CheckTimestamp();
// CheckTimestamp();
// CheckTimestamp();
// CheckTimestamp();
// CheckBinary("", 24);
// CheckBinary("", 24);
// CheckBinary("", 24);
// CheckBinary("", 24);
// }