Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
8beb5e2b
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看板
未验证
提交
8beb5e2b
编写于
5月 11, 2023
作者:
O
openharmony_ci
提交者:
Gitee
5月 11, 2023
浏览文件
操作
浏览文件
下载
差异文件
!8620 【Distributeddatamgr】【Master】
Merge pull request !8620 from yanglifeng/master
上级
46d15cbe
9b630d71
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
61 addition
and
36 deletion
+61
-36
distributeddatamgr/relationalStoretest/RdbJstest/hap/src/main/js/test/RdbStoreDistributedJsunit.test.js
...st/hap/src/main/js/test/RdbStoreDistributedJsunit.test.js
+20
-12
distributeddatamgr/relationalStoretest/RdbJstest/hap/src/main/js/test/RdbstoreEncryptionJsunit.test.js
...est/hap/src/main/js/test/RdbstoreEncryptionJsunit.test.js
+10
-6
distributeddatamgr/relationalStoretest/relationalStoreJstest/hap/src/main/js/test/RelationalStoreDistributedJsunit.test.js
...src/main/js/test/RelationalStoreDistributedJsunit.test.js
+21
-12
distributeddatamgr/relationalStoretest/relationalStoreJstest/hap/src/main/js/test/RelationalStoreEncryptionJsunit.test.js
.../src/main/js/test/RelationalStoreEncryptionJsunit.test.js
+10
-6
未找到文件。
distributeddatamgr/relationalStoretest/RdbJstest/hap/src/main/js/test/RdbStoreDistributedJsunit.test.js
浏览文件 @
8beb5e2b
...
...
@@ -61,6 +61,10 @@ try {
expect
(
null
).
assertFail
()
}
}
function
storeObserver
(
devices
)
{
console
.
info
(
TAG
+
devices
+
"
dataChange
"
);
expect
(
devices
).
assertEqual
(
null
)
}
export
default
function
rdbStoreDistributedTest
()
{
describe
(
'
rdbStoreDistributedTest
'
,
function
()
{
...
...
@@ -341,13 +345,15 @@ describe('rdbStoreDistributedTest', function () {
* @tc.number SUB_DDM_AppDataFWK_JSRDB_Distributed_012
* @tc.desc subscribe test
*/
it
(
'
testRdbStoreDistributed0012
'
,
0
,
async
function
(
done
)
{
it
(
'
testRdbStoreDistributed0012
'
,
0
,
async
function
(
done
)
{
console
.
info
(
TAG
+
"
************* testRdbStoreDistributed0012 start *************
"
);
rdbStore
.
on
(
"
dataChange
"
,
(
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
"
);
}
catch
(
err
){
console
.
info
(
TAG
+
"
on dataChange
"
+
err
);
expect
(
err
!==
null
).
assertFalse
();
}
done
()
console
.
info
(
TAG
+
"
************* testRdbStoreDistributed0012 end *************
"
);
})
...
...
@@ -357,13 +363,15 @@ 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
"
,
(
device
)
=>
{
console
.
info
(
TAG
+
device
+
"
dataChange
"
);
});
console
.
info
(
TAG
+
"
off dataChange success
"
);
expect
(
rdbStore
).
assertEqual
(
rdbStore
);
try
{
rdbStore
.
off
(
"
dataChange
"
,
dataRdb
.
SubscribeType
.
SUBSCRIBE_TYPE_REMOTE
,
storeObserver
);
console
.
info
(
TAG
+
"
off dataChange success
"
);
}
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
浏览文件 @
8beb5e2b
...
...
@@ -168,16 +168,20 @@ describe('rdbEncryptTest', function () {
* @tc.number SUB_DDM_RDB_JS_RdbEncryptTest_0040
* @tc.desc RDB Encrypt function test
*/
it
(
'
RdbEncryptTest_0040
'
,
0
,
async
function
(
done
)
{
it
(
'
RdbEncryptTest_0040
'
,
0
,
async
function
(
done
)
{
console
.
info
(
TAG
+
"
************* RdbEncryptTest_0040 start *************
"
)
context
=
ability_featureAbility
.
getContext
()
rdbStore
=
await
CreatRdbStore
(
context
,
STORE_CONFIG_ENCRYPT
)
rdbStore
=
null
rdbStore
=
await
CreatRdbStore
(
context
,
STORE_CONFIG_WRONG
)
expect
(
rdbStore
).
assertNull
done
()
console
.
info
(
TAG
+
"
************* RdbEncryptTest_0040 end *************
"
)
try
{
rdbStore
=
await
CreatRdbStore
(
context
,
STORE_CONFIG_WRONG
)
expect
(
rdbStore
!==
null
).
assertFalse
()
}
catch
(
err
)
{
console
.
info
(
TAG
+
`catch err: `
+
err
)
expect
(
rdbStore
).
assertEqual
(
null
)
done
()
console
.
info
(
TAG
+
"
************* RdbEncryptTest_0040 end *************
"
)
}
})
console
.
info
(
TAG
+
"
*************Unit Test End*************
"
)
}
...
...
distributeddatamgr/relationalStoretest/relationalStoreJstest/hap/src/main/js/test/RelationalStoreDistributedJsunit.test.js
浏览文件 @
8beb5e2b
...
...
@@ -64,6 +64,11 @@ try {
}
}
function
storeObserver
(
devices
)
{
console
.
info
(
TAG
+
devices
+
"
dataChange
"
);
expect
(
devices
).
assertEqual
(
null
)
}
export
default
function
relationalStoreDistributedTest
()
{
describe
(
'
relationalStoreDistributedTest
'
,
function
()
{
beforeAll
(
async
function
()
{
...
...
@@ -343,13 +348,15 @@ describe('relationalStoreDistributedTest', function () {
* @tc.number SUB_DDM_AppDataFWK_JSRelationalStore_Distributed_012
* @tc.desc subscribe test
*/
it
(
'
testRdbStoreDistributed0012
'
,
0
,
async
function
(
done
)
{
it
(
'
testRdbStoreDistributed0012
'
,
0
,
async
function
(
done
)
{
console
.
info
(
TAG
+
"
************* testRdbStoreDistributed0012 start *************
"
);
rdbStore
.
on
(
"
dataChange
"
,
(
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
"
);
}
catch
(
err
){
console
.
info
(
TAG
+
"
on dataChange
"
+
err
);
expect
(
err
!==
null
).
assertFalse
();
}
done
()
console
.
info
(
TAG
+
"
************* testRdbStoreDistributed0012 end *************
"
);
})
...
...
@@ -359,13 +366,15 @@ 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
"
,
(
device
)
=>
{
console
.
info
(
TAG
+
device
+
"
dataChange
"
);
});
console
.
info
(
TAG
+
"
off dataChange success
"
);
expect
(
rdbStore
).
assertEqual
(
rdbStore
);
try
{
rdbStore
.
off
(
"
dataChange
"
,
data_Rdb
.
SubscribeType
.
SUBSCRIBE_TYPE_REMOTE
,
storeObserver
);
console
.
info
(
TAG
+
"
off dataChange success
"
);
}
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
浏览文件 @
8beb5e2b
...
...
@@ -171,16 +171,20 @@ describe('relationalStoreEncryptTest', function () {
* @tc.number SUB_DDM_RelationalStore_JS_RdbEncryptTest_0040
* @tc.desc RelationalStore Encrypt function test
*/
it
(
'
RdbEncryptTest_0040
'
,
0
,
async
function
(
done
)
{
it
(
'
RdbEncryptTest_0040
'
,
0
,
async
function
(
done
)
{
console
.
info
(
TAG
+
"
************* RdbEncryptTest_0040 start *************
"
)
context
=
ability_featureAbility
.
getContext
()
rdbStore
=
await
CreatRdbStore
(
context
,
STORE_CONFIG_ENCRYPT
)
rdbStore
=
null
rdbStore
=
await
CreatRdbStore
(
context
,
STORE_CONFIG_WRONG
)
expect
(
rdbStore
).
assertNull
done
()
console
.
info
(
TAG
+
"
************* RdbEncryptTest_0040 end *************
"
)
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
).
assertEqual
(
14800000
);
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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录