syncAppendEntriesReplyTest.cpp 3.1 KB
Newer Older
M
Minghao Li 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#include <gtest/gtest.h>
#include <stdio.h>
#include "syncIO.h"
#include "syncInt.h"
#include "syncMessage.h"
#include "syncUtil.h"

void logTest() {
  sTrace("--- sync log test: trace");
  sDebug("--- sync log test: debug");
  sInfo("--- sync log test: info");
  sWarn("--- sync log test: warn");
  sError("--- sync log test: error");
  sFatal("--- sync log test: fatal");
}

SyncAppendEntriesReply *createMsg() {
  SyncAppendEntriesReply *pMsg = syncAppendEntriesReplyBuild();
  pMsg->srcId.addr = syncUtilAddr2U64("127.0.0.1", 1234);
  pMsg->srcId.vgId = 100;
  pMsg->destId.addr = syncUtilAddr2U64("127.0.0.1", 5678);
  pMsg->destId.vgId = 100;
  pMsg->success = true;
  pMsg->matchIndex = 77;
M
Minghao Li 已提交
25
  return pMsg;
M
Minghao Li 已提交
26 27 28 29 30 31 32 33 34 35
}

void test1() {
  SyncAppendEntriesReply *pMsg = createMsg();
  syncAppendEntriesReplyPrint2((char *)"test1:", pMsg);
  syncAppendEntriesReplyDestroy(pMsg);
}

void test2() {
  SyncAppendEntriesReply *pMsg = createMsg();
M
Minghao Li 已提交
36
  uint32_t                len = pMsg->bytes;
wafwerar's avatar
wafwerar 已提交
37
  char *                  serialized = (char *)taosMemoryMalloc(len);
M
Minghao Li 已提交
38 39 40
  syncAppendEntriesReplySerialize(pMsg, serialized, len);
  SyncAppendEntriesReply *pMsg2 = syncAppendEntriesReplyBuild();
  syncAppendEntriesReplyDeserialize(serialized, len, pMsg2);
M
Minghao Li 已提交
41 42
  syncAppendEntriesReplyPrint2((char *)"test2: syncAppendEntriesReplySerialize -> syncAppendEntriesReplyDeserialize ",
                               pMsg2);
M
Minghao Li 已提交
43

wafwerar's avatar
wafwerar 已提交
44
  taosMemoryFree(serialized);
M
Minghao Li 已提交
45 46 47 48 49 50
  syncAppendEntriesReplyDestroy(pMsg);
  syncAppendEntriesReplyDestroy(pMsg2);
}

void test3() {
  SyncAppendEntriesReply *pMsg = createMsg();
M
Minghao Li 已提交
51 52
  uint32_t                len;
  char *                  serialized = syncAppendEntriesReplySerialize2(pMsg, &len);
M
Minghao Li 已提交
53 54
  SyncAppendEntriesReply *pMsg2 = syncAppendEntriesReplyDeserialize2(serialized, len);
  syncAppendEntriesReplyPrint2((char *)"test3: syncAppendEntriesReplySerialize3 -> syncAppendEntriesReplyDeserialize2 ",
M
Minghao Li 已提交
55
                               pMsg2);
M
Minghao Li 已提交
56

wafwerar's avatar
wafwerar 已提交
57
  taosMemoryFree(serialized);
M
Minghao Li 已提交
58 59 60 61 62 63
  syncAppendEntriesReplyDestroy(pMsg);
  syncAppendEntriesReplyDestroy(pMsg2);
}

void test4() {
  SyncAppendEntriesReply *pMsg = createMsg();
M
Minghao Li 已提交
64
  SRpcMsg                 rpcMsg;
M
Minghao Li 已提交
65 66 67
  syncAppendEntriesReply2RpcMsg(pMsg, &rpcMsg);
  SyncAppendEntriesReply *pMsg2 = syncAppendEntriesReplyBuild();
  syncAppendEntriesReplyFromRpcMsg(&rpcMsg, pMsg2);
M
Minghao Li 已提交
68 69
  syncAppendEntriesReplyPrint2((char *)"test4: syncAppendEntriesReply2RpcMsg -> syncAppendEntriesReplyFromRpcMsg ",
                               pMsg2);
M
Minghao Li 已提交
70 71 72 73 74 75 76

  syncAppendEntriesReplyDestroy(pMsg);
  syncAppendEntriesReplyDestroy(pMsg2);
}

void test5() {
  SyncAppendEntriesReply *pMsg = createMsg();
M
Minghao Li 已提交
77
  SRpcMsg                 rpcMsg;
M
Minghao Li 已提交
78 79
  syncAppendEntriesReply2RpcMsg(pMsg, &rpcMsg);
  SyncAppendEntriesReply *pMsg2 = syncAppendEntriesReplyFromRpcMsg2(&rpcMsg);
M
Minghao Li 已提交
80 81
  syncAppendEntriesReplyPrint2((char *)"test5: syncAppendEntriesReply2RpcMsg -> syncAppendEntriesReplyFromRpcMsg2 ",
                               pMsg2);
M
Minghao Li 已提交
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100

  syncAppendEntriesReplyDestroy(pMsg);
  syncAppendEntriesReplyDestroy(pMsg2);
}

int main() {
  // taosInitLog((char *)"syncTest.log", 100000, 10);
  tsAsyncLog = 0;
  sDebugFlag = 143 + 64;
  logTest();

  test1();
  test2();
  test3();
  test4();
  test5();

  return 0;
}