Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
08d868db
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,发现更多精彩内容 >>
提交
08d868db
编写于
10月 10, 2022
作者:
B
bailu1992
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
马达xts用例修改
Signed-off-by:
N
bailu1992
<
bailu27@huawei.com
>
上级
a2b944fd
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
241 addition
and
148 deletion
+241
-148
sensors/miscdevice_standard/src/main/js/test/Vibrator_new.test.js
...miscdevice_standard/src/main/js/test/Vibrator_new.test.js
+46
-24
sensors/miscdevice_standard/src/main/js/test/Vibrator_newSupplement.test.js
..._standard/src/main/js/test/Vibrator_newSupplement.test.js
+182
-115
sensors/miscdevice_standard/src/main/js/test/Vibrator_old.test.js
...miscdevice_standard/src/main/js/test/Vibrator_old.test.js
+13
-9
未找到文件。
sensors/miscdevice_standard/src/main/js/test/Vibrator_new.test.js
浏览文件 @
08d868db
...
...
@@ -50,6 +50,14 @@ describe("VibratorJsTest_misc_2", function () {
console
.
info
(
'
afterEach caled
'
)
})
const
OPERATION_FAIL_CODE
=
14600101
;
const
PERMISSION_ERROR_CODE
=
201
;
const
PARAMETER_ERROR_CODE
=
401
;
const
OPERATION_FAIL_MSG
=
'
Device operation failed.
'
const
PERMISSION_ERROR_MSG
=
'
Permission denied.
'
const
PARAMETER_ERROR_MSG
=
'
The parameter invalid.
'
/*
* @tc.name:VibratorJsTest001
* @tc.desc:Verification results of the incorrect parameters of the test interface.
...
...
@@ -277,6 +285,7 @@ describe("VibratorJsTest_misc_2", function () {
* @tc.number:SUB_SensorSystem_Vibrator_JsTest_0100
*/
it
(
"
VibratorJsTest010
"
,
TestType
.
FUNCTION
|
Size
.
MEDIUMTEST
|
Level
.
LEVEL3
,
async
function
(
done
)
{
try
{
function
vibrateCallback
(
error
)
{
if
(
error
)
{
console
.
info
(
'
VibratorJsTest010 stop success
'
);
...
...
@@ -290,6 +299,12 @@ describe("VibratorJsTest_misc_2", function () {
},
500
);
}
vibrator
.
stop
(
""
,
vibrateCallback
);
}
catch
(
error
)
{
console
.
info
(
error
);
expect
(
error
.
code
).
assertEqual
(
PARAMETER_ERROR_CODE
);
expect
(
error
.
message
).
assertEqual
(
PARAMETER_ERROR_MSG
);
done
();
}
})
/*
...
...
@@ -403,6 +418,7 @@ describe("VibratorJsTest_misc_2", function () {
* @tc.number:SUB_SensorSystem_Vibrator_JsTest_0160
*/
it
(
"
VibratorJsTest016
"
,
TestType
.
FUNCTION
|
Size
.
MEDIUMTEST
|
Level
.
LEVEL3
,
async
function
(
done
)
{
try
{
vibrator
.
stop
(
""
).
then
(()
=>
{
console
.
log
(
"
VibratorJsTest016 stop error
"
);
expect
(
false
).
assertTrue
();
...
...
@@ -416,6 +432,12 @@ describe("VibratorJsTest_misc_2", function () {
done
();
},
500
);
});
}
catch
(
error
)
{
console
.
info
(
error
);
expect
(
error
.
code
).
assertEqual
(
PARAMETER_ERROR_CODE
);
expect
(
error
.
message
).
assertEqual
(
PARAMETER_ERROR_MSG
);
done
();
}
})
/*
...
...
sensors/miscdevice_standard/src/main/js/test/Vibrator_newSupplement.test.js
浏览文件 @
08d868db
...
...
@@ -53,6 +53,14 @@ describe("VibratorJsTest_misc_3", function () {
console
.
info
(
'
afterEach called
'
)
})
const
OPERATION_FAIL_CODE
=
14600101
;
const
PERMISSION_ERROR_CODE
=
201
;
const
PARAMETER_ERROR_CODE
=
401
;
const
OPERATION_FAIL_MSG
=
'
Device operation failed.
'
const
PERMISSION_ERROR_MSG
=
'
Permission denied.
'
const
PARAMETER_ERROR_MSG
=
'
The parameter invalid.
'
/*
* @tc.name:VibratorJsTest019
* @tc.desc:Verification results of the incorrect parameters of the test interface.
...
...
@@ -84,6 +92,7 @@ describe("VibratorJsTest_misc_3", function () {
* @tc.number:SUB_SensorSystem_Vibrator_JsTest_0300
*/
it
(
"
VibratorJsTest020
"
,
TestType
.
FUNCTION
|
Size
.
MEDIUMTEST
|
Level
.
LEVEL3
,
async
function
(
done
)
{
try
{
vibrator
.
vibrate
({
type
:
""
,
duration
:
1000
...
...
@@ -99,6 +108,12 @@ describe("VibratorJsTest_misc_3", function () {
done
();
},
500
);
});
}
catch
(
error
)
{
console
.
info
(
error
);
expect
(
error
.
code
).
assertEqual
(
PARAMETER_ERROR_CODE
);
expect
(
error
.
message
).
assertEqual
(
PARAMETER_ERROR_MSG
);
done
();
}
})
/*
...
...
@@ -133,6 +148,7 @@ describe("VibratorJsTest_misc_3", function () {
* @tc.number:SUB_SensorSystem_Vibrator_JsTest_0320
*/
it
(
"
VibratorJsTest022
"
,
TestType
.
FUNCTION
|
Size
.
MEDIUMTEST
|
Level
.
LEVEL3
,
async
function
(
done
)
{
try
{
vibrator
.
vibrate
({
type
:
"
preset
"
,
effectId
:
""
,
...
...
@@ -149,6 +165,13 @@ describe("VibratorJsTest_misc_3", function () {
done
();
},
500
);
});
}
catch
(
error
)
{
console
.
info
(
error
);
expect
(
error
.
code
).
assertEqual
(
PARAMETER_ERROR_CODE
);
expect
(
error
.
message
).
assertEqual
(
PARAMETER_ERROR_MSG
);
done
();
}
})
/*
...
...
@@ -157,6 +180,7 @@ describe("VibratorJsTest_misc_3", function () {
* @tc.number:SUB_SensorSystem_Vibrator_JsTest_0330
*/
it
(
"
VibratorJsTest023
"
,
TestType
.
FUNCTION
|
Size
.
MEDIUMTEST
|
Level
.
LEVEL3
,
async
function
(
done
)
{
try
{
vibrator
.
vibrate
({
type
:
"
preset
"
,
effectId
:
"
haptic.clock.timer
"
,
...
...
@@ -173,6 +197,13 @@ describe("VibratorJsTest_misc_3", function () {
done
();
},
500
);
});
}
catch
(
error
)
{
console
.
info
(
error
);
expect
(
error
.
code
).
assertEqual
(
PARAMETER_ERROR_CODE
);
expect
(
error
.
message
).
assertEqual
(
PARAMETER_ERROR_MSG
);
done
();
}
})
/*
...
...
@@ -215,6 +246,7 @@ describe("VibratorJsTest_misc_3", function () {
* @tc.number:SUB_SensorSystem_Vibrator_JsTest_0360
*/
it
(
"
VibratorJsTest026
"
,
TestType
.
FUNCTION
|
Size
.
MEDIUMTEST
|
Level
.
LEVEL3
,
async
function
(
done
)
{
try
{
await
vibrator
.
vibrate
({
type
:
""
,
duration
:
1000
...
...
@@ -226,6 +258,12 @@ describe("VibratorJsTest_misc_3", function () {
expect
(
true
).
assertTrue
();
});
done
();
}
catch
(
error
)
{
console
.
info
(
error
);
expect
(
error
.
code
).
assertEqual
(
PARAMETER_ERROR_CODE
);
expect
(
error
.
message
).
assertEqual
(
PARAMETER_ERROR_MSG
);
done
();
}
})
/*
...
...
@@ -254,6 +292,7 @@ describe("VibratorJsTest_misc_3", function () {
* @tc.number:SUB_SensorSystem_Vibrator_JsTest_0380
*/
it
(
"
VibratorJsTest028
"
,
TestType
.
FUNCTION
|
Size
.
MEDIUMTEST
|
Level
.
LEVEL3
,
async
function
(
done
)
{
try
{
vibrator
.
vibrate
({
type
:
"
preset
"
,
effectId
:
""
,
...
...
@@ -267,6 +306,12 @@ describe("VibratorJsTest_misc_3", function () {
expect
(
true
).
assertTrue
();
done
();
});
}
catch
(
error
)
{
console
.
info
(
error
);
expect
(
error
.
code
).
assertEqual
(
PARAMETER_ERROR_CODE
);
expect
(
error
.
message
).
assertEqual
(
PARAMETER_ERROR_MSG
);
done
();
}
})
/*
...
...
@@ -275,6 +320,7 @@ describe("VibratorJsTest_misc_3", function () {
* @tc.number:SUB_SensorSystem_Vibrator_JsTest_0390
*/
it
(
"
VibratorJsTest029
"
,
TestType
.
FUNCTION
|
Size
.
MEDIUMTEST
|
Level
.
LEVEL3
,
async
function
(
done
)
{
try
{
vibrator
.
vibrate
({
type
:
"
preset
"
,
effectId
:
"
haptic.clock.timer
"
,
...
...
@@ -288,6 +334,12 @@ describe("VibratorJsTest_misc_3", function () {
expect
(
true
).
assertTrue
();
done
();
});
}
catch
(
error
)
{
console
.
info
(
error
);
expect
(
error
.
code
).
assertEqual
(
PARAMETER_ERROR_CODE
);
expect
(
error
.
message
).
assertEqual
(
PARAMETER_ERROR_MSG
);
done
();
}
})
/*
...
...
@@ -812,6 +864,7 @@ describe("VibratorJsTest_misc_3", function () {
* @tc.number:SUB_SensorSystem_Vibrator_JsTest_0510
*/
it
(
"
VibratorJsTest041
"
,
TestType
.
FUNCTION
|
Size
.
MEDIUMTEST
|
Level
.
LEVEL3
,
async
function
(
done
)
{
try
{
vibrator
.
vibrate
({
type
:
""
,
duration
:
1000
...
...
@@ -828,6 +881,12 @@ describe("VibratorJsTest_misc_3", function () {
done
();
},
500
);
});
}
catch
(
error
)
{
console
.
info
(
error
);
expect
(
error
.
code
).
assertEqual
(
PARAMETER_ERROR_CODE
);
expect
(
error
.
message
).
assertEqual
(
PARAMETER_ERROR_MSG
);
done
();
}
})
/*
...
...
@@ -863,6 +922,7 @@ describe("VibratorJsTest_misc_3", function () {
* @tc.number:SUB_SensorSystem_Vibrator_JsTest_0530
*/
it
(
"
VibratorJsTest043
"
,
TestType
.
FUNCTION
|
Size
.
MEDIUMTEST
|
Level
.
LEVEL3
,
async
function
(
done
)
{
try
{
vibrator
.
vibrate
({
type
:
"
preset
"
,
effectId
:
""
,
...
...
@@ -880,6 +940,13 @@ describe("VibratorJsTest_misc_3", function () {
done
();
},
500
);
});
}
catch
(
error
)
{
console
.
info
(
error
);
expect
(
error
.
code
).
assertEqual
(
PARAMETER_ERROR_CODE
);
expect
(
error
.
message
).
assertEqual
(
PARAMETER_ERROR_MSG
);
done
();
}
})
})
}
sensors/miscdevice_standard/src/main/js/test/Vibrator_old.test.js
浏览文件 @
08d868db
...
...
@@ -50,9 +50,13 @@ describe("VibratorJsTest_misc_1", function () {
console
.
info
(
'
afterEach caled
'
)
})
let
errMessages
=
[
'
Error: ParseParameter: "Get vibrate type fail"
'
,
'
Error: ParseParameter: "Wrong argument number"
'
]
const
OPERATION_FAIL_CODE
=
14600101
;
const
PERMISSION_ERROR_CODE
=
201
;
const
PARAMETER_ERROR_CODE
=
401
;
let
errMessage
;
const
OPERATION_FAIL_MSG
=
'
Device operation failed.
'
const
PERMISSION_ERROR_MSG
=
'
Permission denied.
'
const
PARAMETER_ERROR_MSG
=
'
The parameter invalid.
'
/*
* @tc.name:SubVibratorJsTest0001
...
...
@@ -193,9 +197,9 @@ describe("VibratorJsTest_misc_1", function () {
},
},
25
);
}
catch
(
error
)
{
errMessage
=
error
.
toString
();
console
.
info
(
'
SubVibratorJsTest0007 error:
'
+
error
);
expect
(
errMessage
).
assertEqual
(
errMessages
[
0
]);
expect
(
error
.
code
).
assertEqual
(
PARAMETER_ERROR_CODE
);
expect
(
error
.
message
).
assertEqual
(
PARAMETER_ERROR_MSG
);
done
();
}
})
...
...
@@ -242,9 +246,9 @@ describe("VibratorJsTest_misc_1", function () {
try
{
vibrator
.
vibrate
();
}
catch
(
error
)
{
errMessage
=
error
.
toString
();
console
.
info
(
'
SubVibratorJsTest0009 error:
'
+
error
);
expect
(
errMessage
).
assertEqual
(
errMessages
[
1
]);
expect
(
error
.
code
).
assertEqual
(
PARAMETER_ERROR_CODE
);
expect
(
error
.
message
).
assertEqual
(
PARAMETER_ERROR_MSG
);
done
();
}
})
...
...
@@ -267,9 +271,9 @@ describe("VibratorJsTest_misc_1", function () {
},
function
()
{
},
25
);
}
catch
(
error
)
{
errMessage
=
error
.
toString
();
console
.
info
(
'
SubVibratorJsTest0010 error:
'
+
error
);
expect
(
errMessage
).
assertEqual
(
errMessages
[
0
]);
expect
(
error
.
code
).
assertEqual
(
PARAMETER_ERROR_CODE
);
expect
(
error
.
message
).
assertEqual
(
PARAMETER_ERROR_MSG
);
done
();
}
})
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录