sync io test
This commit is contained in:
parent
1336e08ad0
commit
51ceed983f
|
@ -4,8 +4,8 @@ add_executable(syncPingTimerTest "")
|
|||
add_executable(syncIOTickQTest "")
|
||||
add_executable(syncIOTickPingTest "")
|
||||
add_executable(syncIOSendMsgTest "")
|
||||
add_executable(syncIOSendMsgClientTest "")
|
||||
add_executable(syncIOSendMsgServerTest "")
|
||||
add_executable(syncIOClientTest "")
|
||||
add_executable(syncIOServerTest "")
|
||||
add_executable(syncRaftStoreTest "")
|
||||
add_executable(syncEnqTest "")
|
||||
add_executable(syncIndexTest "")
|
||||
|
@ -51,13 +51,13 @@ target_sources(syncIOSendMsgTest
|
|||
PRIVATE
|
||||
"syncIOSendMsgTest.cpp"
|
||||
)
|
||||
target_sources(syncIOSendMsgClientTest
|
||||
target_sources(syncIOClientTest
|
||||
PRIVATE
|
||||
"syncIOSendMsgClientTest.cpp"
|
||||
"syncIOClientTest.cpp"
|
||||
)
|
||||
target_sources(syncIOSendMsgServerTest
|
||||
target_sources(syncIOServerTest
|
||||
PRIVATE
|
||||
"syncIOSendMsgServerTest.cpp"
|
||||
"syncIOServerTest.cpp"
|
||||
)
|
||||
target_sources(syncRaftStoreTest
|
||||
PRIVATE
|
||||
|
@ -167,12 +167,12 @@ target_include_directories(syncIOSendMsgTest
|
|||
"${CMAKE_SOURCE_DIR}/include/libs/sync"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../inc"
|
||||
)
|
||||
target_include_directories(syncIOSendMsgClientTest
|
||||
target_include_directories(syncIOClientTest
|
||||
PUBLIC
|
||||
"${CMAKE_SOURCE_DIR}/include/libs/sync"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../inc"
|
||||
)
|
||||
target_include_directories(syncIOSendMsgServerTest
|
||||
target_include_directories(syncIOServerTest
|
||||
PUBLIC
|
||||
"${CMAKE_SOURCE_DIR}/include/libs/sync"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../inc"
|
||||
|
@ -298,11 +298,11 @@ target_link_libraries(syncIOSendMsgTest
|
|||
sync
|
||||
gtest_main
|
||||
)
|
||||
target_link_libraries(syncIOSendMsgClientTest
|
||||
target_link_libraries(syncIOClientTest
|
||||
sync
|
||||
gtest_main
|
||||
)
|
||||
target_link_libraries(syncIOSendMsgServerTest
|
||||
target_link_libraries(syncIOServerTest
|
||||
sync
|
||||
gtest_main
|
||||
)
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
#include <stdio.h>
|
||||
#include "syncIO.h"
|
||||
#include "syncInt.h"
|
||||
#include "syncRaftStore.h"
|
||||
#include "syncMessage.h"
|
||||
#include "syncUtil.h"
|
||||
|
||||
void logTest() {
|
||||
sTrace("--- sync log test: trace");
|
||||
|
@ -22,7 +23,7 @@ int main() {
|
|||
|
||||
int32_t ret;
|
||||
|
||||
ret = syncIOStart((char *)"127.0.0.1", 7010);
|
||||
ret = syncIOStart((char*)"127.0.0.1", 7010);
|
||||
assert(ret == 0);
|
||||
|
||||
for (int i = 0; i < 10; ++i) {
|
||||
|
@ -31,20 +32,19 @@ int main() {
|
|||
epSet.numOfEps = 0;
|
||||
addEpIntoEpSet(&epSet, "127.0.0.1", 7030);
|
||||
|
||||
SRpcMsg rpcMsg;
|
||||
rpcMsg.contLen = 64;
|
||||
rpcMsg.pCont = rpcMallocCont(rpcMsg.contLen);
|
||||
snprintf((char *)rpcMsg.pCont, rpcMsg.contLen, "%s", "syncIOSendMsgTest");
|
||||
rpcMsg.handle = NULL;
|
||||
rpcMsg.msgType = 77;
|
||||
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;
|
||||
|
||||
SyncPingReply* pSyncMsg = syncPingReplyBuild2(&srcId, &destId, "syncIOClientTest");
|
||||
SRpcMsg rpcMsg;
|
||||
syncPingReply2RpcMsg(pSyncMsg, &rpcMsg);
|
||||
|
||||
syncIOSendMsg(gSyncIO->clientRpc, &epSet, &rpcMsg);
|
||||
taosSsleep(1);
|
||||
}
|
||||
|
||||
while (1) {
|
||||
taosSsleep(1);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue