Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
ddf55f25
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
ddf55f25
编写于
5月 16, 2022
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor: make more object global
上级
1f886b11
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
22 addition
and
33 deletion
+22
-33
source/dnode/mgmt/node_mgmt/src/dmNodes.c
source/dnode/mgmt/node_mgmt/src/dmNodes.c
+1
-1
source/dnode/mgmt/test/sut/inc/server.h
source/dnode/mgmt/test/sut/inc/server.h
+6
-7
source/dnode/mgmt/test/sut/src/server.cpp
source/dnode/mgmt/test/sut/src/server.cpp
+13
-23
source/dnode/mgmt/test/sut/src/sut.cpp
source/dnode/mgmt/test/sut/src/sut.cpp
+1
-1
source/dnode/mnode/impl/test/trans/trans2.cpp
source/dnode/mnode/impl/test/trans/trans2.cpp
+1
-1
未找到文件。
source/dnode/mgmt/node_mgmt/src/dmNodes.c
浏览文件 @
ddf55f25
...
...
@@ -260,7 +260,7 @@ static void dmWatchNodes(SDnode *pDnode) {
taosThreadMutexUnlock
(
&
pDnode
->
mutex
);
}
int32_t
d
n
RunDnode
(
SDnode
*
pDnode
)
{
int32_t
d
m
RunDnode
(
SDnode
*
pDnode
)
{
if
(
dmOpenNodes
(
pDnode
)
!=
0
)
{
dError
(
"failed to open nodes since %s"
,
terrstr
());
return
-
1
;
...
...
source/dnode/mgmt/test/sut/inc/server.h
浏览文件 @
ddf55f25
...
...
@@ -24,15 +24,14 @@ class TestServer {
bool
DoStart
();
private:
SDnodeOpt
BuildOption
(
const
char
*
path
,
const
char
*
fqdn
,
uint16_t
port
,
const
char
*
firstEp
);
void
BuildOption
(
const
char
*
path
,
const
char
*
fqdn
,
uint16_t
port
,
const
char
*
firstEp
);
private:
SDnode
*
pDnode
;
TdThread
threadId
;
char
path
[
PATH_MAX
];
char
fqdn
[
TSDB_FQDN_LEN
];
char
firstEp
[
TSDB_EP_LEN
];
uint16_t
port
;
TdThread
threadId
;
char
path
[
PATH_MAX
];
char
fqdn
[
TSDB_FQDN_LEN
];
char
firstEp
[
TSDB_EP_LEN
];
uint16_t
port
;
};
#endif
/* _TD_TEST_SERVER_H_ */
\ No newline at end of file
source/dnode/mgmt/test/sut/src/server.cpp
浏览文件 @
ddf55f25
...
...
@@ -16,35 +16,29 @@
#include "sut.h"
void
*
serverLoop
(
void
*
param
)
{
SDnode
*
pDnode
=
(
SDnode
*
)
param
;
dmRun
(
pDnode
);
dmRun
();
return
NULL
;
}
SDnodeOpt
TestServer
::
BuildOption
(
const
char
*
path
,
const
char
*
fqdn
,
uint16_t
port
,
const
char
*
firstEp
)
{
SDnodeOpt
option
=
{
0
};
option
.
numOfSupportVnodes
=
16
;
option
.
serverPort
=
port
;
strcpy
(
option
.
dataDir
,
path
);
snprintf
(
option
.
localEp
,
TSDB_EP_LEN
,
"%s:%u"
,
fqdn
,
port
);
snprintf
(
option
.
localFqdn
,
TSDB_FQDN_LEN
,
"%s"
,
fqdn
);
snprintf
(
option
.
firstEp
,
TSDB_EP_LEN
,
"%s"
,
firstEp
);
return
option
;
void
TestServer
::
BuildOption
(
const
char
*
path
,
const
char
*
fqdn
,
uint16_t
port
,
const
char
*
firstEp
)
{
tsNumOfSupportVnodes
=
16
;
tsServerPort
=
port
;
strcpy
(
tsDataDir
,
path
);
snprintf
(
tsLocalEp
,
TSDB_EP_LEN
,
"%s:%u"
,
fqdn
,
port
);
snprintf
(
tsLocalFqdn
,
TSDB_FQDN_LEN
,
"%s"
,
fqdn
);
snprintf
(
tsFirst
,
TSDB_EP_LEN
,
"%s"
,
firstEp
);
taosMkDir
(
path
);
}
bool
TestServer
::
DoStart
()
{
SDnodeOpt
option
=
BuildOption
(
path
,
fqdn
,
port
,
firstEp
);
taosMkDir
(
path
);
pDnode
=
dmCreate
(
&
option
);
if
(
pDnode
==
NULL
)
{
if
(
dmInit
(
0
)
!=
0
)
{
return
false
;
}
TdThreadAttr
thAttr
;
taosThreadAttrInit
(
&
thAttr
);
taosThreadAttrSetDetachState
(
&
thAttr
,
PTHREAD_CREATE_JOINABLE
);
taosThreadCreate
(
&
threadId
,
&
thAttr
,
serverLoop
,
pDnode
);
taosThreadCreate
(
&
threadId
,
&
thAttr
,
serverLoop
,
NULL
);
taosThreadAttrDestroy
(
&
thAttr
);
taosMsleep
(
2100
);
return
true
;
...
...
@@ -68,11 +62,7 @@ bool TestServer::Start(const char* path, const char* fqdn, uint16_t port, const
}
void
TestServer
::
Stop
()
{
dmS
etEvent
(
pDnode
,
DND_EVENT_STOP
);
dmS
top
(
);
taosThreadJoin
(
threadId
,
NULL
);
if
(
pDnode
!=
NULL
)
{
dmClose
(
pDnode
);
pDnode
=
NULL
;
}
dmCleanup
();
}
source/dnode/mgmt/test/sut/src/sut.cpp
浏览文件 @
ddf55f25
...
...
@@ -40,7 +40,7 @@ void Testbase::InitLog(const char* path) {
}
void
Testbase
::
Init
(
const
char
*
path
,
int16_t
port
)
{
dmInit
();
dmInit
(
0
);
char
fqdn
[]
=
"localhost"
;
char
firstEp
[
TSDB_EP_LEN
]
=
{
0
};
...
...
source/dnode/mnode/impl/test/trans/trans2.cpp
浏览文件 @
ddf55f25
...
...
@@ -15,7 +15,7 @@
#include "mndUser.h"
#include "tcache.h"
void
reportStartup
(
SMgmtWrapper
*
pWrapper
,
const
char
*
name
,
const
char
*
desc
)
{}
void
reportStartup
(
const
char
*
name
,
const
char
*
desc
)
{}
class
MndTestTrans2
:
public
::
testing
::
Test
{
protected:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录