Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
d68d0826
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看板
未验证
提交
d68d0826
编写于
9月 20, 2022
作者:
O
openharmony_ci
提交者:
Gitee
9月 20, 2022
浏览文件
操作
浏览文件
下载
差异文件
!5560 【OpenHarmony3.2Beta3】【账号】Authenticator时序错误修正
Merge pull request !5560 from 何海涛/Beta3-0920-Update
上级
67928565
264db623
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
34 addition
and
29 deletion
+34
-29
account/appaccount/actsaccounttest/src/main/js/test/Authenticator.test.js
...nt/actsaccounttest/src/main/js/test/Authenticator.test.js
+21
-17
account/appaccount/sceneProject/actsaccountauthenticator/entry/src/main/config.json
...oject/actsaccountauthenticator/entry/src/main/config.json
+1
-1
account/appaccount/sceneProject/actsaccountauthenticator/entry/src/main/js/MainAbility/pages/index/index.js
...icator/entry/src/main/js/MainAbility/pages/index/index.js
+12
-11
未找到文件。
account/appaccount/actsaccounttest/src/main/js/test/Authenticator.test.js
浏览文件 @
d68d0826
...
...
@@ -13,6 +13,7 @@
* limitations under the License.
*/
import
account
from
'
@ohos.account.appAccount
'
import
featureAbility
from
'
@ohos.ability.featureAbility
'
import
{
describe
,
beforeAll
,
beforeEach
,
afterEach
,
afterAll
,
it
,
expect
}
from
'
deccjsunit/index
'
const
NAMELIMIT
=
512
;
...
...
@@ -541,19 +542,6 @@ export default function ActsAccountAppAccess() {
*/
it
(
'
ActsAccountSetAuthenticatorProperties_0200
'
,
0
,
async
function
(
done
)
{
await
featureAbility
.
startAbility
(
{
want
:
{
deviceId
:
""
,
bundleName
:
"
com.example.accountauthenticator
"
,
abilityName
:
"
com.example.accountauthenticator.MainAbility
"
,
parameters
:
{},
},
},
);
await
sleep
(
1000
);
console
.
debug
(
"
====>ActsAccountSetAuthenticatorProperties_0200 start====
"
);
var
appAccountManager
=
account
.
createAppAccountManager
();
console
.
debug
(
"
====>start finish====
"
);
...
...
@@ -598,6 +586,7 @@ export default function ActsAccountAppAccess() {
deviceId
:
""
,
bundleName
:
"
com.example.accountauthenticator
"
,
abilityName
:
"
com.example.accountauthenticator.MainAbility
"
,
action
:
"
action1
"
,
parameters
:
{},
},
...
...
@@ -616,7 +605,7 @@ export default function ActsAccountAppAccess() {
console
.
debug
(
"
====>ActsAccountSelectAccountByOptions_0100 data:
"
+
JSON
.
stringify
(
data
));
expect
(
data
.
length
).
assertEqual
(
1
)
}
catch
(
err
)
{
onsole
.
debug
(
"
====>ActsAccountSelectAccountByOptions_0100 err:
"
+
JSON
.
stringify
(
err
));
c
onsole
.
debug
(
"
====>ActsAccountSelectAccountByOptions_0100 err:
"
+
JSON
.
stringify
(
err
));
expect
(
err
).
assertEqual
(
null
)
}
try
{
...
...
@@ -646,6 +635,7 @@ export default function ActsAccountAppAccess() {
deviceId
:
""
,
bundleName
:
"
com.example.accountauthenticator
"
,
abilityName
:
"
com.example.accountauthenticator.MainAbility
"
,
action
:
"
action1
"
,
parameters
:
{},
},
...
...
@@ -662,9 +652,9 @@ export default function ActsAccountAppAccess() {
try
{
var
data
=
await
appAccountManager
.
selectAccountsByOptions
(
select_options
)
console
.
debug
(
"
====>ActsAccountSelectAccountByOptions_0200 data:
"
+
JSON
.
stringify
(
data
));
expect
(
data
.
length
).
assertEqual
(
1
)
expect
(
data
.
length
).
assertEqual
(
3
)
}
catch
(
err
)
{
onsole
.
debug
(
"
====>ActsAccountSelectAccountByOptions_0200 err:
"
+
JSON
.
stringify
(
err
));
c
onsole
.
debug
(
"
====>ActsAccountSelectAccountByOptions_0200 err:
"
+
JSON
.
stringify
(
err
));
expect
(
err
).
assertEqual
(
null
)
}
try
{
...
...
@@ -688,6 +678,20 @@ export default function ActsAccountAppAccess() {
*/
it
(
'
ActsAccountSelectAccountByOptions_0300
'
,
0
,
async
function
(
done
)
{
await
featureAbility
.
startAbility
(
{
want
:
{
deviceId
:
""
,
bundleName
:
"
com.example.accountauthenticator
"
,
abilityName
:
"
com.example.accountauthenticator.MainAbility
"
,
action
:
"
action1
"
,
parameters
:
{},
},
},
);
await
sleep
(
1000
);
console
.
debug
(
"
====>ActsAccountSelectAccountByOptions_0300 start====
"
);
var
appAccountManager
=
account
.
createAppAccountManager
();
var
options
=
{
requiredLabels
:
[
"
male
"
,
"
30-40
"
]}
...
...
@@ -700,7 +704,7 @@ export default function ActsAccountAppAccess() {
console
.
debug
(
"
====>ActsAccountSelectAccountByOptions_0300 data:
"
+
JSON
.
stringify
(
data
));
expect
(
data
.
length
).
assertEqual
(
1
)
}
catch
(
err
)
{
onsole
.
debug
(
"
====>ActsAccountSelectAccountByOptions_0300 err:
"
+
JSON
.
stringify
(
err
));
c
onsole
.
debug
(
"
====>ActsAccountSelectAccountByOptions_0300 err:
"
+
JSON
.
stringify
(
err
));
expect
(
err
).
assertEqual
(
null
)
}
try
{
...
...
account/appaccount/sceneProject/actsaccountauthenticator/entry/src/main/config.json
浏览文件 @
d68d0826
...
...
@@ -33,7 +33,7 @@
"orientation"
:
"unspecified"
,
"visible"
:
true
,
"srcPath"
:
"MainAbility"
,
"name"
:
".MainAbility"
,
"name"
:
"
com.example.accountauthenticator
.MainAbility"
,
"srcLanguage"
:
"js"
,
"icon"
:
"$media:icon"
,
"description"
:
"$string:MainAbility_desc"
,
...
...
account/appaccount/sceneProject/actsaccountauthenticator/entry/src/main/js/MainAbility/pages/index/index.js
浏览文件 @
d68d0826
...
...
@@ -12,9 +12,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import
featureAbility
from
'
@ohos.ability.featureAbility
'
import
account_appAccount
from
'
@ohos.account.appAccount
'
;
import
featureAbility
from
'
@ohos.ability.featureAbility
'
export
default
{
data
:
{
...
...
@@ -24,26 +23,28 @@ export default {
this
.
title
=
this
.
$t
(
'
strings.world
'
);
},
onShow
()
{
console
.
info
(
'
ServiceAbility onStart
'
);
console
.
info
(
'
====>
ServiceAbility onStart
'
);
var
accountMgr
=
account_appAccount
.
createAppAccountManager
();
console
.
info
(
'
ServiceAbility lcc
addAccount 01 onStart
'
);
console
.
info
(
'
====>ServiceAbility
addAccount 01 onStart
'
);
accountMgr
.
addAccount
(
"
zhangsan
"
,
""
,(
data
)
=>
{
console
.
info
(
'
ServiceAbility lcc
enableAppAccess 01 onStart
'
);
console
.
info
(
'
====>ServiceAbility
enableAppAccess 01 onStart
'
);
accountMgr
.
enableAppAccess
(
"
zhangsan
"
,
"
com.example.actsaccounttest
"
);
console
.
info
(
'
ServiceAbility lcc
addAccount 02 onStart
'
);
console
.
info
(
'
====>ServiceAbility
addAccount 02 onStart
'
);
accountMgr
.
addAccount
(
"
lisi
"
,
""
,(
err
)
=>
{
console
.
info
(
'
ServiceAbility lcc
enableAppAccess 02 onStart
'
);
console
.
info
(
'
====>ServiceAbility
enableAppAccess 02 onStart
'
);
accountMgr
.
enableAppAccess
(
"
lisi
"
,
"
com.example.actsaccounttest
"
);
console
.
info
(
'
ServiceAbility lcc
addAccount 03 onStart
'
);
console
.
info
(
'
====>ServiceAbility
addAccount 03 onStart
'
);
accountMgr
.
addAccount
(
"
wangwu
"
,
""
,(
err
)
=>
{
console
.
info
(
'
ServiceAbility lcc
enableAppAccess 03 onStart
'
);
console
.
info
(
'
====>ServiceAbility
enableAppAccess 03 onStart
'
);
accountMgr
.
enableAppAccess
(
"
wangwu
"
,
"
com.example.actsaccounttest
"
,(
err
)
=>
{
featureAbility
.
terminateSelf
();
console
.
info
(
'
ServiceAbility add end
'
);
console
.
info
(
'
====>
ServiceAbility add end
'
);
});
});
});
});
console
.
info
(
'
ServiceAbility onStart end
'
);
}
},
onReady
()
{
},
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录