syncPreSnapshotTest.cpp 2.6 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 19 20 21 22 23 24 25 26 27 28 29 30

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

SyncPreSnapshot *createMsg() {
  SyncPreSnapshot *pMsg = syncPreSnapshotBuild(789);
  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->term = 9527;
  return pMsg;
}

void test1() {
  SyncPreSnapshot *pMsg = createMsg();
  syncPreSnapshotLog2((char *)"test1:", pMsg);
  syncPreSnapshotDestroy(pMsg);
}

void test2() {
  SyncPreSnapshot *pMsg = createMsg();
31 32
  uint32_t         len = pMsg->bytes;
  char            *serialized = (char *)taosMemoryMalloc(len);
M
Minghao Li 已提交
33 34 35 36 37 38 39 40 41 42 43 44
  syncPreSnapshotSerialize(pMsg, serialized, len);
  SyncPreSnapshot *pMsg2 = syncPreSnapshotBuild(789);
  syncPreSnapshotDeserialize(serialized, len, pMsg2);
  syncPreSnapshotLog2((char *)"test2: syncPreSnapshotSerialize -> syncPreSnapshotDeserialize ", pMsg2);

  taosMemoryFree(serialized);
  syncPreSnapshotDestroy(pMsg);
  syncPreSnapshotDestroy(pMsg2);
}

void test3() {
  SyncPreSnapshot *pMsg = createMsg();
45 46
  uint32_t         len;
  char            *serialized = syncPreSnapshotSerialize2(pMsg, &len);
M
Minghao Li 已提交
47 48 49 50 51 52 53 54 55 56
  SyncPreSnapshot *pMsg2 = syncPreSnapshotDeserialize2(serialized, len);
  syncPreSnapshotLog2((char *)"test3: syncPreSnapshotSerialize2 -> syncPreSnapshotDeserialize2 ", pMsg2);

  taosMemoryFree(serialized);
  syncPreSnapshotDestroy(pMsg);
  syncPreSnapshotDestroy(pMsg2);
}

void test4() {
  SyncPreSnapshot *pMsg = createMsg();
57
  SRpcMsg          rpcMsg;
M
Minghao Li 已提交
58 59 60 61 62 63 64 65 66 67 68 69
  syncPreSnapshot2RpcMsg(pMsg, &rpcMsg);
  SyncPreSnapshot *pMsg2 = (SyncPreSnapshot *)taosMemoryMalloc(rpcMsg.contLen);
  syncPreSnapshotFromRpcMsg(&rpcMsg, pMsg2);
  syncPreSnapshotLog2((char *)"test4: syncPreSnapshot2RpcMsg -> syncPreSnapshotFromRpcMsg ", pMsg2);

  rpcFreeCont(rpcMsg.pCont);
  syncPreSnapshotDestroy(pMsg);
  syncPreSnapshotDestroy(pMsg2);
}

void test5() {
  SyncPreSnapshot *pMsg = createMsg();
70
  SRpcMsg          rpcMsg;
M
Minghao Li 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
  syncPreSnapshot2RpcMsg(pMsg, &rpcMsg);
  SyncPreSnapshot *pMsg2 = syncPreSnapshotFromRpcMsg2(&rpcMsg);
  syncPreSnapshotLog2((char *)"test5: syncPreSnapshot2RpcMsg -> syncPreSnapshotFromRpcMsg2 ", pMsg2);

  rpcFreeCont(rpcMsg.pCont);
  syncPreSnapshotDestroy(pMsg);
  syncPreSnapshotDestroy(pMsg2);
}

int main() {
  tsAsyncLog = 0;
  sDebugFlag = DEBUG_TRACE + DEBUG_SCREEN + DEBUG_FILE;
  gRaftDetailLog = true;
  logTest();

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

  return 0;
}