Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
67a4114a
T
TDengine
项目概览
taosdata
/
TDengine
大约 2 年 前同步成功
通知
1192
Star
22018
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看板
提交
67a4114a
编写于
3月 14, 2022
作者:
P
Ping Xiao
浏览文件
操作
浏览文件
下载
差异文件
Merge branch '2.4' into xiaoping/2.4
上级
cd26e3e7
c064bbeb
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
129 addition
and
1 deletion
+129
-1
tests/develop-test/5-taos-tools/taosdump/taosdumpTestTypeBinary.py
...elop-test/5-taos-tools/taosdump/taosdumpTestTypeBinary.py
+127
-0
tests/develop-test/fulltest-tools.sh
tests/develop-test/fulltest-tools.sh
+2
-1
未找到文件。
tests/develop-test/5-taos-tools/taosdump/taosdumpTestTypeBinary.py
0 → 100644
浏览文件 @
67a4114a
###################################################################
# Copyright (c) 2016 by TAOS Technologies, Inc.
# All rights reserved.
#
# This file is proprietary and confidential to TAOS Technologies.
# No part of this file may be reproduced, stored, transmitted,
# disclosed or used in any form or by any means other than as
# expressly provided by the written permission from Jianhui Tao
#
###################################################################
# -*- coding: utf-8 -*-
import
sys
import
os
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
from
util.dnodes
import
*
import
subprocess
class
TDTestCase
:
def
caseDescription
(
self
):
'''
case1<sdsang>: [TD-12526] taosdump supports binary
'''
return
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
self
.
tmpdir
=
"tmp"
def
getBuildPath
(
self
):
selfPath
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
if
(
"community"
in
selfPath
):
projPath
=
selfPath
[:
selfPath
.
find
(
"community"
)]
else
:
projPath
=
selfPath
[:
selfPath
.
find
(
"tests"
)]
buildPath
=
""
for
root
,
dirs
,
files
in
os
.
walk
(
projPath
):
if
(
"taosdump"
in
files
):
rootRealPath
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
root
))
if
(
"packaging"
not
in
rootRealPath
):
buildPath
=
root
[:
len
(
root
)
-
len
(
"/build/bin"
)]
break
return
buildPath
def
run
(
self
):
tdSql
.
prepare
()
tdSql
.
execute
(
"drop database if exists db"
)
tdSql
.
execute
(
"create database db days 11 keep 3649 blocks 8 "
)
tdSql
.
execute
(
"use db"
)
tdSql
.
execute
(
"create table st(ts timestamp, c1 BINARY(5), c2 BINARY(5)) tags(btag BINARY(5))"
)
tdSql
.
execute
(
"create table t1 using st tags('test')"
)
tdSql
.
execute
(
"insert into t1 values(1640000000000, '01234', '56789')"
)
tdSql
.
execute
(
"insert into t1 values(1640000000001, 'abcd', 'efgh')"
)
tdSql
.
execute
(
"create table t2 using st tags(NULL)"
)
tdSql
.
execute
(
"insert into t2 values(1640000000000, NULL, NULL)"
)
buildPath
=
self
.
getBuildPath
()
if
(
buildPath
==
""
):
tdLog
.
exit
(
"taosdump not found!"
)
else
:
tdLog
.
info
(
"taosdump found in %s"
%
buildPath
)
binPath
=
buildPath
+
"/build/bin/"
if
not
os
.
path
.
exists
(
self
.
tmpdir
):
os
.
makedirs
(
self
.
tmpdir
)
else
:
print
(
"directory exists"
)
os
.
system
(
"rm -rf %s"
%
self
.
tmpdir
)
os
.
makedirs
(
self
.
tmpdir
)
os
.
system
(
"%staosdump --databases db -o %s"
%
(
binPath
,
self
.
tmpdir
))
# sys.exit(1)
tdSql
.
execute
(
"drop database db"
)
os
.
system
(
"%staosdump -i %s"
%
(
binPath
,
self
.
tmpdir
))
tdSql
.
query
(
"show databases"
)
tdSql
.
checkRows
(
1
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"show stables"
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
'st'
)
tdSql
.
query
(
"show tables"
)
tdSql
.
checkRows
(
2
)
tdSql
.
checkData
(
0
,
0
,
't2'
)
tdSql
.
checkData
(
1
,
0
,
't1'
)
tdSql
.
query
(
"select btag from st where tbname = 't1'"
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
"test"
)
tdSql
.
query
(
"select btag from st where tbname = 't2'"
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
None
)
tdSql
.
query
(
"select * from st where btag = 'test'"
)
tdSql
.
checkRows
(
2
)
tdSql
.
checkData
(
0
,
1
,
"01234"
)
tdSql
.
checkData
(
0
,
2
,
"56789"
)
tdSql
.
checkData
(
1
,
1
,
"abcd"
)
tdSql
.
checkData
(
1
,
2
,
"efgh"
)
tdSql
.
query
(
"select * from st where btag is null"
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
1
,
None
)
tdSql
.
checkData
(
0
,
2
,
None
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tests/develop-test/fulltest-tools.sh
浏览文件 @
67a4114a
python3 ./test.py
-f
5-taos-tools/taosdump/taosdumpTestTypeBinary.py
python3 ./test.py
-f
5-taos-tools/taosdump/taosdumpTestTypeBigInt.py
python3 ./test.py
-f
5-taos-tools/taosdump/taosdumpTestTypeBigInt.py
python3 ./test.py
-f
5-taos-tools/taosdump/taosdumpTestTypeBool.py
python3 ./test.py
-f
5-taos-tools/taosdump/taosdumpTestTypeBool.py
python3 ./test.py
-f
5-taos-tools/taosdump/taosdumpTestTypeDouble.py
python3 ./test.py
-f
5-taos-tools/taosdump/taosdumpTestTypeDouble.py
...
@@ -22,4 +23,4 @@ python3 ./test.py -f 5-taos-tools/taosbenchmark/sml_telnet_alltypes.py
...
@@ -22,4 +23,4 @@ python3 ./test.py -f 5-taos-tools/taosbenchmark/sml_telnet_alltypes.py
python3 ./test.py
-f
5-taos-tools/taosbenchmark/subscripe_json.py
python3 ./test.py
-f
5-taos-tools/taosbenchmark/subscripe_json.py
python3 ./test.py
-f
5-taos-tools/taosbenchmark/default_json.py
python3 ./test.py
-f
5-taos-tools/taosbenchmark/default_json.py
python3 ./test.py
-f
5-taos-tools/taosbenchmark/invalid_commandline.py
python3 ./test.py
-f
5-taos-tools/taosbenchmark/invalid_commandline.py
python3 ./test.py
-f
5-taos-tools/taosbenchmark/sample_csv_json.py
python3 ./test.py
-f
5-taos-tools/taosbenchmark/sample_csv_json.py
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录