Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
1b15cb53
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
1b15cb53
编写于
5月 10, 2023
作者:
Y
yanglifeng1217
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
<modified>
Signed-off-by:
N
yanglifeng1217
<
yanglifeng5@huawei.com
>
上级
a7aaadb6
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
49 addition
and
29 deletion
+49
-29
distributeddatamgr/relationalStoretest/RdbJstest/hap/src/main/js/test/RdbStoreDistributedJsunit.test.js
...st/hap/src/main/js/test/RdbStoreDistributedJsunit.test.js
+20
-11
distributeddatamgr/relationalStoretest/RdbJstest/hap/src/main/js/test/RdbstoreEncryptionJsunit.test.js
...est/hap/src/main/js/test/RdbstoreEncryptionJsunit.test.js
+4
-3
distributeddatamgr/relationalStoretest/relationalStoreJstest/hap/src/main/js/test/RelationalStoreDistributedJsunit.test.js
...src/main/js/test/RelationalStoreDistributedJsunit.test.js
+21
-11
distributeddatamgr/relationalStoretest/relationalStoreJstest/hap/src/main/js/test/RelationalStoreEncryptionJsunit.test.js
.../src/main/js/test/RelationalStoreEncryptionJsunit.test.js
+4
-4
未找到文件。
distributeddatamgr/relationalStoretest/RdbJstest/hap/src/main/js/test/RdbStoreDistributedJsunit.test.js
浏览文件 @
1b15cb53
...
...
@@ -61,6 +61,9 @@ try {
expect
(
null
).
assertFail
()
}
}
function
storeObserver
(
devices
)
{
console
.
info
(
TAG
+
devices
+
"
dataChange
"
);
}
export
default
function
rdbStoreDistributedTest
()
{
describe
(
'
rdbStoreDistributedTest
'
,
function
()
{
...
...
@@ -343,11 +346,14 @@ describe('rdbStoreDistributedTest', function () {
*/
it
(
'
testRdbStoreDistributed0012
'
,
0
,
async
function
(
done
)
{
console
.
info
(
TAG
+
"
************* testRdbStoreDistributed0012 start *************
"
);
rdbStore
.
on
(
"
dataChange
"
,
dataRdb
.
SubscribeType
.
SUBSCRIBE_TYPE_REMOTE
,
(
device
)
=>
{
console
.
info
(
TAG
+
device
+
"
dataChange
"
);
});
console
.
info
(
TAG
+
"
on dataChange success
"
);
expect
(
rdbStore
).
assertEqual
(
rdbStore
);
try
{
rdbStore
.
on
(
"
dataChange
"
,
dataRdb
.
SubscribeType
.
SUBSCRIBE_TYPE_REMOTE
,
storeObserver
);
console
.
info
(
TAG
+
"
on dataChange success
"
);
expect
(
rdbStore
).
assertEqual
(
rdbStore
);
}
catch
(
err
){
console
.
info
(
TAG
+
"
on dataChange
"
+
err
);
expect
(
err
!==
null
).
assertFalse
();
}
done
()
console
.
info
(
TAG
+
"
************* testRdbStoreDistributed0012 end *************
"
);
})
...
...
@@ -357,13 +363,16 @@ describe('rdbStoreDistributedTest', function () {
* @tc.number SUB_DDM_AppDataFWK_JSRDB_Distributed_013
* @tc.desc subscribe test
*/
it
(
'
testRdbStoreDistributed0013
'
,
0
,
async
function
(
done
)
{
it
(
'
testRdbStoreDistributed0013
'
,
0
,
function
(
done
)
{
console
.
info
(
TAG
+
"
************* testRdbStoreDistributed0013 start *************
"
);
rdbStore
.
off
(
"
dataChange
"
,
dataRdb
.
SubscribeType
.
SUBSCRIBE_TYPE_REMOTE
,
(
device
)
=>
{
console
.
info
(
TAG
+
device
+
"
dataChange
"
);
});
console
.
info
(
TAG
+
"
off dataChange success
"
);
expect
(
rdbStore
).
assertEqual
(
rdbStore
);
try
{
let
off
=
rdbStore
.
on
(
"
dataChange
"
,
dataRdb
.
SubscribeType
.
SUBSCRIBE_TYPE_REMOTE
,
storeObserver
);
console
.
info
(
TAG
+
"
off dataChange success
"
+
off
);
expect
(
rdbStore
).
assertEqual
(
rdbStore
);
}
catch
(
err
){
console
.
info
(
TAG
+
"
off dataChange
"
+
err
);
expect
(
err
!==
null
).
assertFalse
();
}
done
()
console
.
info
(
TAG
+
"
************* testRdbStoreDistributed0013 end *************
"
);
})
...
...
distributeddatamgr/relationalStoretest/RdbJstest/hap/src/main/js/test/RdbstoreEncryptionJsunit.test.js
浏览文件 @
1b15cb53
...
...
@@ -175,12 +175,13 @@ describe('rdbEncryptTest', function () {
rdbStore
=
null
try
{
rdbStore
=
await
CreatRdbStore
(
context
,
STORE_CONFIG_WRONG
)
expect
(
rdbStore
!==
null
).
assertFalse
()
}
catch
(
err
)
{
console
.
info
(
TAG
+
`catch err: `
+
err
)
expect
(
err
).
assertTrue
expect
(
rdbStore
).
assertEqual
(
null
)
done
()
console
.
info
(
TAG
+
"
************* RdbEncryptTest_0040 end *************
"
)
}
done
()
console
.
info
(
TAG
+
"
************* RdbEncryptTest_0040 end *************
"
)
})
console
.
info
(
TAG
+
"
*************Unit Test End*************
"
)
}
...
...
distributeddatamgr/relationalStoretest/relationalStoreJstest/hap/src/main/js/test/RelationalStoreDistributedJsunit.test.js
浏览文件 @
1b15cb53
...
...
@@ -64,6 +64,10 @@ try {
}
}
function
storeObserver
(
devices
)
{
console
.
info
(
TAG
+
devices
+
"
dataChange
"
);
}
export
default
function
relationalStoreDistributedTest
()
{
describe
(
'
relationalStoreDistributedTest
'
,
function
()
{
beforeAll
(
async
function
()
{
...
...
@@ -345,11 +349,14 @@ describe('relationalStoreDistributedTest', function () {
*/
it
(
'
testRdbStoreDistributed0012
'
,
0
,
async
function
(
done
)
{
console
.
info
(
TAG
+
"
************* testRdbStoreDistributed0012 start *************
"
);
rdbStore
.
on
(
"
dataChange
"
,
data_Rdb
.
SubscribeType
.
SUBSCRIBE_TYPE_REMOTE
,
(
device
)
=>
{
console
.
info
(
TAG
+
device
+
"
dataChange
"
);
});
console
.
info
(
TAG
+
"
on dataChange success
"
);
expect
(
rdbStore
).
assertEqual
(
rdbStore
);
try
{
rdbStore
.
on
(
"
dataChange
"
,
data_Rdb
.
SubscribeType
.
SUBSCRIBE_TYPE_REMOTE
,
storeObserver
);
console
.
info
(
TAG
+
"
on dataChange success
"
);
expect
(
rdbStore
).
assertEqual
(
rdbStore
);
}
catch
(
err
){
console
.
info
(
TAG
+
"
on dataChange
"
+
err
);
expect
(
err
!==
null
).
assertFalse
();
}
done
()
console
.
info
(
TAG
+
"
************* testRdbStoreDistributed0012 end *************
"
);
})
...
...
@@ -359,13 +366,16 @@ describe('relationalStoreDistributedTest', function () {
* @tc.number SUB_DDM_AppDataFWK_JSRelationalStore_Distributed_013
* @tc.desc subscribe test
*/
it
(
'
testRdbStoreDistributed0013
'
,
0
,
async
function
(
done
)
{
it
(
'
testRdbStoreDistributed0013
'
,
0
,
function
(
done
)
{
console
.
info
(
TAG
+
"
************* testRdbStoreDistributed0013 start *************
"
);
rdbStore
.
off
(
"
dataChange
"
,
data_Rdb
.
SubscribeType
.
SUBSCRIBE_TYPE_REMOTE
,
(
device
)
=>
{
console
.
info
(
TAG
+
device
+
"
dataChange
"
);
});
console
.
info
(
TAG
+
"
off dataChange success
"
);
expect
(
rdbStore
).
assertEqual
(
rdbStore
);
try
{
let
off
=
rdbStore
.
on
(
"
dataChange
"
,
data_Rdb
.
SubscribeType
.
SUBSCRIBE_TYPE_REMOTE
,
storeObserver
);
console
.
info
(
TAG
+
"
off dataChange success
"
+
off
);
expect
(
rdbStore
).
assertEqual
(
rdbStore
);
}
catch
(
err
){
console
.
info
(
TAG
+
"
off dataChange
"
+
err
);
expect
(
err
!==
null
).
assertFalse
();
}
done
()
console
.
info
(
TAG
+
"
************* testRdbStoreDistributed0013 end *************
"
);
})
...
...
distributeddatamgr/relationalStoretest/relationalStoreJstest/hap/src/main/js/test/RelationalStoreEncryptionJsunit.test.js
浏览文件 @
1b15cb53
...
...
@@ -178,13 +178,13 @@ describe('relationalStoreEncryptTest', function () {
rdbStore
=
null
try
{
rdbStore
=
await
CreatRdbStore
(
context
,
STORE_CONFIG_WRONG
)
expect
(
rdbStore
!==
null
).
assertFalse
()
}
catch
(
err
)
{
console
.
info
(
TAG
+
`catch err: err.code=
${
err
.
code
}
, message =
${
err
.
message
}
`
)
expect
(
err
.
code
===
14800000
).
assertTrue
expect
(
err
.
code
).
assertEqual
(
14800000
);
done
()
console
.
info
(
TAG
+
"
************* RdbEncryptTest_0040 end *************
"
)
}
done
()
console
.
info
(
TAG
+
"
************* RdbEncryptTest_0040 end *************
"
)
})
console
.
info
(
TAG
+
"
*************Unit Test End*************
"
)
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录