Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
51ceed98
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
51ceed98
编写于
3月 13, 2022
作者:
M
Minghao Li
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sync io test
上级
1336e08a
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
22 addition
and
22 deletion
+22
-22
source/libs/sync/test/CMakeLists.txt
source/libs/sync/test/CMakeLists.txt
+10
-10
source/libs/sync/test/syncIOClientTest.cpp
source/libs/sync/test/syncIOClientTest.cpp
+12
-12
source/libs/sync/test/syncIOServerTest.cpp
source/libs/sync/test/syncIOServerTest.cpp
+0
-0
未找到文件。
source/libs/sync/test/CMakeLists.txt
浏览文件 @
51ceed98
...
...
@@ -4,8 +4,8 @@ add_executable(syncPingTimerTest "")
add_executable
(
syncIOTickQTest
""
)
add_executable
(
syncIOTickPingTest
""
)
add_executable
(
syncIOSendMsgTest
""
)
add_executable
(
syncIO
SendMsg
ClientTest
""
)
add_executable
(
syncIOSe
ndMsgSe
rverTest
""
)
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
(
syncIO
SendMsg
ClientTest
target_sources
(
syncIOClientTest
PRIVATE
"syncIO
SendMsg
ClientTest.cpp"
"syncIOClientTest.cpp"
)
target_sources
(
syncIOSe
ndMsgSe
rverTest
target_sources
(
syncIOServerTest
PRIVATE
"syncIOSe
ndMsgSe
rverTest.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
(
syncIO
SendMsg
ClientTest
target_include_directories
(
syncIOClientTest
PUBLIC
"
${
CMAKE_SOURCE_DIR
}
/include/libs/sync"
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/../inc"
)
target_include_directories
(
syncIOSe
ndMsgSe
rverTest
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
(
syncIO
SendMsg
ClientTest
target_link_libraries
(
syncIOClientTest
sync
gtest_main
)
target_link_libraries
(
syncIOSe
ndMsgSe
rverTest
target_link_libraries
(
syncIOServerTest
sync
gtest_main
)
...
...
source/libs/sync/test/syncIO
SendMsg
ClientTest.cpp
→
source/libs/sync/test/syncIOClientTest.cpp
浏览文件 @
51ceed98
...
...
@@ -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
);
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
;
rpcMsg
.
contLen
=
64
;
rpcMsg
.
pCont
=
rpcMallocCont
(
rpcMsg
.
contLen
);
snprintf
((
char
*
)
rpcMsg
.
pCont
,
rpcMsg
.
contLen
,
"%s"
,
"syncIOSendMsgTest"
);
rpcMsg
.
handle
=
NULL
;
rpcMsg
.
msgType
=
77
;
syncPingReply2RpcMsg
(
pSyncMsg
,
&
rpcMsg
);
syncIOSendMsg
(
gSyncIO
->
clientRpc
,
&
epSet
,
&
rpcMsg
);
taosSsleep
(
1
);
}
while
(
1
)
{
taosSsleep
(
1
);
}
return
0
;
}
source/libs/sync/test/syncIOSe
ndMsgSe
rverTest.cpp
→
source/libs/sync/test/syncIOServerTest.cpp
浏览文件 @
51ceed98
文件已移动
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录