syncPingReplyTest.cpp 3.0 KB
Newer Older
M
Minghao Li 已提交
1
#include <gtest/gtest.h>
2
#include "syncTest.h"
M
Minghao Li 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

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");
}

SyncPingReply *createMsg() {
  SRaftId srcId, destId;
  srcId.addr = syncUtilAddr2U64("127.0.0.1", 1234);
  srcId.vgId = 100;
  destId.addr = syncUtilAddr2U64("127.0.0.1", 5678);
  destId.vgId = 100;
M
Minghao Li 已提交
19
  SyncPingReply *pMsg = syncPingReplyBuild3(&srcId, &destId, 1000);
M
Minghao Li 已提交
20 21 22 23 24
  return pMsg;
}

void test1() {
  SyncPingReply *pMsg = createMsg();
M
Minghao Li 已提交
25
  syncPingReplyLog2((char *)"test1:", pMsg);
M
Minghao Li 已提交
26 27 28 29 30
  syncPingReplyDestroy(pMsg);
}

void test2() {
  SyncPingReply *pMsg = createMsg();
M
Minghao Li 已提交
31
  uint32_t       len = pMsg->bytes;
H
Hongze Cheng 已提交
32
  char          *serialized = (char *)taosMemoryMalloc(len);
M
Minghao Li 已提交
33 34 35
  syncPingReplySerialize(pMsg, serialized, len);
  SyncPingReply *pMsg2 = syncPingReplyBuild(pMsg->dataLen);
  syncPingReplyDeserialize(serialized, len, pMsg2);
M
Minghao Li 已提交
36
  syncPingReplyLog2((char *)"test2: syncPingReplySerialize -> syncPingReplyDeserialize ", pMsg2);
M
Minghao Li 已提交
37

wafwerar's avatar
wafwerar 已提交
38
  taosMemoryFree(serialized);
M
Minghao Li 已提交
39 40 41 42 43 44
  syncPingReplyDestroy(pMsg);
  syncPingReplyDestroy(pMsg2);
}

void test3() {
  SyncPingReply *pMsg = createMsg();
M
Minghao Li 已提交
45
  uint32_t       len;
H
Hongze Cheng 已提交
46
  char          *serialized = syncPingReplySerialize2(pMsg, &len);
M
Minghao Li 已提交
47
  SyncPingReply *pMsg2 = syncPingReplyDeserialize2(serialized, len);
M
Minghao Li 已提交
48
  syncPingReplyLog2((char *)"test3: syncPingReplySerialize2 -> syncPingReplyDeserialize2 ", pMsg2);
M
Minghao Li 已提交
49

wafwerar's avatar
wafwerar 已提交
50
  taosMemoryFree(serialized);
M
Minghao Li 已提交
51 52 53 54 55 56
  syncPingReplyDestroy(pMsg);
  syncPingReplyDestroy(pMsg2);
}

void test4() {
  SyncPingReply *pMsg = createMsg();
M
Minghao Li 已提交
57
  SRpcMsg        rpcMsg;
M
Minghao Li 已提交
58
  syncPingReply2RpcMsg(pMsg, &rpcMsg);
wafwerar's avatar
wafwerar 已提交
59
  SyncPingReply *pMsg2 = (SyncPingReply *)taosMemoryMalloc(rpcMsg.contLen);
M
Minghao Li 已提交
60
  syncPingReplyFromRpcMsg(&rpcMsg, pMsg2);
M
Minghao Li 已提交
61
  syncPingReplyLog2((char *)"test4: syncPingReply2RpcMsg -> syncPingReplyFromRpcMsg ", pMsg2);
M
Minghao Li 已提交
62

M
Minghao Li 已提交
63
  rpcFreeCont(rpcMsg.pCont);
M
Minghao Li 已提交
64 65 66 67 68 69
  syncPingReplyDestroy(pMsg);
  syncPingReplyDestroy(pMsg2);
}

void test5() {
  SyncPingReply *pMsg = createMsg();
M
Minghao Li 已提交
70
  SRpcMsg        rpcMsg;
M
Minghao Li 已提交
71 72
  syncPingReply2RpcMsg(pMsg, &rpcMsg);
  SyncPingReply *pMsg2 = syncPingReplyFromRpcMsg2(&rpcMsg);
M
Minghao Li 已提交
73
  syncPingReplyLog2((char *)"test5: syncPingReply2RpcMsg -> syncPingReplyFromRpcMsg2 ", pMsg2);
M
Minghao Li 已提交
74

M
Minghao Li 已提交
75 76 77 78 79 80 81 82
  rpcFreeCont(rpcMsg.pCont);
  syncPingReplyDestroy(pMsg);
  syncPingReplyDestroy(pMsg2);
}

void test6() {
  SyncPingReply *pMsg = createMsg();
  int32_t        bufLen = syncPingReplySerialize3(pMsg, NULL, 0);
H
Hongze Cheng 已提交
83
  char          *serialized = (char *)taosMemoryMalloc(bufLen);
M
Minghao Li 已提交
84 85 86 87 88 89
  syncPingReplySerialize3(pMsg, serialized, bufLen);
  SyncPingReply *pMsg2 = syncPingReplyDeserialize3(serialized, bufLen);
  assert(pMsg2 != NULL);
  syncPingReplyLog2((char *)"test6: syncPingReplySerialize3 -> syncPingReplyDeserialize3 ", pMsg2);

  taosMemoryFree(serialized);
M
Minghao Li 已提交
90 91 92 93 94 95
  syncPingReplyDestroy(pMsg);
  syncPingReplyDestroy(pMsg2);
}

int main() {
  tsAsyncLog = 0;
M
Minghao Li 已提交
96
  sDebugFlag = DEBUG_TRACE + DEBUG_SCREEN + DEBUG_FILE;
M
Minghao Li 已提交
97 98 99 100 101 102 103
  logTest();

  test1();
  test2();
  test3();
  test4();
  test5();
M
Minghao Li 已提交
104
  test6();
M
Minghao Li 已提交
105 106 107

  return 0;
}