Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
7f4c6693
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看板
提交
7f4c6693
编写于
3月 14, 2022
作者:
C
chengxingzhen
1
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
wantConstant:crateFormBindingData新增用例
Signed-off-by:
N
chengxingzhen
<
chengxingzhen@huawei.com
>
上级
5e65592b
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
60 addition
and
0 deletion
+60
-0
aafwk/aafwk_standard/formmanager/formsystemtesthost/actsformszerotest/entry/src/main/js/test/FormsZeroJsunit.test.js
...mszerotest/entry/src/main/js/test/FormsZeroJsunit.test.js
+21
-0
aafwk/aafwk_standard/want/actsgetwantalltest/entry/src/main/js/test/ActsGetWantAllTest.js
...twantalltest/entry/src/main/js/test/ActsGetWantAllTest.js
+39
-0
未找到文件。
aafwk/aafwk_standard/formmanager/formsystemtesthost/actsformszerotest/entry/src/main/js/test/FormsZeroJsunit.test.js
浏览文件 @
7f4c6693
...
@@ -13,6 +13,7 @@
...
@@ -13,6 +13,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
import
formBindingData
from
"
@ohos.application.formBindingData
"
import
formManager
from
'
@ohos.ability.formManager
'
import
formManager
from
'
@ohos.ability.formManager
'
import
{
describe
,
it
,
expect
}
from
'
deccjsunit/index
'
import
{
describe
,
it
,
expect
}
from
'
deccjsunit/index
'
...
@@ -87,4 +88,24 @@ describe('ActsFormsZeroTest', function () {
...
@@ -87,4 +88,24 @@ describe('ActsFormsZeroTest', function () {
console
.
log
(
"
FMS_getFormsInfo_0300_promise end, ret:
"
+
ret
);
console
.
log
(
"
FMS_getFormsInfo_0300_promise end, ret:
"
+
ret
);
})
})
/**
* @tc.name CreateFormBindingData test
* @tc.number FMS_CreateFormBindingData_0100
* @tc.desc Creates data and returns a data object
*/
it
(
'
FMS_CreateFormBindingData_0100
'
,
0
,
async
function
(
done
)
{
console
.
log
(
"
FMS_CreateFormBindingData_0100 begin
"
);
let
dataObj
=
{
temperature
:
"
22c
"
,
"
time
"
:
"
22:00
"
,
"
test
"
:
22
,
"
test3
"
:
true
};
let
obj
=
formBindingData
.
createFormBindingData
(
JSON
.
stringify
(
dataObj
));
console
.
log
(
'
FMS_CreateFormBindingData_0100, obj.data:
'
+
obj
.
data
);
expect
(
JSON
.
stringify
(
dataObj
)).
assertEqual
(
obj
.
data
);
done
();
console
.
log
(
"
FMS_CreateFormBindingData_0100 end
"
);
})
})
})
aafwk/aafwk_standard/want/actsgetwantalltest/entry/src/main/js/test/ActsGetWantAllTest.js
浏览文件 @
7f4c6693
...
@@ -1011,6 +1011,45 @@ describe('ActsGetWantTest', function () {
...
@@ -1011,6 +1011,45 @@ describe('ActsGetWantTest', function () {
}
}
console
.
log
(
'
ACTS_GetWant_2000 end
'
);
console
.
log
(
'
ACTS_GetWant_2000 end
'
);
});
});
/**
* @tc.number: SUB_AA_OpenHarmony_wantConstantEnumeration_0100
* @tc.name: Check the enumerated value ACTION_IMAGE_CAPTURE of wantConstant.
* @tc.desc: Check the enumerated value ACTION_IMAGE_CAPTURE of wantConstant.
*/
it
(
'
SUB_AA_OpenHarmony_wantConstantEnumeration_0100
'
,
0
,
async
function
(
done
)
{
console
.
log
(
"
SUB_AA_OpenHarmony_wantConstantEnumeration_0100 --- start
"
)
let
image
=
wantConstant
.
Action
.
ACTION_IMAGE_CAPTURE
expect
(
image
).
assertEqual
(
"
ohos.want.action.imageCapture
"
)
console
.
log
(
"
SUB_AA_OpenHarmony_wantConstantEnumeration_0100 --- end
"
)
done
()
})
/**
* @tc.number: SUB_AA_OpenHarmony_wantConstantEnumeration_0200
* @tc.name: Check the enumerated value ACTION_VIDEO_CAPTURE of wantConstant.
* @tc.desc: Check the enumerated value ACTION_VIDEO_CAPTURE of wantCconstant.
*/
it
(
'
SUB_AA_OpenHarmony_wantConstantEnumeration_0200
'
,
0
,
async
function
(
done
)
{
console
.
log
(
"
SUB_AA_OpenHarmony_wantConstantEnumeration_0200 --- start
"
)
let
video
=
wantConstant
.
Action
.
ACTION_VIDEO_CAPTURE
expect
(
video
).
assertEqual
(
"
ohos.want.action.videoCapture
"
)
console
.
log
(
"
SUB_AA_OpenHarmony_wantConstantEnumeration_0200 --- end
"
)
done
()
})
/**
* @tc.number: SUB_AA_OpenHarmony_wantConstantEnumeration_0300
* @tc.name: Check the enumerated value ACTION_APP_ACCOUNT_OAUTH of wantConstant.
* @tc.desc: Check the enumerated value ACTION_APP_ACCOUNT_OAUTH of wantConstant.
*/
it
(
'
SUB_AA_OpenHarmony_wantConstantEnumeration_0300
'
,
0
,
async
function
(
done
)
{
console
.
log
(
"
SUB_AA_OpenHarmony_wantConstantEnumeration_0300 --- start
"
)
let
app
=
wantConstant
.
ACTION_APP_ACCOUNT_OAUTH
expect
(
app
).
assertEqual
(
"
ohos.account.appAccount.action.oauth
"
)
console
.
log
(
"
SUB_AA_OpenHarmony_wantConstantEnumeration_0300 --- end
"
)
done
()
})
function
checkOnAbilityResult
(
data
)
{
function
checkOnAbilityResult
(
data
)
{
console
.
info
(
'
====> ACTS_StartAbilityForResult_2000 start ability=====>
'
+
JSON
.
stringify
(
data
))
console
.
info
(
'
====> ACTS_StartAbilityForResult_2000 start ability=====>
'
+
JSON
.
stringify
(
data
))
...
...
鸿蒙社区
@harmonycommunity
mentioned in commit
ffdec52f
·
3月 17, 2022
mentioned in commit
ffdec52f
mentioned in commit ffdec52f0cfc24a5b17863a3fbdc1340178d5a36
开关提交列表
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录