syncApplyMsgTest.cpp 3.2 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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
#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");
}

SyncApplyMsg *createMsg() {
  SRpcMsg rpcMsg;
  memset(&rpcMsg, 0, sizeof(rpcMsg));
  rpcMsg.msgType = 12345;
  rpcMsg.contLen = 20;
  rpcMsg.pCont = rpcMallocCont(rpcMsg.contLen);
  strcpy((char *)rpcMsg.pCont, "hello rpc");

  SFsmCbMeta meta;
  meta.code = 11;
  meta.index = 22;
  meta.isWeak = 1;
  meta.seqNum = 33;
  meta.state = TAOS_SYNC_STATE_LEADER;

  SyncApplyMsg *pMsg = syncApplyMsgBuild2(&rpcMsg, 123, &meta);
  rpcFreeCont(rpcMsg.pCont);
  return pMsg;
}

void test1() {
  SyncApplyMsg *pMsg = createMsg();
  syncApplyMsgLog2((char *)"test1:", pMsg);
  syncApplyMsgDestroy(pMsg);
}

void test2() {
  SyncApplyMsg *pMsg = createMsg();
M
Minghao Li 已提交
45
  uint32_t      len = pMsg->bytes;
H
Hongze Cheng 已提交
46
  char         *serialized = (char *)taosMemoryMalloc(len);
M
Minghao Li 已提交
47 48 49 50 51 52 53 54 55 56 57 58
  syncApplyMsgSerialize(pMsg, serialized, len);
  SyncApplyMsg *pMsg2 = syncApplyMsgBuild(pMsg->dataLen);
  syncApplyMsgDeserialize(serialized, len, pMsg2);
  syncApplyMsgLog2((char *)"test2: syncApplyMsgSerialize -> syncApplyMsgDeserialize ", pMsg2);

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

void test3() {
  SyncApplyMsg *pMsg = createMsg();
M
Minghao Li 已提交
59
  uint32_t      len;
H
Hongze Cheng 已提交
60
  char         *serialized = syncApplyMsgSerialize2(pMsg, &len);
M
Minghao Li 已提交
61 62 63 64 65 66 67 68 69 70
  SyncApplyMsg *pMsg2 = syncApplyMsgDeserialize2(serialized, len);
  syncApplyMsgLog2((char *)"test3: syncApplyMsgSerialize2 -> syncApplyMsgDeserialize2 ", pMsg2);

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

void test4() {
  SyncApplyMsg *pMsg = createMsg();
M
Minghao Li 已提交
71
  SRpcMsg       rpcMsg;
M
Minghao Li 已提交
72 73 74 75 76 77 78 79 80 81 82 83
  syncApplyMsg2RpcMsg(pMsg, &rpcMsg);
  SyncApplyMsg *pMsg2 = (SyncApplyMsg *)taosMemoryMalloc(rpcMsg.contLen);
  syncApplyMsgFromRpcMsg(&rpcMsg, pMsg2);
  syncApplyMsgLog2((char *)"test4: syncApplyMsg2RpcMsg -> syncApplyMsgFromRpcMsg ", pMsg2);

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

void test5() {
  SyncApplyMsg *pMsg = createMsg();
S
Shengliang Guan 已提交
84
  SRpcMsg       rpcMsg = {0};
M
Minghao Li 已提交
85 86 87 88 89 90 91 92 93 94 95
  syncApplyMsg2RpcMsg(pMsg, &rpcMsg);
  SyncApplyMsg *pMsg2 = syncApplyMsgFromRpcMsg2(&rpcMsg);
  syncApplyMsgLog2((char *)"test5: syncClientRequest2RpcMsg -> syncApplyMsgFromRpcMsg2 ", pMsg2);

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

void test6() {
  SyncApplyMsg *pMsg = createMsg();
M
Minghao Li 已提交
96
  SRpcMsg       rpcMsg;
M
Minghao Li 已提交
97 98 99 100 101
  syncApplyMsg2RpcMsg(pMsg, &rpcMsg);
  SyncApplyMsg *pMsg2 = syncApplyMsgFromRpcMsg2(&rpcMsg);

  SRpcMsg originalRpcMsg;
  syncApplyMsg2OriginalRpcMsg(pMsg2, &originalRpcMsg);
M
Minghao Li 已提交
102
  syncRpcMsgLog2((char *)"test6", &originalRpcMsg);
M
Minghao Li 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123

  rpcFreeCont(originalRpcMsg.pCont);
  rpcFreeCont(rpcMsg.pCont);
  syncApplyMsgDestroy(pMsg);
  syncApplyMsgDestroy(pMsg2);
}

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

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

  return 0;
}