未验证 提交 0f9a2ac3 编写于 作者: O openharmony_ci 提交者: Gitee

!3470 hmos xts update

Merge pull request !3470 from 高曦/OpenHarmony-3.1-Release
# 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"
}
{
"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
}
]
}
{
"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
/*
* 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');
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
}
}
\ No newline at end of file
.container {
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-size: 100px;
}
<div class="container">
<text class="title">
{{title}}
</text>
</div>
/*
* 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
{
"string": [
{
"name": "app_name",
"value": "ActsAccountPressure"
},
{
"name": "mainability_description",
"value": "JS_Phone_Empty Feature Ability"
}
]
}
\ No newline at end of file
/*
* 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
......@@ -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));
......
......@@ -20,22 +20,25 @@ const STRCOUNT = 1025;
const EACHTIMEOUT = 500;
describe('ActsAccountAppAccess', function () {
function sleep(delay) {
var start = (new Date()).getTime();
while((new Date()).getTime() - start < delay) {
continue;
}
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve()
}, delay)
}).then(() => {
console.info(`sleep #{time} over ...`)
})
}
beforeAll(async function (done) {
console.debug("====>beforeAll start====");
sleep(TIMEOUT);
await sleep(TIMEOUT);
console.debug("====>beforeAll end====");
done();
})
beforeEach(async function (done) {
console.debug("====>beforeEach enter====");
sleep(EACHTIMEOUT);
await sleep(EACHTIMEOUT);
done();
})
......@@ -223,7 +226,14 @@ describe('ActsAccountAppAccess', function () {
console.debug("====>creat finish====");
var enableBundle = "com.example.actsaccountsceneappaccess";
console.debug("====>add account ActsAccountAppAccess_0800 start====");
await appAccountManager.addAccount("AppAccess_promise_account");
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);
......@@ -435,7 +445,14 @@ describe('ActsAccountAppAccess', function () {
console.debug("====>creat finish====");
var enableBundle = "com.example.actsaccountsceneappaccess";
console.debug("====>add account ActsAccountAppAccess_1600 start====");
await appAccountManager.addAccount("AppAccess_promise_account");
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);
......
......@@ -19,22 +19,25 @@ const TIMEOUT = 5000;
const EACHTIMEOUT = 500;
describe('ActsAccountAssociatedData', function () {
function sleep(delay) {
var start = (new Date()).getTime();
while((new Date()).getTime() - start < delay) {
continue;
}
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve()
}, delay)
}).then(() => {
console.info(`sleep #{time} over ...`)
})
}
beforeAll(async function (done) {
console.debug("====>beforeAll start====");
sleep(TIMEOUT);
await sleep(TIMEOUT);
console.debug("====>beforeAll end====");
done();
})
beforeEach(async function (done) {
console.debug("====>beforeEach enter====");
sleep(EACHTIMEOUT);
await sleep(EACHTIMEOUT);
done();
})
......@@ -86,7 +89,7 @@ describe('ActsAccountAssociatedData', function () {
}
catch(err){
console.error("====>add Account ActsAccountAssociatedData_0200 err:" + JSON.stringify(err));
expect().asserFail();
expect().assertFail();
done();
}
console.debug("====>setAssociatedData ActsAccountAssociatedData_0200 start====");
......@@ -95,7 +98,7 @@ describe('ActsAccountAssociatedData', function () {
}
catch(err){
console.error("====>setAssociatedData ActsAccountAssociatedData_0200 err:" + JSON.stringify(err));
expect().asserFail();
expect().assertFail();
done();
}
console.debug("====>getAssociatedData ActsAccountAssociatedData_0200 start====");
......@@ -104,7 +107,7 @@ describe('ActsAccountAssociatedData', function () {
}
catch(err){
console.error("====>getAssociatedData ActsAccountAssociatedData_0200 err:" + JSON.stringify(err));
expect().asserFail();
expect().assertFail();
done();
}
console.debug("====>getAssociatedData ActsAccountAssociatedData_0200 data:" + JSON.stringify(data));
......@@ -164,7 +167,7 @@ describe('ActsAccountAssociatedData', function () {
}
catch(err){
console.error("====>add Account ActsAccountAssociatedData_0400 err:" + JSON.stringify(err));
expect().asserFail();
expect().assertFail();
done();
}
try{
......@@ -237,7 +240,7 @@ describe('ActsAccountAssociatedData', function () {
}
catch(err){
console.error("====>add Account ActsAccountAssociatedData_0600 fail err:" + JSON.stringify(err));
expect().asserFail();
expect().assertFail();
done();
}
await appAccountManager.setAssociatedData("account_name_0600", "key6", "value6");
......
......@@ -18,15 +18,18 @@ import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '
const TIMEOUT = 5000;
describe('ActsCreatAppAccountManager', function () {
function sleep(delay) {
var start = (new Date()).getTime();
while((new Date()).getTime() - start < delay) {
continue;
}
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve()
}, delay)
}).then(() => {
console.info(`sleep #{time} over ...`)
})
}
beforeAll(async function (done) {
console.debug("====>beforeAll start====");
sleep(TIMEOUT);
await sleep(TIMEOUT);
console.debug("====>beforeAll end====");
done();
});
......
......@@ -19,22 +19,25 @@ const TIMEOUT = 5000;
const EACHTIMEOUT = 500;
describe('ActsAccountCredential', function () {
function sleep(delay) {
var start = (new Date()).getTime();
while((new Date()).getTime() - start < delay) {
continue;
}
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve()
}, delay)
}).then(() => {
console.info(`sleep #{time} over ...`)
})
}
beforeAll(async function (done) {
console.debug("====>beforeAll start====");
sleep(TIMEOUT);
await sleep(TIMEOUT);
console.debug("====>beforeAll end====");
done();
})
beforeEach(async function (done) {
console.debug("====>beforeEach enter====");
sleep(EACHTIMEOUT);
await sleep(EACHTIMEOUT);
done();
})
......
......@@ -19,15 +19,18 @@ const NAMELIMIT = 512;
const TIMEOUT = 5000;
describe('ActsAccountDeleteAccount', function () {
function sleep(delay) {
var start = (new Date()).getTime();
while((new Date()).getTime() - start < delay) {
continue;
}
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve()
}, delay)
}).then(() => {
console.info(`sleep #{time} over ...`)
})
}
beforeAll(async function (done) {
console.debug("====>beforeAll start====");
sleep(TIMEOUT);
await sleep(TIMEOUT);
console.debug("====>beforeAll end====");
done();
});
......
......@@ -19,22 +19,25 @@ const TIMEOUT = 5000;
const EACHTIMEOUT = 500;
describe('ActsAccountSetGetExtraInfo', function () {
function sleep(delay) {
var start = (new Date()).getTime();
while((new Date()).getTime() - start < delay) {
continue;
}
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve()
}, delay)
}).then(() => {
console.info(`sleep #{time} over ...`)
})
}
beforeAll(async function (done) {
console.debug("====>beforeAll start====");
sleep(TIMEOUT);
await sleep(TIMEOUT);
console.debug("====>beforeAll end====");
done();
})
beforeEach(async function (done) {
console.debug("====>beforeEach enter====");
sleep(EACHTIMEOUT);
await sleep(EACHTIMEOUT);
done();
})
......
......@@ -19,15 +19,17 @@ const TIMEOUT = 5000;
const ERR_APPACCOUNT_SERVICE_PERMISSION_DENIED = 4521993;
describe('ActsAccountNoPermission', function () {
function sleep(delay) {
var start = (new Date()).getTime();
while((new Date()).getTime() - start < delay) {
continue;
}
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve()
}, delay)
}).then(() => {
console.info(`sleep #{time} over ...`)
})
}
beforeAll(async function (done) {
console.debug("====>beforeAll start====");
sleep(TIMEOUT);
await sleep(TIMEOUT);
console.debug("====>beforeAll end====");
done();
});
......
......@@ -30,22 +30,25 @@ const OWNERSELF = "com.example.actsaccounttest";
describe('ActsAccountOAuthToken', function () {
function sleep(delay) {
var start = (new Date()).getTime();
while((new Date()).getTime() - start < delay) {
continue;
}
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve()
}, delay)
}).then(() => {
console.info(`sleep #{time} over ...`)
})
}
beforeAll(async function (done) {
console.debug("====>beforeAll start====");
sleep(TIMEOUT);
await sleep(TIMEOUT);
console.debug("====>beforeAll end====");
done();
});
beforeEach(async function (done) {
console.debug("====>beforeAll enter====");
sleep(EACHTIMEOUT);
await sleep(EACHTIMEOUT);
done();
});
......
......@@ -20,6 +20,15 @@ import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '
const TIMEOUT = 5000;
describe('ActsAccountChangeOnOff', async function () {
function sleep(delay) {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve()
}, delay)
}).then(() => {
console.info(`sleep #{time} over ...`)
})
}
beforeAll(async function (done) {
console.debug("====>startAbility start====");
await featureAbility.startAbility(
......@@ -35,7 +44,8 @@ describe('ActsAccountChangeOnOff', async function () {
},
},
);
setTimeout(done(), TIMEOUT);
await sleep(TIMEOUT);
done();
});
/*
......
......@@ -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====");
......
......@@ -108,10 +108,26 @@ describe('ActsGetAllAccessibleAccounts', function () {
* @tc.name : getAllAccessibleAccounts promise
* @tc.desc : This application gets authorization after adding a single account
*/
it('ActsGetAllAccessibleAccounts_0400', 0, async function (done) {
it('ActsGetAllAccessibleAccounts_0400', 0, async function (done) {
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.
先完成此消息的编辑!
想要评论请 注册