98 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
#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");
 | 
						|
}
 | 
						|
 | 
						|
SyncRequestVote *createMsg() {
 | 
						|
  SyncRequestVote *pMsg = syncRequestVoteBuild();
 | 
						|
  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->currentTerm = 11;
 | 
						|
  pMsg->lastLogIndex = 22;
 | 
						|
  pMsg->lastLogTerm = 33;
 | 
						|
  return pMsg;
 | 
						|
}
 | 
						|
 | 
						|
void test1() {
 | 
						|
  SyncRequestVote *pMsg = createMsg();
 | 
						|
  syncRequestVotePrint2((char *)"test1:", pMsg);
 | 
						|
  syncRequestVoteDestroy(pMsg);
 | 
						|
}
 | 
						|
 | 
						|
void test2() {
 | 
						|
  SyncRequestVote *pMsg = createMsg();
 | 
						|
  uint32_t         len = pMsg->bytes;
 | 
						|
  char *           serialized = (char *)malloc(len);
 | 
						|
  syncRequestVoteSerialize(pMsg, serialized, len);
 | 
						|
  SyncRequestVote *pMsg2 = syncRequestVoteBuild();
 | 
						|
  syncRequestVoteDeserialize(serialized, len, pMsg2);
 | 
						|
  syncRequestVotePrint2((char *)"test2: syncRequestVoteSerialize -> syncRequestVoteDeserialize ", pMsg2);
 | 
						|
 | 
						|
  free(serialized);
 | 
						|
  syncRequestVoteDestroy(pMsg);
 | 
						|
  syncRequestVoteDestroy(pMsg2);
 | 
						|
}
 | 
						|
 | 
						|
void test3() {
 | 
						|
  SyncRequestVote *pMsg = createMsg();
 | 
						|
  uint32_t         len;
 | 
						|
  char *           serialized = syncRequestVoteSerialize2(pMsg, &len);
 | 
						|
  SyncRequestVote *pMsg2 = syncRequestVoteDeserialize2(serialized, len);
 | 
						|
  syncRequestVotePrint2((char *)"test3: syncRequestVoteSerialize3 -> syncRequestVoteDeserialize2 ", pMsg2);
 | 
						|
 | 
						|
  free(serialized);
 | 
						|
  syncRequestVoteDestroy(pMsg);
 | 
						|
  syncRequestVoteDestroy(pMsg2);
 | 
						|
}
 | 
						|
 | 
						|
void test4() {
 | 
						|
  SyncRequestVote *pMsg = createMsg();
 | 
						|
  SRpcMsg          rpcMsg;
 | 
						|
  syncRequestVote2RpcMsg(pMsg, &rpcMsg);
 | 
						|
  SyncRequestVote *pMsg2 = syncRequestVoteBuild();
 | 
						|
  syncRequestVoteFromRpcMsg(&rpcMsg, pMsg2);
 | 
						|
  syncRequestVotePrint2((char *)"test4: syncRequestVote2RpcMsg -> syncRequestVoteFromRpcMsg ", pMsg2);
 | 
						|
 | 
						|
  syncRequestVoteDestroy(pMsg);
 | 
						|
  syncRequestVoteDestroy(pMsg2);
 | 
						|
}
 | 
						|
 | 
						|
void test5() {
 | 
						|
  SyncRequestVote *pMsg = createMsg();
 | 
						|
  SRpcMsg          rpcMsg;
 | 
						|
  syncRequestVote2RpcMsg(pMsg, &rpcMsg);
 | 
						|
  SyncRequestVote *pMsg2 = syncRequestVoteFromRpcMsg2(&rpcMsg);
 | 
						|
  syncRequestVotePrint2((char *)"test5: syncRequestVote2RpcMsg -> syncRequestVoteFromRpcMsg2 ", pMsg2);
 | 
						|
 | 
						|
  syncRequestVoteDestroy(pMsg);
 | 
						|
  syncRequestVoteDestroy(pMsg2);
 | 
						|
}
 | 
						|
 | 
						|
int main() {
 | 
						|
  // taosInitLog((char *)"syncTest.log", 100000, 10);
 | 
						|
  tsAsyncLog = 0;
 | 
						|
  sDebugFlag = 143 + 64;
 | 
						|
  logTest();
 | 
						|
 | 
						|
  test1();
 | 
						|
  test2();
 | 
						|
  test3();
 | 
						|
  test4();
 | 
						|
  test5();
 | 
						|
 | 
						|
  return 0;
 | 
						|
}
 |