Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
ef14e9c8
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看板
体验新版 GitCode,发现更多精彩内容 >>
You need to sign in or sign up before continuing.
提交
ef14e9c8
编写于
10月 15, 2022
作者:
Mupceet
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'release_1015_xts' of
https://gitee.com/mupceet/xts_acts
into release_1015_xts
上级
394f556b
28ff1df2
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
112 addition
and
103 deletion
+112
-103
barrierfree/BUILD.gn
barrierfree/BUILD.gn
+2
-3
barrierfree/accessibilityelement/entry/src/main/ets/AccessibilityExtAbility/ElementTest.ts
...entry/src/main/ets/AccessibilityExtAbility/ElementTest.ts
+28
-18
barrierfree/accessibilityerrcode/BUILD.gn
barrierfree/accessibilityerrcode/BUILD.gn
+41
-41
barrierfree/accessibilitysendaccessibilityevent/BUILD.gn
barrierfree/accessibilitysendaccessibilityevent/BUILD.gn
+41
-41
未找到文件。
barrierfree/BUILD.gn
浏览文件 @
ef14e9c8
...
...
@@ -19,19 +19,18 @@ group("barrierfree") {
deps = [
"accessibilityconfig:ActsAccessibilityConfigTest",
"accessibilityconfigreqreadpermission:ActsAccessibilityConfigReqReadPermissionTest",
#"accessibilityconfigreqwritepermission:ActsAccessibilityConfigReqWritePermissionTest",
"accessibilityelement:ActsAccessibilityElementTest",
"accessibilityerrcode:ActsAccessibilityErrCodeTest",
"accessibilityevent:ActsAccessibilityEventTest",
"accessibilityextension:ActsAccessibilityExtensionTest",
"accessibilityextensioncontext:ActsAccessibilityExtensionContextTest",
"accessibilitygestureevent:ActsAccessibilityGestureEventTest",
"accessibilitysendaccessibilityevent:ActsAccessibilitySendAccessibilityEventTest",
"accessibleabilitylist:ActsAccessibleAbilityListTest",
"accessiblecaptionconfiguration:ActsAccessibleCaptionConfigurationTest",
"accessiblecheckability:ActsAccessibleCheckAbilityTest",
"accessibleregisterstate:ActsAccessibleRegisterStateTest",
"accessiblesendevent:ActsAccessibleSendEventTest",
"accessibilityerrcode:ActsAccessibilityErrCodeTest",
"accessibilitysendaccessibilityevent:ActsAccessibilitySendAccessibilityEventTest",
"accessibletest:actsaccessibletest",
"targetProject/aceTest:aceTest",
]
...
...
barrierfree/accessibilityelement/entry/src/main/ets/AccessibilityExtAbility/ElementTest.ts
浏览文件 @
ef14e9c8
...
...
@@ -743,8 +743,8 @@ export class ElementTest {
}
}
catch
(
e
)
{
console
.
info
(
'
ElementTest executePerformActionPromise
'
+
caseName
+
'
catch(e):
'
+
JSON
.
stringify
(
e
));
if
(
action
==
invalidString
&&
e
&&
e
.
code
!=
0
)
{
if
(
e
.
code
==
9300005
)
{
if
(
e
&&
e
.
code
!=
0
)
{
if
(
e
.
code
==
9300005
||
e
.
code
==
9300000
)
{
result
=
true
;
}
result
=
true
;
...
...
@@ -854,7 +854,9 @@ export class ElementTest {
element
.
attributeNames
((
err
,
names
)
=>
{
console
.
info
(
'
ElementTest executeAttributeNamesCallback
'
+
caseName
+
'
err:
'
+
JSON
.
stringify
(
err
));
console
.
info
(
'
ElementTest executeAttributeNamesCallback
'
+
caseName
+
'
names:
'
+
JSON
.
stringify
(
names
));
if
(
err
.
code
==
0
&&
Array
.
isArray
(
names
))
{
if
(
err
&&
err
.
code
!=
0
)
{
result
=
false
;
}
else
if
(
Array
.
isArray
(
names
))
{
result
=
true
;
}
this
.
publishCaseResult
(
caseName
,
result
);
...
...
@@ -877,9 +879,9 @@ export class ElementTest {
element
.
attributeValue
(
input
,
(
err
,
value
)
=>
{
console
.
info
(
'
ElementTest executeAttributeValueCallback
'
+
caseName
+
'
err:
'
+
JSON
.
stringify
(
err
));
console
.
info
(
'
ElementTest executeAttributeValueCallback
'
+
caseName
+
'
value:
'
+
JSON
.
stringify
(
value
));
if
(
input
==
invalidString
&&
err
&&
err
.
code
!=
0
)
{
if
(
err
&&
err
.
code
!=
0
)
{
result
=
true
;
}
else
if
(
err
.
code
==
0
&&
typeof
(
value
)
==
outputType
)
{
}
else
if
(
typeof
(
value
)
==
outputType
)
{
result
=
true
;
}
else
{
console
.
warn
(
'
ElementTest executeAttributeValueCallback
'
+
caseName
+
'
valueType:
'
+
typeof
(
value
));
...
...
@@ -903,10 +905,10 @@ export class ElementTest {
element
.
attributeValue
(
input
,
(
err
,
value
)
=>
{
console
.
info
(
'
ElementTest executeAttributeValueCallback
'
+
caseName
+
'
err:
'
+
JSON
.
stringify
(
err
));
console
.
info
(
'
ElementTest executeAttributeValueCallback
'
+
caseName
+
'
value:
'
+
JSON
.
stringify
(
value
));
if
(
err
.
code
==
0
&&
typeof
(
value
)
==
'
object
'
&&
typeof
(
value
.
left
)
==
'
number
'
if
(
typeof
(
value
)
==
'
object
'
&&
typeof
(
value
.
left
)
==
'
number
'
&&
typeof
(
value
.
top
)
==
'
number
'
&&
typeof
(
value
.
width
)
==
'
number
'
&&
typeof
(
value
.
height
)
==
'
number
'
)
{
result
=
true
;
}
else
{
}
else
if
(
err
)
{
console
.
warn
(
'
ElementTest executeAttributeValueCallbackRect
'
+
caseName
+
'
valueType:
'
+
typeof
(
value
));
}
this
.
publishCaseResult
(
caseName
,
result
);
...
...
@@ -932,7 +934,9 @@ export class ElementTest {
target
.
attributeValue
(
'
triggerAction
'
,
(
err
,
value
)
=>
{
console
.
info
(
'
ElementTest executeAttributeValueCallbackTriggerAction
'
+
caseName
+
'
err:
'
+
JSON
.
stringify
(
err
));
console
.
info
(
'
ElementTest executeAttributeValueCallbackTriggerAction
'
+
caseName
+
'
valueType:
'
+
typeof
(
value
));
if
(
err
.
code
==
0
&&
eventType
==
'
click
'
&&
typeof
(
value
)
==
'
string
'
)
{
if
(
err
)
{
this
.
publishCaseResult
(
caseName
,
false
);
}
else
if
(
eventType
==
'
click
'
&&
typeof
(
value
)
==
'
string
'
)
{
this
.
publishCaseResult
(
caseName
,
true
);
}
});
...
...
@@ -964,7 +968,9 @@ export class ElementTest {
element
.
attributeValue
(
'
rootElement
'
,
(
err
,
value
)
=>
{
console
.
info
(
'
ElementTest executeAttributeValueCallback
'
+
caseName
+
'
err:
'
+
JSON
.
stringify
(
err
));
console
.
info
(
'
ElementTest executeAttributeValueCallback
'
+
caseName
+
'
value:
'
+
JSON
.
stringify
(
value
));
if
(
err
.
code
==
0
&&
typeof
(
value
)
==
'
object
'
)
{
if
(
err
)
{
let
result
=
false
;
}
else
if
(
typeof
(
value
)
==
'
object
'
)
{
result
=
true
;
}
else
{
console
.
warn
(
'
ElementTest executeAttributeValueCallback
'
+
caseName
+
'
valueType:
'
+
typeof
(
value
));
...
...
@@ -982,7 +988,9 @@ export class ElementTest {
element
.
attributeValue
(
input
,
(
err
,
value
)
=>
{
console
.
info
(
'
ElementTest executeAttributeValueCallbackArray
'
+
caseName
+
'
err:
'
+
JSON
.
stringify
(
err
));
console
.
info
(
'
ElementTest executeAttributeValueCallbackArray
'
+
caseName
+
'
value:
'
+
JSON
.
stringify
(
value
));
if
(
err
.
code
==
0
&&
Array
.
isArray
(
value
))
{
if
(
err
)
{
let
result
=
false
;
}
else
if
(
Array
.
isArray
(
value
))
{
if
((
value
.
length
==
0
)
||
(
value
.
length
>
0
&&
typeof
(
value
[
0
])
==
outputType
))
{
result
=
true
;
...
...
@@ -1000,7 +1008,7 @@ export class ElementTest {
element
.
actionNames
((
err
,
actions
)
=>
{
console
.
info
(
'
ElementTest executeActionNamesCallback
'
+
caseName
+
'
err:
'
+
JSON
.
stringify
(
err
));
console
.
info
(
'
ElementTest executeActionNamesCallback
'
+
caseName
+
'
actions:
'
+
JSON
.
stringify
(
actions
));
if
(
err
.
code
==
0
&&
Array
.
isArray
(
actions
))
{
if
(
Array
.
isArray
(
actions
))
{
if
((
actions
.
length
==
0
)
||
(
actions
.
length
>
0
&&
typeof
(
actions
[
0
])
==
'
string
'
))
{
result
=
true
;
...
...
@@ -1020,12 +1028,12 @@ export class ElementTest {
element
.
performAction
(
action
,
args
,
(
err
,
ret
)
=>
{
console
.
info
(
'
ElementTest executePerformActionCallback
'
+
caseName
+
'
err:
'
+
JSON
.
stringify
(
err
));
console
.
info
(
'
ElementTest executePerformActionCallback
'
+
caseName
+
'
ret:
'
+
JSON
.
stringify
(
ret
));
if
(
action
==
invalidString
&&
err
&&
err
.
code
!=
0
)
{
if
(
err
.
code
==
9300005
)
{
if
(
err
&&
err
.
code
!=
0
)
{
if
(
err
.
code
==
9300005
||
err
.
code
==
9300000
)
{
result
=
true
;
}
result
=
true
;
}
else
if
(
err
.
code
==
0
&&
typeof
(
ret
)
==
'
undefined
'
)
{
}
else
if
(
typeof
(
ret
)
==
'
undefined
'
)
{
result
=
true
;
}
this
.
publishCaseResult
(
caseName
,
result
);
...
...
@@ -1043,7 +1051,7 @@ export class ElementTest {
console
.
info
(
'
ElementTest executeFindElementCallbackByContent
'
+
caseName
+
'
element:
'
+
JSON
.
stringify
(
found
));
if
(
condition
==
invalidString
&&
err
&&
err
.
code
!=
0
)
{
result
=
true
;
}
else
if
(
err
.
code
==
0
&&
Array
.
isArray
(
found
))
{
}
else
if
(
Array
.
isArray
(
found
))
{
if
(
found
.
length
==
0
||
typeof
(
found
[
0
])
==
'
object
'
)
{
result
=
true
;
}
...
...
@@ -1067,7 +1075,7 @@ export class ElementTest {
console
.
info
(
'
ElementTest executeFindElementCallbackByFocusType
'
+
caseName
+
'
element:
'
+
JSON
.
stringify
(
found
));
if
(
condition
==
invalidString
&&
err
&&
err
.
code
!=
0
)
{
result
=
true
;
}
else
if
(
err
.
code
==
0
&&
typeof
(
found
)
==
'
object
'
)
{
}
else
if
(
typeof
(
found
)
==
'
object
'
)
{
result
=
true
;
}
this
.
publishCaseResult
(
caseName
,
result
);
...
...
@@ -1092,7 +1100,7 @@ export class ElementTest {
console
.
info
(
'
ElementTest executeFindElementCallbackByFocusDirection
'
+
caseName
+
'
element:
'
+
JSON
.
stringify
(
found
));
if
(
condition
==
invalidString
&&
err
.
code
!=
0
)
{
result
=
true
;
}
else
if
(
err
.
code
==
0
&&
typeof
(
found
)
==
'
object
'
)
{
}
else
if
(
typeof
(
found
)
==
'
object
'
)
{
result
=
true
;
}
this
.
publishCaseResult
(
caseName
,
result
);
...
...
@@ -1113,7 +1121,9 @@ export class ElementTest {
element
.
findElement
(
'
focusDirection
'
,
'
down
'
,
(
err
,
found
)
=>
{
console
.
info
(
'
ElementTest executeFindElementCallback5900
'
+
caseName
+
'
err:
'
+
JSON
.
stringify
(
err
));
console
.
info
(
'
ElementTest executeFindElementCallback5900
'
+
caseName
+
'
element:
'
+
JSON
.
stringify
(
found
));
if
(
err
.
code
==
0
&&
typeof
(
found
)
==
'
object
'
)
{
if
(
err
&&
err
.
code
!=
0
)
{
}
if
(
typeof
(
found
)
==
'
object
'
)
{
result
=
true
;
}
this
.
publishCaseResult
(
caseName
,
result
);
...
...
barrierfree/accessibilityerrcode/BUILD.gn
浏览文件 @
ef14e9c8
# Copyright (c) 2022 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
# Copyright (c) 2022 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("ActsAccessibilityErrCodeTest") {
hap_profile = "entry/src/main/module.json"
deps = [
":accessibilityerrcode_js_assets",
":accessibilityerrcode_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAccessibilityErrCodeTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
ohos_app_scope("accessibilityerrcode_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("accessibilityerrcode_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("accessibilityerrcode_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":accessibilityerrcode_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("ActsAccessibilityErrCodeTest") {
hap_profile = "entry/src/main/module.json"
deps = [
":accessibilityerrcode_js_assets",
":accessibilityerrcode_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAccessibilityErrCodeTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
ohos_app_scope("accessibilityerrcode_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("accessibilityerrcode_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("accessibilityerrcode_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":accessibilityerrcode_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
barrierfree/accessibilitysendaccessibilityevent/BUILD.gn
浏览文件 @
ef14e9c8
# Copyright (c) 2022 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
# Copyright (c) 2022 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("ActsAccessibilitySendAccessibilityEventTest") {
hap_profile = "entry/src/main/module.json"
deps = [
":accessibilitysendaccessibilityevent_js_assets",
":accessibilitysendaccessibilityevent_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAccessibilitySendAccessibilityEventTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
ohos_app_scope("accessibilitysendaccessibilityevent_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("accessibilitysendaccessibilityevent_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("accessibilitysendaccessibilityevent_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":accessibilitysendaccessibilityevent_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("ActsAccessibilitySendAccessibilityEventTest") {
hap_profile = "entry/src/main/module.json"
deps = [
":accessibilitysendaccessibilityevent_js_assets",
":accessibilitysendaccessibilityevent_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAccessibilitySendAccessibilityEventTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
ohos_app_scope("accessibilitysendaccessibilityevent_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("accessibilitysendaccessibilityevent_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("accessibilitysendaccessibilityevent_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":accessibilitysendaccessibilityevent_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录