Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
b19a2d4b
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看板
未验证
提交
b19a2d4b
编写于
8月 20, 2022
作者:
O
openharmony_ci
提交者:
Gitee
8月 20, 2022
浏览文件
操作
浏览文件
下载
差异文件
!4700 test: 用例删除同步断言
Merge pull request !4700 from ShiJie/OpenHarmony-3.1-Release
上级
86f6a1f9
52789f4b
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
6 addition
and
101 deletion
+6
-101
powermgr/powermgrbattery/src/main/js/default/test/system_battery.test.js
...grbattery/src/main/js/default/test/system_battery.test.js
+0
-30
powermgr/powermgrdisplay/src/main/js/default/test/system_display.test.js
...grdisplay/src/main/js/default/test/system_display.test.js
+6
-71
未找到文件。
powermgr/powermgrbattery/src/main/js/default/test/system_battery.test.js
浏览文件 @
b19a2d4b
...
...
@@ -49,23 +49,17 @@ describe('appInfoTest_battery4', function () {
*/
const
successTest
=
"
get_status_success_test
"
;
it
(
successTest
,
0
,
function
()
{
let
execSucc
=
false
;
let
execcomplete
=
false
;
battery
.
getStatus
({
success
:
(
data
)
=>
{
execSucc
=
true
;
successFunc
(
data
,
successTest
);
},
fail
:
(
data
,
code
)
=>
{
failFunc
(
data
,
code
,
successTest
);
},
complete
:
()
=>
{
execcomplete
=
true
;
completeFunc
(
successTest
);
}
});
expect
(
execSucc
).
assertTrue
();
expect
(
execcomplete
).
assertTrue
();
});
/**
...
...
@@ -75,18 +69,15 @@ describe('appInfoTest_battery4', function () {
*/
const
successNullTest
=
"
get_status_success_null_test
"
;
it
(
successNullTest
,
0
,
function
()
{
let
execcomplete
=
false
;
battery
.
getStatus
({
success
:
null
,
fail
:
(
data
,
code
)
=>
{
failFunc
(
data
,
code
,
successNullTest
);
},
complete
:
()
=>
{
execcomplete
=
true
;
completeFunc
(
successNullTest
);
}
});
expect
(
execcomplete
).
assertTrue
();
});
/**
...
...
@@ -96,17 +87,14 @@ describe('appInfoTest_battery4', function () {
*/
const
successEmptyTest
=
"
get_status_success_null_test
"
;
it
(
successEmptyTest
,
0
,
function
()
{
let
execcomplete
=
false
;
battery
.
getStatus
({
fail
:
(
data
,
code
)
=>
{
failFunc
(
data
,
code
,
successEmptyTest
);
},
complete
:
()
=>
{
execcomplete
=
true
;
completeFunc
(
successEmptyTest
);
}
});
expect
(
execcomplete
).
assertTrue
();
});
/**
...
...
@@ -116,21 +104,15 @@ describe('appInfoTest_battery4', function () {
*/
let
failNullTest
=
"
get_status_fail_null_test
"
;
it
(
failNullTest
,
0
,
function
()
{
let
execSucc
=
false
;
let
execcomplete
=
false
;
battery
.
getStatus
({
success
:
(
data
)
=>
{
execSucc
=
true
;
successFunc
(
data
,
failNullTest
);
},
fail
:
null
,
complete
:
()
=>
{
execcomplete
=
true
;
completeFunc
(
failNullTest
);
}
});
expect
(
execSucc
).
assertTrue
();
expect
(
execcomplete
).
assertTrue
();
});
/**
...
...
@@ -140,20 +122,14 @@ describe('appInfoTest_battery4', function () {
*/
let
failEmptyTest
=
"
get_status_fail_empty_test
"
;
it
(
failEmptyTest
,
0
,
function
()
{
let
execSucc
=
false
;
let
execcomplete
=
false
;
battery
.
getStatus
({
success
:
()
=>
{
execSucc
=
true
;
successFunc
(
data
,
failEmptyTest
);
},
complete
:
()
=>
{
execcomplete
=
true
;
completeFunc
(
failEmptyTest
);
}
});
expect
(
execSucc
).
assertTrue
();
expect
(
execcomplete
).
assertTrue
();
});
/**
...
...
@@ -163,10 +139,8 @@ describe('appInfoTest_battery4', function () {
*/
let
completeNullTest
=
"
get_status_complete_null_test
"
;
it
(
completeNullTest
,
0
,
function
()
{
let
execSucc
=
false
;
battery
.
getStatus
({
success
:
(
data
)
=>
{
execSucc
=
true
;
successFunc
(
data
,
completeNullTest
);
},
fail
:
(
data
,
code
)
=>
{
...
...
@@ -174,7 +148,6 @@ describe('appInfoTest_battery4', function () {
},
complete
:
null
});
expect
(
execSucc
).
assertTrue
();
});
/**
...
...
@@ -184,17 +157,14 @@ describe('appInfoTest_battery4', function () {
*/
let
completeEmptyTest
=
"
get_status_complete_empty_test
"
;
it
(
completeEmptyTest
,
0
,
function
()
{
let
execSucc
=
false
;
battery
.
getStatus
({
success
:
(
data
)
=>
{
execSucc
=
true
;
successFunc
(
data
,
completeEmptyTest
);
},
fail
:
(
data
,
code
)
=>
{
failFunc
(
data
,
code
,
completeEmptyTest
);
}
});
expect
(
execSucc
).
assertTrue
();
});
/**
...
...
powermgr/powermgrdisplay/src/main/js/default/test/system_display.test.js
浏览文件 @
b19a2d4b
...
...
@@ -17,18 +17,14 @@ import brightness from '@system.brightness';
import
{
describe
}
from
'
deccjsunit/index
'
;
const
INPUT_ERROR_CODE_CODE
=
202
;
const
SET_VALUE_MSG
=
"
setValue: value is not an available number
"
;
const
SET_MODE_MSG
=
"
setMode: value is not an available number
"
;
function
isNotSupported
(
data
)
{
return
data
===
"
setMode: Auto adjusting brightness is not supported
"
;
}
const
SET_VALUE_MSG
=
"
value is not an available number
"
;
const
SET_MODE_MSG
=
"
value is not an available number
"
;
function
sleep
(
time
){
return
new
Promise
((
resolve
)
=>
setTimeout
(
resolve
,
time
));
}
describe
(
'
appInfoTest_d
oisplay1
'
,
function
()
{
describe
(
'
appInfoTest_d
isplay
'
,
function
()
{
console
.
log
(
"
*************System SystemDisplay Unit Test Begin*************
"
);
/**
...
...
@@ -37,8 +33,6 @@ describe('appInfoTest_doisplay1', function () {
* @tc.desc Get brightness success
*/
it
(
'
get_value_success
'
,
0
,
function
()
{
let
execSucc
=
false
;
let
execComplete
=
false
;
let
currValue
=
100
;
let
setValue
=
120
;
brightness
.
getValue
({
...
...
@@ -53,7 +47,6 @@ describe('appInfoTest_doisplay1', function () {
});
brightness
.
getValue
({
success
:
(
data
)
=>
{
execSucc
=
true
;
expect
(
setValue
===
data
.
value
).
assertTrue
();
},
fail
:
(
data
,
code
)
=>
{
...
...
@@ -61,12 +54,9 @@ describe('appInfoTest_doisplay1', function () {
expect
().
assertFail
();
},
complete
:
()
=>
{
execComplete
=
true
;
console
.
log
(
"
The device information is obtained successfully. Procedure
"
);
}
});
expect
(
execSucc
).
assertTrue
();
expect
(
execComplete
).
assertTrue
();
brightness
.
setValue
({
value
:
currValue
...
...
@@ -79,18 +69,15 @@ describe('appInfoTest_doisplay1', function () {
* @tc.desc Get brightness
*/
it
(
'
get_status_test_success_not_must
'
,
0
,
function
()
{
let
execComplete
=
false
;
brightness
.
getValue
({
fail
:
(
data
,
code
)
=>
{
console
.
log
(
"
get_status_test_success_not_must, data:
"
+
data
+
"
, code:
"
+
code
);
expect
().
assertFail
();
},
complete
:
()
=>
{
execComplete
=
true
;
console
.
log
(
"
The device information is obtained successfully. Procedure
"
);
}
});
expect
(
execComplete
).
assertTrue
();
})
/**
...
...
@@ -99,14 +86,11 @@ describe('appInfoTest_doisplay1', function () {
* @tc.desc Get brightness
*/
it
(
'
get_value_fail_not_must_test
'
,
0
,
function
()
{
let
execComplete
=
false
;
brightness
.
getValue
({
complete
:
()
=>
{
execComplete
=
true
;
console
.
log
(
"
The device information is obtained successfully. Procedure
"
);
}
});
expect
(
execComplete
).
assertTrue
();
});
/**
...
...
@@ -125,8 +109,6 @@ describe('appInfoTest_doisplay1', function () {
* @tc.desc Set brightness success
*/
it
(
'
set_value_success_all
'
,
0
,
function
()
{
let
execSucc
=
false
;
let
execComplete
=
false
;
let
setValue
=
200
;
let
currValue
=
100
;
brightness
.
getValue
({
...
...
@@ -138,7 +120,6 @@ describe('appInfoTest_doisplay1', function () {
brightness
.
setValue
({
value
:
setValue
,
success
:
()
=>
{
execSucc
=
true
;
brightness
.
getValue
({
success
:
(
data
)
=>
{
expect
(
data
.
value
===
setValue
).
assertTrue
();
...
...
@@ -150,12 +131,9 @@ describe('appInfoTest_doisplay1', function () {
expect
().
assertFail
();
},
complete
:
()
=>
{
execComplete
=
true
;
console
.
log
(
"
The device information is obtained successfully. Procedure
"
);
}
});
expect
(
execSucc
).
assertTrue
();
expect
(
execComplete
).
assertTrue
();
brightness
.
setValue
({
value
:
currValue
...
...
@@ -212,8 +190,6 @@ describe('appInfoTest_doisplay1', function () {
* @tc.desc Get mode success
*/
it
(
'
get_mode_success
'
,
0
,
function
()
{
let
execSucc
=
false
;
let
execComplete
=
false
;
let
modeVal
=
0
;
let
exec
=
true
;
brightness
.
getMode
({
...
...
@@ -226,7 +202,7 @@ describe('appInfoTest_doisplay1', function () {
mode
:
modeVal
?
0
:
1
,
fail
:
(
data
,
code
)
=>
{
console
.
log
(
"
get_mode_success, data:
"
+
data
+
"
, code:
"
+
code
);
exec
=
isNotSupported
(
data
)
?
false
:
tru
e
;
exec
=
fals
e
;
}
})
if
(
!
exec
)
{
...
...
@@ -234,20 +210,16 @@ describe('appInfoTest_doisplay1', function () {
}
brightness
.
getMode
({
success
:
(
data
)
=>
{
execSucc
=
true
;
expect
(
data
.
mode
===
!
modeVal
).
assertTrue
()
;
expect
(
data
.
mode
===
(
modeVal
?
0
:
1
)).
assertTrue
();
},
fail
:
(
data
,
code
)
=>
{
console
.
log
(
"
get_mode_success, data:
"
+
data
+
"
, code:
"
+
code
);
expect
().
assertFail
();
},
complete
:
()
=>
{
execComplete
=
true
;
console
.
log
(
"
The device information is obtained successfully. Procedure
"
);
}
});
expect
(
execSucc
).
assertTrue
();
expect
(
execComplete
).
assertTrue
();
brightness
.
setMode
({
mode
:
modeVal
});
})
...
...
@@ -258,18 +230,15 @@ describe('appInfoTest_doisplay1', function () {
* @tc.desc Get mode success is null
*/
it
(
'
get_mode_success_null
'
,
0
,
function
()
{
let
execComplete
=
false
;
brightness
.
getMode
({
fail
:
(
data
,
code
)
=>
{
console
.
log
(
"
get_mode_success_null, data:
"
+
data
+
"
, code:
"
+
code
);
expect
().
assertFail
();
},
complete
:
()
=>
{
execComplete
=
true
;
console
.
log
(
"
The device information is obtained successfully. Procedure
"
);
}
});
expect
(
execComplete
).
assertTrue
();
});
/**
...
...
@@ -278,8 +247,6 @@ describe('appInfoTest_doisplay1', function () {
* @tc.desc set mode success
*/
it
(
'
set_mode_success
'
,
0
,
function
()
{
let
execSucc
=
false
;
let
execComplete
=
false
;
let
modeVal
=
0
;
brightness
.
getMode
({
success
:
(
data
)
=>
{
...
...
@@ -290,32 +257,18 @@ describe('appInfoTest_doisplay1', function () {
brightness
.
setMode
({
mode
:
modeVal
?
0
:
1
,
success
:
()
=>
{
execSucc
=
true
;
console
.
log
(
"
set_mode_success success
"
);
brightness
.
getMode
({
success
:
(
data
)
=>
{
console
.
log
(
"
set_mode_success, data:
"
+
data
.
mode
);
expect
(
data
.
mode
===
!
modeVal
).
assertTrue
();
expect
(
data
.
mode
===
(
modeVal
?
0
:
1
)
).
assertTrue
();
}
});
},
fail
:
(
data
,
code
)
=>
{
if
(
!
isNotSupported
(
data
))
{
console
.
log
(
"
set_mode_success, data:
"
+
data
+
"
, code:
"
+
code
);
expect
().
assertFail
();
}
else
{
console
.
log
(
"
set_mode_success not supported
"
);
execSucc
=
true
;
expect
(
isNotSupported
(
data
)).
assertTrue
();
}
},
complete
:
()
=>
{
execComplete
=
true
;
console
.
log
(
"
The device information is obtained successfully. Procedure
"
);
}
});
expect
(
execSucc
).
assertTrue
();
expect
(
execComplete
).
assertTrue
();
brightness
.
setMode
({
mode
:
modeVal
});
});
...
...
@@ -326,7 +279,6 @@ describe('appInfoTest_doisplay1', function () {
* @tc.desc set mode fail
*/
it
(
'
set_mode_fail
'
,
0
,
function
()
{
let
execComplete
=
false
;
brightness
.
setMode
({
mode
:
"
0
"
,
success
:
()
=>
{
...
...
@@ -338,11 +290,9 @@ describe('appInfoTest_doisplay1', function () {
expect
(
data
===
SET_MODE_MSG
).
assertTrue
();
},
complete
:
()
=>
{
execComplete
=
true
;
console
.
log
(
"
The device information is obtained successfully. Procedure
"
);
}
});
expect
(
execComplete
).
assertTrue
();
});
/**
...
...
@@ -351,25 +301,17 @@ describe('appInfoTest_doisplay1', function () {
* @tc.desc set keep screen on true
*/
it
(
'
set_keep_screen_on_true
'
,
0
,
async
function
()
{
let
execSucc
=
false
;
let
execComplete
=
false
;
let
sleepTime
=
35
*
1000
;
brightness
.
setKeepScreenOn
({
keepScreenOn
:
true
,
success
:
()
=>
{
execSucc
=
true
;
},
fail
:
(
data
,
code
)
=>
{
console
.
log
(
"
set_keep_screen_on, data:
"
+
data
+
"
, code:
"
+
code
);
expect
().
assertFail
();
},
complete
:
()
=>
{
execComplete
=
true
;
console
.
log
(
"
The device information is obtained successfully. Procedure
"
);
}
});
expect
(
execSucc
).
assertTrue
();
expect
(
execComplete
).
assertTrue
();
await
sleep
(
sleepTime
);
power
.
isScreenOn
().
then
(
screenOn
=>
{
...
...
@@ -386,14 +328,9 @@ describe('appInfoTest_doisplay1', function () {
* @tc.desc set keep screen on false
*/
it
(
'
set_keep_screen_on_false
'
,
0
,
async
function
()
{
let
execSucc
=
false
;
let
execComplete
=
false
;
let
sleepTime
=
35
*
1000
;
brightness
.
setKeepScreenOn
({
keepScreenOn
:
false
,
success
:
()
=>
{
execSucc
=
true
;
},
fail
:
(
data
,
code
)
=>
{
console
.
log
(
"
set_keep_screen_on_false, data:
"
+
data
+
"
, code:
"
+
code
);
expect
().
assertFail
();
...
...
@@ -403,8 +340,6 @@ describe('appInfoTest_doisplay1', function () {
console
.
log
(
"
The device information is obtained successfully. Procedure
"
);
}
});
expect
(
execSucc
).
assertTrue
();
expect
(
execComplete
).
assertTrue
();
await
sleep
(
sleepTime
);
power
.
isScreenOn
().
then
(
screenOn
=>
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录