Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
21116423
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看板
提交
21116423
编写于
8月 25, 2023
作者:
L
lixinyi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
xts_acts_dstributeddatemgr1
Signed-off-by:
N
lixinyi
<
lixinyi38@huawei.com
>
上级
d1c261ed
变更
4
展开全部
隐藏空白更改
内联
并排
Showing
4 changed file
with
1368 addition
and
1351 deletion
+1368
-1351
distributeddatamgr/distributedKVStoretest/distributedKVStorejstest/hap/src/main/js/test/KvStoreBackupCallbackJsTest.js
...stest/hap/src/main/js/test/KvStoreBackupCallbackJsTest.js
+638
-634
distributeddatamgr/distributedKVStoretest/distributedKVStorejstest/hap/src/main/js/test/KvStoreBackupPromiseJsTest.js
...jstest/hap/src/main/js/test/KvStoreBackupPromiseJsTest.js
+624
-618
distributeddatamgr/preferencesjstest/hap/src/main/js/test/StoragePromiseJsunit.test.js
...sjstest/hap/src/main/js/test/StoragePromiseJsunit.test.js
+2
-2
distributeddatamgr/relationalStoretest/relationalStoreJstest/hap/src/main/js/test/RelationalStoreQuery.test.js
...eJstest/hap/src/main/js/test/RelationalStoreQuery.test.js
+104
-97
未找到文件。
distributeddatamgr/distributedKVStoretest/distributedKVStorejstest/hap/src/main/js/test/KvStoreBackupCallbackJsTest.js
浏览文件 @
21116423
此差异已折叠。
点击以展开。
distributeddatamgr/distributedKVStoretest/distributedKVStorejstest/hap/src/main/js/test/KvStoreBackupPromiseJsTest.js
浏览文件 @
21116423
此差异已折叠。
点击以展开。
distributeddatamgr/preferencesjstest/hap/src/main/js/test/StoragePromiseJsunit.test.js
浏览文件 @
21116423
...
...
@@ -26,8 +26,8 @@ const MAX_VALUE_LENGTH = 'y'.repeat(8192)
var
mPref
;
export
default
function
storagePromiseTest
()
{
describe
(
'
storagePromiseTest
'
,
function
(
done
)
{
beforeAll
(
async
function
()
{
describe
(
'
storagePromiseTest
'
,
function
()
{
beforeAll
(
async
function
(
done
)
{
console
.
info
(
'
beforeAll
'
)
const
promise
=
storage
.
getStorage
(
PATH
);
promise
.
then
((
Storage
)
=>
{
...
...
distributeddatamgr/relationalStoretest/relationalStoreJstest/hap/src/main/js/test/RelationalStoreQuery.test.js
浏览文件 @
21116423
...
...
@@ -19,7 +19,7 @@ import ability_featureAbility from '@ohos.ability.featureAbility';
const
TAG
=
"
[RelationalStore_JSKITS_TEST]
"
const
CREATE_TABLE_TEST
=
"
CREATE TABLE IF NOT EXISTS test (
"
+
"
id INTEGER PRIMARY KEY AUTOINCREMENT,
"
+
"
name TEXT NOT NULL,
"
+
"
age INTEGER,
"
+
"
salary REAL,
"
+
"
blobType BLOB)
"
+
"
name TEXT NOT NULL,
"
+
"
age INTEGER,
"
+
"
salary REAL,
"
+
"
blobType BLOB)
"
const
STORE_CONFIG
=
{
name
:
"
Query.db
"
,
securityLevel
:
data_Rdb
.
SecurityLevel
.
S1
...
...
@@ -64,11 +64,11 @@ async function CreatRdbStore(context, STORE_CONFIG) {
}
await
RdbStore
.
insert
(
"
test
"
,
valueBucket
)
}
return
RdbStore
}
async
function
getLocalDeviceId
(){
}
export
default
function
relationalStoreQueryTest
(){
describe
(
"
relationalStoreQueryTest
"
,
function
()
{
...
...
@@ -81,7 +81,7 @@ export default function relationalStoreQueryTest(){
context
:
context
}
}
const
options
=
{
createIfMissing
:
true
,
encrypt
:
false
,
...
...
@@ -91,44 +91,44 @@ export default function relationalStoreQueryTest(){
schema
:
''
,
securityLevel
:
factory
.
SecurityLevel
.
S2
,
}
console
.
info
(
'
getLocalDeviceId config:
'
+
JSON
.
stringify
(
config
));
await
factory
.
createKVManager
(
config
).
then
((
manager
)
=>
{
kvManager
=
manager
;
console
.
info
(
'
getLocalDeviceId createKVManager success
'
);
}).
catch
((
err
)
=>
{
console
.
info
(
'
getLocalDeviceId createKVManager err
'
+
err
);
});
await
kvManager
.
getKVStore
(
TEST_STORE_ID
,
options
).
then
((
store
)
=>
{
kvStore
=
store
;
console
.
info
(
'
getLocalDeviceId getKVStore for getDeviceId success
'
);
}).
catch
((
err
)
=>
{
console
.
info
(
'
getLocalDeviceId getKVStore err
'
+
err
);
});
var
getDeviceId
=
new
Promise
((
resolve
,
reject
)
=>
{
kvStore
.
on
(
'
dataChange
'
,
0
,
function
(
data
)
{
console
.
info
(
'
getLocalDeviceId on data change:
'
+
JSON
.
stringify
(
data
));
resolve
(
data
.
deviceId
);
});
kvStore
.
put
(
"
getDeviceId
"
,
"
byPut
"
).
then
((
data
)
=>
{
console
.
info
(
'
getLocalDeviceId put success
'
);
expect
(
data
==
undefined
).
assertTrue
();
});
setTimeout
(()
=>
{
reject
(
new
Error
(
'
not resolved in 2 second, reject it.
'
))
},
2000
);
await
factory
.
createKVManager
(
config
).
then
((
manager
)
=>
{
kvManager
=
manager
;
console
.
info
(
'
getLocalDeviceId createKVManager success
'
);
}).
catch
((
err
)
=>
{
console
.
info
(
'
getLocalDeviceId createKVManager err
'
+
err
);
});
await
kvManager
.
getKVStore
(
TEST_STORE_ID
,
options
).
then
((
store
)
=>
{
kvStore
=
store
;
console
.
info
(
'
getLocalDeviceId getKVStore for getDeviceId success
'
);
}).
catch
((
err
)
=>
{
console
.
info
(
'
getLocalDeviceId getKVStore err
'
+
err
);
});
var
getDeviceId
=
new
Promise
((
resolve
,
reject
)
=>
{
kvStore
.
on
(
'
dataChange
'
,
0
,
function
(
data
)
{
console
.
info
(
'
getLocalDeviceId on data change:
'
+
JSON
.
stringify
(
data
));
resolve
(
data
.
deviceId
);
});
await
getDeviceId
.
then
(
function
(
deviceId
)
{
console
.
info
(
'
getLocalDeviceId getDeviceId
'
+
JSON
.
stringify
(
deviceId
));
localDeviceId
=
deviceId
;
}).
catch
((
error
)
=>
{
console
.
info
(
'
getLocalDeviceId can NOT getDeviceId, fail:
'
+
error
);
expect
(
null
).
assertFail
();
kvStore
.
put
(
"
getDeviceId
"
,
"
byPut
"
).
then
((
data
)
=>
{
console
.
info
(
'
getLocalDeviceId put success
'
);
expect
(
data
==
undefined
).
assertTrue
();
});
await
kvManager
.
closeKVStore
(
TEST_BUNDLE_NAME
,
TEST_STORE_ID
,
kvStore
);
await
kvManager
.
deleteKVStore
(
TEST_BUNDLE_NAME
,
TEST_STORE_ID
);
kvStore
=
null
;
console
.
info
(
'
getLocalDeviceId end
'
);
setTimeout
(()
=>
{
reject
(
new
Error
(
'
not resolved in 2 second, reject it.
'
))
},
2000
);
});
await
getDeviceId
.
then
(
function
(
deviceId
)
{
console
.
info
(
'
getLocalDeviceId getDeviceId
'
+
JSON
.
stringify
(
deviceId
));
localDeviceId
=
deviceId
;
}).
catch
((
error
)
=>
{
console
.
info
(
'
getLocalDeviceId can NOT getDeviceId, fail:
'
+
error
);
expect
(
null
).
assertFail
();
});
await
kvManager
.
closeKVStore
(
TEST_BUNDLE_NAME
,
TEST_STORE_ID
,
kvStore
);
await
kvManager
.
deleteKVStore
(
TEST_BUNDLE_NAME
,
TEST_STORE_ID
);
kvStore
=
null
;
console
.
info
(
'
getLocalDeviceId end
'
);
getLocalDeviceId
()
console
.
info
(
TAG
+
'
beforeAll
'
)
done
();
...
...
@@ -136,7 +136,7 @@ export default function relationalStoreQueryTest(){
beforeEach
(
async
function
()
{
console
.
info
(
TAG
+
'
beforeEach
'
)
rdbStore
=
await
CreatRdbStore
(
context
,
STORE_CONFIG
)
})
...
...
@@ -150,31 +150,38 @@ export default function relationalStoreQueryTest(){
})
/**
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Promise_0010
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryPromiseTest0010
'
,
0
,
async
function
(
done
){
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Promise_0010
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryPromiseTest0010
'
,
0
,
async
function
(
done
){
console
.
info
(
TAG
+
"
RdbRemoteQueryPromiseTest0010 start
"
)
let
errInfo
=
undefined
let
predicates
=
new
data_Rdb
.
RdbPredicates
(
"
test
"
);
predicates
.
equalTo
(
"
name
"
,
"
zhangsan
"
)
try
{
rdbStore
.
remoteQuery
(
localDeviceId
,
"
test
"
,
predicates
,[
"
name
"
,
"
age
"
,
"
salary
"
])
await
rdbStore
.
remoteQuery
(
localDeviceId
,
"
test
"
,
predicates
,[
"
name
"
,
"
age
"
,
"
salary
"
]).
then
((
resultSet
)
=>
{
console
.
info
(
TAG
+
"
Remote query success
"
)
expect
().
assertFail
();
}).
catch
((
err
)
=>
{
console
.
info
(
TAG
+
"
Remote query error
"
+
err
)
expect
().
assertFail
();
})
}
catch
(
err
){
errInfo
=
err
console
.
info
(
TAG
+
"
RdbRemoteQueryPromiseTest0010 error:
"
+
err
)
expect
(
err
.
message
!==
null
).
assertTrue
();
done
();
}
expect
(
errInfo
.
code
).
assertEqual
(
"
401
"
)
done
();
console
.
info
(
TAG
+
"
RdbRemoteQueryPromiseTest0010 end
"
)
})
/**
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Promise_0020
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryPromiseTest0020
'
,
0
,
async
function
(
done
){
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Promise_0020
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryPromiseTest0020
'
,
0
,
async
function
(
done
){
console
.
info
(
TAG
+
"
RdbRemoteQueryPromiseTest0020 start
"
)
let
predicates
=
new
data_Rdb
.
RdbPredicates
(
"
test
"
);
predicates
.
equalTo
(
"
name
"
,
"
zhangsan
"
)
...
...
@@ -188,17 +195,17 @@ export default function relationalStoreQueryTest(){
}
catch
(
err
){
console
.
info
(
TAG
+
"
RdbRemoteQueryPromiseTest0020 error:
"
+
err
)
}
done
();
console
.
info
(
TAG
+
"
RdbRemoteQueryPromiseTest0020 end
"
)
})
/**
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Promise_0030
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryPromiseTest0030
'
,
0
,
async
function
(
done
){
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Promise_0030
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryPromiseTest0030
'
,
0
,
async
function
(
done
){
console
.
info
(
TAG
+
"
RdbRemoteQueryPromiseTest0030 start
"
)
let
predicates
=
new
data_Rdb
.
RdbPredicates
(
"
test
"
);
predicates
.
equalTo
(
"
name
"
,
"
zhangsan
"
)
...
...
@@ -212,17 +219,17 @@ export default function relationalStoreQueryTest(){
}
catch
(
err
){
console
.
info
(
TAG
+
"
RdbRemoteQueryPromiseTest0030 error:
"
+
err
)
}
done
();
console
.
info
(
TAG
+
"
RdbRemoteQueryPromiseTest0030 end
"
)
})
/**
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Promise_0040
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryPromiseTest0040
'
,
0
,
async
function
(
done
){
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Promise_0040
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryPromiseTest0040
'
,
0
,
async
function
(
done
){
console
.
info
(
TAG
+
"
RdbRemoteQueryPromiseTest0040 start
"
)
let
predicates
=
new
data_Rdb
.
RdbPredicates
(
"
test
"
);
predicates
.
equalTo
(
"
name
"
,
"
zhangsan
"
)
...
...
@@ -236,17 +243,17 @@ export default function relationalStoreQueryTest(){
}
catch
(
err
){
console
.
info
(
TAG
+
"
RdbRemoteQueryPromiseTest0040 error:
"
+
err
)
}
done
();
console
.
info
(
TAG
+
"
RdbRemoteQueryPromiseTest0040 end
"
)
})
/**
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Callback_0010
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryCallbackTest0010
'
,
0
,
async
function
(
done
){
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Callback_0010
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryCallbackTest0010
'
,
0
,
async
function
(
done
){
console
.
info
(
TAG
+
"
RdbRemoteQueryCallbackTest0010 start
"
)
let
predicates
=
new
data_Rdb
.
RdbPredicates
(
"
test
"
);
predicates
.
equalTo
(
"
name
"
,
"
zhangsan
"
)
...
...
@@ -256,23 +263,23 @@ export default function relationalStoreQueryTest(){
console
.
info
(
TAG
+
"
Remote query error
"
+
err
)
}
else
{
console
.
info
(
TAG
+
"
Remote query success
"
)
expect
(
false
).
assertTrue
();
expect
(
false
).
assertTrue
();
}
})
}
catch
(
err
){
console
.
info
(
TAG
+
"
RdbRemoteQueryCallbackTest0010 error:
"
+
err
)
}
done
();
console
.
info
(
TAG
+
"
RdbRemoteQueryCallbackTest0010 end
"
)
})
/**
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Callback_0020
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryCallbackTest0020
'
,
0
,
async
function
(
done
){
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Callback_0020
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryCallbackTest0020
'
,
0
,
async
function
(
done
){
console
.
info
(
TAG
+
"
RdbRemoteQueryCallbackTest0020 start
"
)
let
predicates
=
new
data_Rdb
.
RdbPredicates
(
"
test
"
);
predicates
.
equalTo
(
"
name
"
,
"
zhangsan
"
)
...
...
@@ -282,23 +289,23 @@ export default function relationalStoreQueryTest(){
console
.
info
(
TAG
+
"
Remote query error
"
+
err
)
}
else
{
console
.
info
(
TAG
+
"
Remote query success
"
)
expect
(
false
).
assertTrue
();
expect
(
false
).
assertTrue
();
}
})
}
catch
(
err
){
console
.
info
(
TAG
+
"
RdbRemoteQueryCallbackTest0020 error:
"
+
err
)
}
done
();
console
.
info
(
TAG
+
"
RdbRemoteQueryCallbackTest0020 end
"
)
})
/**
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Callback_0030
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryCallbackTest0030
'
,
0
,
async
function
(
done
){
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Callback_0030
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryCallbackTest0030
'
,
0
,
async
function
(
done
){
console
.
info
(
TAG
+
"
RdbRemoteQueryCallbackTest0020 start
"
)
let
predicates
=
new
data_Rdb
.
RdbPredicates
(
"
test
"
);
predicates
.
equalTo
(
"
name
"
,
"
zhangsan
"
)
...
...
@@ -308,23 +315,23 @@ export default function relationalStoreQueryTest(){
console
.
info
(
TAG
+
"
Remote query error
"
+
err
)
}
else
{
console
.
info
(
TAG
+
"
Remote query success
"
)
expect
(
false
).
assertTrue
();
expect
(
false
).
assertTrue
();
}
})
}
catch
(
err
){
console
.
info
(
TAG
+
"
RdbRemoteQueryCallbackTest0030 error:
"
+
err
)
}
done
();
console
.
info
(
TAG
+
"
RdbRemoteQueryCallbackTest0030 end
"
)
})
/**
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Callback_0040
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryCallbackTest0040
'
,
0
,
async
function
(
done
){
* @tc.name RelationalStore remotequery test
* @tc.number SUB_DDM_RelationalStore_JS_RemoteQueryTest_Callback_0040
* @tc.desc RelationalStore remotequery function test
*/
it
(
'
RdbRemoteQueryCallbackTest0040
'
,
0
,
async
function
(
done
){
console
.
info
(
TAG
+
"
RdbRemoteQueryCallbackTest0040 start
"
)
let
predicates
=
new
data_Rdb
.
RdbPredicates
(
"
test
"
);
predicates
.
equalTo
(
"
name
"
,
"
zhangsan
"
)
...
...
@@ -334,13 +341,13 @@ export default function relationalStoreQueryTest(){
console
.
info
(
TAG
+
"
Remote query error
"
+
err
)
}
else
{
console
.
info
(
TAG
+
"
Remote query success
"
)
expect
(
false
).
assertTrue
();
expect
(
false
).
assertTrue
();
}
})
}
catch
(
err
){
console
.
info
(
TAG
+
"
RdbRemoteQueryCallbackTest0040 error:
"
+
err
)
}
done
();
console
.
info
(
TAG
+
"
RdbRemoteQueryCallbackTest0040 end
"
)
})
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录