Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
cdaacd3f
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看板
提交
cdaacd3f
编写于
6月 07, 2022
作者:
G
gaoxi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
hmos xts update
Signed-off-by:
N
gaoxi
<
gaoxi785@huawei.com
>
上级
807ddc4d
变更
19
展开全部
显示空白变更内容
内联
并排
Showing
19 changed file
with
1212 addition
and
8 deletion
+1212
-8
account/appaccount/actsaccountpressure/BUILD.gn
account/appaccount/actsaccountpressure/BUILD.gn
+31
-0
account/appaccount/actsaccountpressure/Test.json
account/appaccount/actsaccountpressure/Test.json
+19
-0
account/appaccount/actsaccountpressure/entry/src/main/config.json
...appaccount/actsaccountpressure/entry/src/main/config.json
+107
-0
account/appaccount/actsaccountpressure/entry/src/main/js/default/app.js
...ount/actsaccountpressure/entry/src/main/js/default/app.js
+22
-0
account/appaccount/actsaccountpressure/entry/src/main/js/default/i18n/en-US.json
...accountpressure/entry/src/main/js/default/i18n/en-US.json
+6
-0
account/appaccount/actsaccountpressure/entry/src/main/js/default/i18n/zh-CN.json
...accountpressure/entry/src/main/js/default/i18n/zh-CN.json
+6
-0
account/appaccount/actsaccountpressure/entry/src/main/js/default/pages/index/index.css
...tpressure/entry/src/main/js/default/pages/index/index.css
+9
-0
account/appaccount/actsaccountpressure/entry/src/main/js/default/pages/index/index.hml
...tpressure/entry/src/main/js/default/pages/index/index.hml
+5
-0
account/appaccount/actsaccountpressure/entry/src/main/js/default/pages/index/index.js
...ntpressure/entry/src/main/js/default/pages/index/index.js
+46
-0
account/appaccount/actsaccountpressure/entry/src/main/js/resources/base/element/string.json
...sure/entry/src/main/js/resources/base/element/string.json
+12
-0
account/appaccount/actsaccountpressure/entry/src/main/js/resources/base/media/icon.png
...tpressure/entry/src/main/js/resources/base/media/icon.png
+0
-0
account/appaccount/actsaccountpressure/entry/src/main/js/test/List.test.js
...t/actsaccountpressure/entry/src/main/js/test/List.test.js
+15
-0
account/appaccount/actsaccountpressure/entry/src/main/js/test/Pressure.test.js
...tsaccountpressure/entry/src/main/js/test/Pressure.test.js
+786
-0
account/appaccount/actsaccountpressure/signature/openharmony_sx.p7b
...paccount/actsaccountpressure/signature/openharmony_sx.p7b
+0
-0
account/appaccount/actsaccounttest/entry/src/main/js/test/AddAccount.test.js
...actsaccounttest/entry/src/main/js/test/AddAccount.test.js
+2
-0
account/appaccount/actsaccounttest/entry/src/main/js/test/AppAccess.test.js
.../actsaccounttest/entry/src/main/js/test/AppAccess.test.js
+16
-2
account/appaccount/actsaccounttest/entry/src/main/js/test/AssociatedData.test.js
...accounttest/entry/src/main/js/test/AssociatedData.test.js
+5
-5
account/appaccount/actsgetallaccounts/entry/src/main/js/test/Getallaccounts.test.js
...allaccounts/entry/src/main/js/test/Getallaccounts.test.js
+60
-0
account/appaccount/getallaccessibleaccounts/actsgetallaccessibleaccounts/entry/src/main/js/test/Getallaccessible.test.js
...eaccounts/entry/src/main/js/test/Getallaccessible.test.js
+65
-1
未找到文件。
account/appaccount/actsaccountpressure/BUILD.gn
0 → 100644
浏览文件 @
cdaacd3f
# Copyright (c) 2021 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("ActsAccountPressure") {
hap_profile = "./entry/src/main/config.json"
deps = [
":hjs_demo_js_assets",
":hjs_demo_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsAccountPressure"
}
ohos_js_assets("hjs_demo_js_assets") {
source_dir = "./entry/src/main/js/default"
}
ohos_resources("hjs_demo_resources") {
sources = [ "./entry/src/main/js/resources" ]
hap_profile = "./entry/src/main/config.json"
}
account/appaccount/actsaccountpressure/Test.json
0 → 100644
浏览文件 @
cdaacd3f
{
"description"
:
"Configuration for hjunit demo Tests"
,
"driver"
:
{
"type"
:
"JSUnitTest"
,
"test-timeout"
:
"1500000"
,
"package"
:
"com.example.actsaccountpressure"
,
"shell-timeout"
:
"60000"
},
"kits"
:
[
{
"test-file-name"
:
[
"ActsAccountPressure.hap"
,
"ActsAccountSceneAppAccess.hap"
],
"type"
:
"AppInstallKit"
,
"cleanup-apps"
:
true
}
]
}
account/appaccount/actsaccountpressure/entry/src/main/config.json
0 → 100644
浏览文件 @
cdaacd3f
{
"app"
:
{
"bundleName"
:
"com.example.actsaccountpressure"
,
"vendor"
:
"example"
,
"version"
:
{
"code"
:
1
,
"name"
:
"1.0"
},
"apiVersion"
:
{
"compatible"
:
4
,
"target"
:
5
,
"releaseType"
:
"Beta1"
}
},
"deviceConfig"
:
{},
"module"
:
{
"package"
:
"com.example.actsaccountpressure"
,
"name"
:
".MyApplication"
,
"deviceType"
:
[
"phone"
],
"distro"
:
{
"deliveryWithInstall"
:
true
,
"moduleName"
:
"entry"
,
"moduleType"
:
"entry"
},
"defPermissions"
:
[
{
"availableScope"
:
[],
"grantMode"
:
"system_grant"
,
"name"
:
"ohos.permission.GET_ALL_APP_ACCOUNTS"
},
{
"availableScope"
:
[],
"grantMode"
:
"user_grant"
,
"name"
:
"ohos.permission.DISTRIBUTED_DATASYNC"
}
],
"reqPermissions"
:
[
{
"name"
:
"ohos.permission.GRANT_SENSITIVE_PERMISSIONS"
,
"reason"
:
"ceshi"
},
{
"name"
:
"ohos.permission.GET_ALL_APP_ACCOUNTS"
,
"reason"
:
"ceshi"
},
{
"name"
:
"ohos.permission.DISTRIBUTED_DATASYNC"
,
"reason"
:
"ceshi"
},
{
"name"
:
"ohos.permission.GET_BUNDLE_INFO_PRIVILEGED"
,
"reason"
:
"need use ohos.permission.GET_BUNDLE_INFO_PRIVILEGED"
},
{
"name"
:
"ohos.permission.GET_BUNDLE_INFO"
,
"reason"
:
"need use ohos.permission.GET_BUNDLE_INFO"
},
{
"name"
:
"ohos.permission.CHANGE_ABILITY_ENABLED_STATE"
,
"reason"
:
"need use ohos.permission.CHANGE_ABILITY_ENABLED_STATE"
},
{
"name"
:
"ohos.permission.REMOVE_CACHE_FILES"
,
"reason"
:
"need use ohos.permission.REMOVE_CACHE_FILES"
},
{
"name"
:
"ohos.permission.LISTEN_BUNDLE_CHANGE"
,
"reason"
:
"need use ohos.permission.LISTEN_BUNDLE_CHANGE"
}
],
"abilities"
:
[
{
"skills"
:
[
{
"entities"
:
[
"entity.system.home"
],
"actions"
:
[
"action.system.home"
]
}
],
"name"
:
"com.example.actsaccountpressure.MainAbility"
,
"icon"
:
"$media:icon"
,
"description"
:
"$string:mainability_description"
,
"label"
:
"$string:app_name"
,
"type"
:
"page"
,
"visible"
:
true
,
"launchType"
:
"standard"
}
],
"js"
:
[
{
"pages"
:
[
"pages/index/index"
],
"name"
:
"default"
,
"window"
:
{
"designWidth"
:
720
,
"autoDesignWidth"
:
false
}
}
]
}
}
\ No newline at end of file
account/appaccount/actsaccountpressure/entry/src/main/js/default/app.js
0 → 100644
浏览文件 @
cdaacd3f
/*
* Copyright (c) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export
default
{
onCreate
()
{
console
.
info
(
'
AceApplication onCreate
'
);
},
onDestroy
()
{
console
.
info
(
'
AceApplication onDestroy
'
);
}
};
account/appaccount/actsaccountpressure/entry/src/main/js/default/i18n/en-US.json
0 → 100644
浏览文件 @
cdaacd3f
{
"strings"
:
{
"hello"
:
"Hello"
,
"world"
:
"World"
}
}
\ No newline at end of file
account/appaccount/actsaccountpressure/entry/src/main/js/default/i18n/zh-CN.json
0 → 100644
浏览文件 @
cdaacd3f
{
"strings"
:
{
"hello"
:
"您好"
,
"world"
:
"世界"
}
}
\ No newline at end of file
account/appaccount/actsaccountpressure/entry/src/main/js/default/pages/index/index.css
0 → 100644
浏览文件 @
cdaacd3f
.container
{
flex-direction
:
column
;
justify-content
:
center
;
align-items
:
center
;
}
.title
{
font-size
:
100px
;
}
account/appaccount/actsaccountpressure/entry/src/main/js/default/pages/index/index.hml
0 → 100644
浏览文件 @
cdaacd3f
<div class="container">
<text class="title">
{{title}}
</text>
</div>
account/appaccount/actsaccountpressure/entry/src/main/js/default/pages/index/index.js
0 → 100644
浏览文件 @
cdaacd3f
/*
* Copyright (c) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import
file
from
'
@system.file
'
import
{
Core
,
ExpectExtend
}
from
'
deccjsunit/index
'
const
injectRef
=
Object
.
getPrototypeOf
(
global
)
||
global
injectRef
.
regeneratorRuntime
=
require
(
'
@babel/runtime/regenerator
'
)
export
default
{
data
:
{
title
:
"
account pressure test
"
},
onInit
()
{
this
.
title
=
"
account pressure test
"
;
},
onShow
()
{
console
.
info
(
'
onShow finish
'
)
const
core
=
Core
.
getInstance
()
const
expectExtend
=
new
ExpectExtend
({
'
id
'
:
'
extend
'
})
core
.
addService
(
'
expect
'
,
expectExtend
)
core
.
init
()
const
configService
=
core
.
getDefaultService
(
'
config
'
)
this
.
timeout
=
180000
;
configService
.
setConfig
(
this
)
require
(
'
../../../test/List.test
'
)
core
.
execute
()
},
onReady
()
{
},
}
\ No newline at end of file
account/appaccount/actsaccountpressure/entry/src/main/js/resources/base/element/string.json
0 → 100644
浏览文件 @
cdaacd3f
{
"string"
:
[
{
"name"
:
"app_name"
,
"value"
:
"ActsAccountPressure"
},
{
"name"
:
"mainability_description"
,
"value"
:
"JS_Phone_Empty Feature Ability"
}
]
}
\ No newline at end of file
account/appaccount/actsaccountpressure/entry/src/main/js/resources/base/media/icon.png
0 → 100644
浏览文件 @
cdaacd3f
6.6 KB
account/appaccount/actsaccountpressure/entry/src/main/js/test/List.test.js
0 → 100644
浏览文件 @
cdaacd3f
/*
* Copyright (c) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
require
(
'
./Pressure.test.js
'
)
\ No newline at end of file
account/appaccount/actsaccountpressure/entry/src/main/js/test/Pressure.test.js
0 → 100644
浏览文件 @
cdaacd3f
此差异已折叠。
点击以展开。
account/appaccount/actsaccountpressure/signature/openharmony_sx.p7b
0 → 100644
浏览文件 @
cdaacd3f
文件已添加
account/appaccount/actsaccounttest/entry/src/main/js/test/AddAccount.test.js
浏览文件 @
cdaacd3f
...
...
@@ -191,6 +191,8 @@ describe('ActsAccountAddAccount', function () {
var
appAccountManager
=
account
.
createAppAccountManager
();
try
{
await
appAccountManager
.
addAccount
(
limitAccountName
,
"
account_extraInfo_promise_fourth
"
);
expect
().
assertFail
();
done
();
}
catch
(
err
){
console
.
debug
(
"
====>add account ActsAccountAddAccount_0800 err:
"
+
JSON
.
stringify
(
err
));
...
...
account/appaccount/actsaccounttest/entry/src/main/js/test/AppAccess.test.js
浏览文件 @
cdaacd3f
...
...
@@ -226,7 +226,14 @@ describe('ActsAccountAppAccess', function () {
console
.
debug
(
"
====>creat finish====
"
);
var
enableBundle
=
"
com.example.actsaccountsceneappaccess
"
;
console
.
debug
(
"
====>add account ActsAccountAppAccess_0800 start====
"
);
try
{
await
appAccountManager
.
addAccount
(
"
AppAccess_promise_account
"
);
}
catch
(
err
){
console
.
error
(
"
====>addAccount ActsAccountAppAccess_0800 fail err:
"
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
console
.
debug
(
"
====>enableAppAccess ActsAccountAppAccess_0800 start====
"
);
try
{
await
appAccountManager
.
enableAppAccess
(
"
AppAccess_promise_account
"
,
enableBundle
);
...
...
@@ -438,7 +445,14 @@ describe('ActsAccountAppAccess', function () {
console
.
debug
(
"
====>creat finish====
"
);
var
enableBundle
=
"
com.example.actsaccountsceneappaccess
"
;
console
.
debug
(
"
====>add account ActsAccountAppAccess_1600 start====
"
);
try
{
await
appAccountManager
.
addAccount
(
"
AppAccess_promise_account
"
);
}
catch
(
err
){
console
.
error
(
"
====>addAccount ActsAccountAppAccess_1600 fail err:
"
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
console
.
debug
(
"
====>disableAppAccess ActsAccountAppAccess_1600 start====
"
);
try
{
await
appAccountManager
.
disableAppAccess
(
"
AppAccess_promise_account
"
,
enableBundle
);
...
...
account/appaccount/actsaccounttest/entry/src/main/js/test/AssociatedData.test.js
浏览文件 @
cdaacd3f
...
...
@@ -89,7 +89,7 @@ describe('ActsAccountAssociatedData', function () {
}
catch
(
err
){
console
.
error
(
"
====>add Account ActsAccountAssociatedData_0200 err:
"
+
JSON
.
stringify
(
err
));
expect
().
asserFail
();
expect
().
asser
t
Fail
();
done
();
}
console
.
debug
(
"
====>setAssociatedData ActsAccountAssociatedData_0200 start====
"
);
...
...
@@ -98,7 +98,7 @@ describe('ActsAccountAssociatedData', function () {
}
catch
(
err
){
console
.
error
(
"
====>setAssociatedData ActsAccountAssociatedData_0200 err:
"
+
JSON
.
stringify
(
err
));
expect
().
asserFail
();
expect
().
asser
t
Fail
();
done
();
}
console
.
debug
(
"
====>getAssociatedData ActsAccountAssociatedData_0200 start====
"
);
...
...
@@ -107,7 +107,7 @@ describe('ActsAccountAssociatedData', function () {
}
catch
(
err
){
console
.
error
(
"
====>getAssociatedData ActsAccountAssociatedData_0200 err:
"
+
JSON
.
stringify
(
err
));
expect
().
asserFail
();
expect
().
asser
t
Fail
();
done
();
}
console
.
debug
(
"
====>getAssociatedData ActsAccountAssociatedData_0200 data:
"
+
JSON
.
stringify
(
data
));
...
...
@@ -167,7 +167,7 @@ describe('ActsAccountAssociatedData', function () {
}
catch
(
err
){
console
.
error
(
"
====>add Account ActsAccountAssociatedData_0400 err:
"
+
JSON
.
stringify
(
err
));
expect
().
asserFail
();
expect
().
asser
t
Fail
();
done
();
}
try
{
...
...
@@ -240,7 +240,7 @@ describe('ActsAccountAssociatedData', function () {
}
catch
(
err
){
console
.
error
(
"
====>add Account ActsAccountAssociatedData_0600 fail err:
"
+
JSON
.
stringify
(
err
));
expect
().
asserFail
();
expect
().
asser
t
Fail
();
done
();
}
await
appAccountManager
.
setAssociatedData
(
"
account_name_0600
"
,
"
key6
"
,
"
value6
"
);
...
...
account/appaccount/actsgetallaccounts/entry/src/main/js/test/Getallaccounts.test.js
浏览文件 @
cdaacd3f
...
...
@@ -65,7 +65,22 @@ describe('ActsGetAllAccounts', function () {
console
.
debug
(
"
====>ActsGetAllAccounts_0200 start====
"
);
var
appAccountManager
=
account
.
createAppAccountManager
();
console
.
debug
(
"
====>creat finish====
"
);
console
.
debug
(
"
====>getAllAccounts for clean====
"
);
var
selfBundle
=
"
com.example.actsgetallaaccounts
"
;
try
{
var
acclist
=
await
appAccountManager
.
getAllAccounts
(
selfBundle
);
}
catch
(
err
){
console
.
error
(
"
====>getAllAccounts err:
"
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
console
.
debug
(
"
====>account list length:
"
+
acclist
.
length
);
if
(
acclist
.
length
>
0
){
for
(
var
i
=
0
;
i
<
acclist
.
length
;
i
++
){
await
appAccountManager
.
deleteAccount
(
acclist
[
i
].
name
);
}
}
console
.
debug
(
"
====>add account 0200 start====
"
);
await
appAccountManager
.
addAccount
(
"
Account_this_application_promise
"
);
console
.
debug
(
"
====>getAllAccounts 0200 start====
"
);
...
...
@@ -123,7 +138,22 @@ describe('ActsGetAllAccounts', function () {
console
.
debug
(
"
====>ActsGetAllAccounts_0400 start====
"
);
var
appAccountManager
=
account
.
createAppAccountManager
();
console
.
debug
(
"
====>creat finish====
"
);
console
.
debug
(
"
====>getAllAccounts for clean====
"
);
var
selfBundle
=
"
com.example.actsgetallaaccounts
"
;
try
{
var
acclist
=
await
appAccountManager
.
getAllAccounts
(
selfBundle
);
}
catch
(
err
){
console
.
error
(
"
====>getAllAccounts err:
"
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
console
.
debug
(
"
====>account list length:
"
+
acclist
.
length
);
if
(
acclist
.
length
>
0
){
for
(
var
i
=
0
;
i
<
acclist
.
length
;
i
++
){
await
appAccountManager
.
deleteAccount
(
acclist
[
i
].
name
);
}
}
var
data
=
await
appAccountManager
.
getAllAccounts
(
selfBundle
);
console
.
debug
(
"
====>getAllAccounts 0400 data:
"
+
JSON
.
stringify
(
data
));
expect
(
data
.
length
).
assertEqual
(
0
);
...
...
@@ -481,7 +511,22 @@ describe('ActsGetAllAccounts', function () {
console
.
debug
(
"
====>ActsGetAllAccounts_1600 start====
"
);
var
appAccountManager
=
account
.
createAppAccountManager
();
console
.
debug
(
"
====>creat finish====
"
);
console
.
debug
(
"
====>getAllAccounts for clean====
"
);
var
selfBundle
=
"
com.example.actsgetallaaccounts
"
;
try
{
var
acclist
=
await
appAccountManager
.
getAllAccounts
(
selfBundle
);
}
catch
(
err
){
console
.
error
(
"
====>getAllAccounts err:
"
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
console
.
debug
(
"
====>account list length:
"
+
acclist
.
length
);
if
(
acclist
.
length
>
0
){
for
(
var
i
=
0
;
i
<
acclist
.
length
;
i
++
){
await
appAccountManager
.
deleteAccount
(
acclist
[
i
].
name
);
}
}
console
.
debug
(
"
====>add account 1600 start====
"
);
await
appAccountManager
.
addAccount
(
"
account_promise_delete
"
);
console
.
debug
(
"
====>first getAllAccounts 1600 start====
"
);
...
...
@@ -557,7 +602,22 @@ describe('ActsGetAllAccounts', function () {
console
.
debug
(
"
====>ActsGetAllAccounts_1800 start====
"
);
var
appAccountManager
=
account
.
createAppAccountManager
();
console
.
debug
(
"
====>creat finish====
"
);
console
.
debug
(
"
====>getAllAccounts for clean====
"
);
var
selfBundle
=
"
com.example.actsgetallaaccounts
"
;
try
{
var
acclist
=
await
appAccountManager
.
getAllAccounts
(
selfBundle
);
}
catch
(
err
){
console
.
error
(
"
====>getAllAccounts err:
"
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
console
.
debug
(
"
====>account list length:
"
+
acclist
.
length
);
if
(
acclist
.
length
>
0
){
for
(
var
i
=
0
;
i
<
acclist
.
length
;
i
++
){
await
appAccountManager
.
deleteAccount
(
acclist
[
i
].
name
);
}
}
console
.
debug
(
"
====>add account 1800 start====
"
);
await
appAccountManager
.
addAccount
(
"
account_promise_additional
"
,
"
account_extrainfo
"
);
console
.
debug
(
"
====>first getAllAccounts 1800 start====
"
);
...
...
account/appaccount/getallaccessibleaccounts/actsgetallaccessibleaccounts/entry/src/main/js/test/Getallaccessible.test.js
浏览文件 @
cdaacd3f
...
...
@@ -112,6 +112,22 @@ describe('ActsGetAllAccessibleAccounts', function () {
console
.
debug
(
"
====>ActsGetAllAccessibleAccounts_0400 start====
"
);
var
appAccountManager
=
account
.
createAppAccountManager
();
console
.
debug
(
"
====>creat finish====
"
);
var
selfBundle
=
"
com.example.actsgetallaccessibleaccounts
"
;
console
.
debug
(
"
====>getAllAccounts for clean====
"
);
try
{
var
acclist
=
await
appAccountManager
.
getAllAccounts
(
selfBundle
);
}
catch
(
err
){
console
.
error
(
"
====>getAllAccounts err:
"
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
console
.
debug
(
"
====>account list length:
"
+
acclist
.
length
);
if
(
acclist
.
length
>
0
){
for
(
var
i
=
0
;
i
<
acclist
.
length
;
i
++
){
await
appAccountManager
.
deleteAccount
(
acclist
[
i
].
name
);
}
}
console
.
debug
(
"
====>add account ActsGetAllAccessibleAccounts_0400 start====
"
);
await
appAccountManager
.
addAccount
(
"
accessibleAccount_promise_single
"
);
console
.
debug
(
"
====>getAllAccessibleAccounts 0400 start====
"
);
...
...
@@ -205,6 +221,22 @@ describe('ActsGetAllAccessibleAccounts', function () {
console
.
debug
(
"
====>ActsGetAllAccessibleAccounts_0600 start====
"
);
var
appAccountManager
=
account
.
createAppAccountManager
();
console
.
debug
(
"
====>creat finish====
"
);
console
.
debug
(
"
====>getAllAccounts for clean====
"
);
var
selfBundle
=
"
com.example.actsgetallaccessibleaccounts
"
;
try
{
var
acclist
=
await
appAccountManager
.
getAllAccounts
(
selfBundle
);
}
catch
(
err
){
console
.
error
(
"
====>getAllAccounts err:
"
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
console
.
debug
(
"
====>account list length:
"
+
acclist
.
length
);
if
(
acclist
.
length
>
0
){
for
(
var
i
=
0
;
i
<
acclist
.
length
;
i
++
){
await
appAccountManager
.
deleteAccount
(
acclist
[
i
].
name
);
}
}
console
.
debug
(
"
====>add first account 0600 start====
"
);
await
appAccountManager
.
addAccount
(
"
accessibleAccount_promise_first
"
);
console
.
debug
(
"
====>add second account 0600 start====
"
);
...
...
@@ -310,6 +342,22 @@ describe('ActsGetAllAccessibleAccounts', function () {
console
.
debug
(
"
====>ActsGetAllAccessibleAccounts_0800 start====
"
);
var
appAccountManager
=
account
.
createAppAccountManager
();
console
.
debug
(
"
====>creat finish====
"
);
console
.
debug
(
"
====>getAllAccounts for clean====
"
);
var
selfBundle
=
"
com.example.actsgetallaccessibleaccounts
"
;
try
{
var
acclist
=
await
appAccountManager
.
getAllAccounts
(
selfBundle
);
}
catch
(
err
){
console
.
error
(
"
====>getAllAccounts err:
"
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
console
.
debug
(
"
====>account list length:
"
+
acclist
.
length
);
if
(
acclist
.
length
>
0
){
for
(
var
i
=
0
;
i
<
acclist
.
length
;
i
++
){
await
appAccountManager
.
deleteAccount
(
acclist
[
i
].
name
);
}
}
console
.
debug
(
"
====>add first account 0800 start====
"
);
await
appAccountManager
.
addAccount
(
"
accessibleAccount_promise_first
"
);
console
.
debug
(
"
====>add second account 0800 start====
"
);
...
...
@@ -423,6 +471,22 @@ describe('ActsGetAllAccessibleAccounts', function () {
console
.
debug
(
"
====>ActsGetAllAccessibleAccounts_1000 start====
"
);
var
appAccountManager
=
account
.
createAppAccountManager
();
console
.
debug
(
"
====>creat finish====
"
);
console
.
debug
(
"
====>getAllAccounts for clean====
"
);
var
selfBundle
=
"
com.example.actsgetallaccessibleaccounts
"
;
try
{
var
acclist
=
await
appAccountManager
.
getAllAccounts
(
selfBundle
);
}
catch
(
err
){
console
.
error
(
"
====>getAllAccounts err:
"
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
console
.
debug
(
"
====>account list length:
"
+
acclist
.
length
);
if
(
acclist
.
length
>
0
){
for
(
var
i
=
0
;
i
<
acclist
.
length
;
i
++
){
await
appAccountManager
.
deleteAccount
(
acclist
[
i
].
name
);
}
}
console
.
debug
(
"
====>add first account 1000 start====
"
);
await
appAccountManager
.
addAccount
(
"
accessibleAccount_promise_multiple_first
"
);
console
.
debug
(
"
====>add second account 1000 start====
"
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录