Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
df7e79f3
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,发现更多精彩内容 >>
提交
df7e79f3
编写于
2月 17, 2023
作者:
G
greada
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
power test code optimization
Signed-off-by:
N
greada
<
kangqiao1@huawei.com
>
上级
7b8657cf
变更
6
展开全部
显示空白变更内容
内联
并排
Showing
6 changed file
with
3315 addition
and
2332 deletion
+3315
-2332
powermgr/battery_manager/src/main/js/test/battery_common_event.test.js
...ery_manager/src/main/js/test/battery_common_event.test.js
+3238
-2258
powermgr/display_manager/src/main/js/test/system_display.test.js
...r/display_manager/src/main/js/test/system_display.test.js
+16
-20
powermgr/power_manager/src/main/js/test/power_manager_power.test.js
...ower_manager/src/main/js/test/power_manager_power.test.js
+2
-2
powermgr/power_manager/src/main/js/test/power_manager_running_lock.test.js
...nager/src/main/js/test/power_manager_running_lock.test.js
+1
-1
powermgr/thermal_manager/src/main/js/test/thermal_common_event.test.js
...mal_manager/src/main/js/test/thermal_common_event.test.js
+58
-50
powermgr/thermal_manager/src/main/js/test/thermal_uint.test.js
...mgr/thermal_manager/src/main/js/test/thermal_uint.test.js
+0
-1
未找到文件。
powermgr/battery_manager/src/main/js/test/battery_common_event.test.js
浏览文件 @
df7e79f3
此差异已折叠。
点击以展开。
powermgr/display_manager/src/main/js/test/system_display.test.js
浏览文件 @
df7e79f3
...
...
@@ -93,22 +93,19 @@ export default async function SystemDisplayTest() {
brightness
.
setKeepScreenOn
({
keepScreenOn
:
true
,
success
:
function
()
{
console
.
log
(
'
handling set keep screen on success
0
.
'
);
console
.
log
(
'
handling set keep screen on success.
'
);
brightness
.
setValue
({
value
:
50
,
success
:
function
()
{
console
.
log
(
'
set keep screen on success1.
'
);
setTimeout
(()
=>
{
console
.
log
(
'
set keep screen on success2.
'
);
brightness
.
getValue
({
success
:
(
data
)
=>
{
console
.
log
(
"
set_value_success_value, brightness:
"
+
data
.
value
);
expect
(
data
.
value
===
50
).
assertTrue
();
console
.
log
(
'
set_value_success_value success.
'
);
expect
(
true
).
assertTrue
();
done
();
}
});
},
1000
);
},
fail
:
function
()
{
console
.
log
(
'
set_value_success_value fail.
'
);
expect
().
assertFail
();
done
();
}
});
},
fail
:
function
(
data
,
code
)
{
...
...
@@ -188,13 +185,12 @@ export default async function SystemDisplayTest() {
mode
:
0
,
success
:
()
=>
{
console
.
log
(
"
set_mode_success success
"
);
brightness
.
getMode
({
success
:
(
data
)
=>
{
console
.
log
(
"
set_mode_success, data:
"
+
data
.
mode
);
expect
(
data
.
mode
===
0
).
assertTrue
();
expect
(
true
).
assertTrue
();
},
fail
:
(
data
,
code
)
=>
{
console
.
log
(
"
set_mode_success, data:
"
+
data
+
"
, code:
"
+
code
);
expect
(
code
==
200
).
assertTrue
();
done
();
}
});
},
complete
:
()
=>
{
console
.
log
(
"
The device information is obtained successfully. Procedure
"
);
...
...
powermgr/power_manager/src/main/js/test/power_manager_power.test.js
浏览文件 @
df7e79f3
...
...
@@ -67,9 +67,9 @@ describe('PowerManagerPowerTest', function () {
console
.
log
(
'
Power_Is_Screnn_On_Callback_JSTest0030:
'
+
error
);
expect
().
assertFail
();
}
})
done
();
})
})
/**
* @tc.number SUB_PowerSystem_PowerManager_JSTest_0040
...
...
powermgr/power_manager/src/main/js/test/power_manager_running_lock.test.js
浏览文件 @
df7e79f3
powermgr/thermal_manager/src/main/js/test/thermal_common_event.test.js
浏览文件 @
df7e79f3
...
...
@@ -16,7 +16,7 @@ import commonEvent from '@ohos.commonEvent';
import
thermal
from
"
@ohos.thermal
"
export
default
function
ThermalCommonEvent
()
{
describe
(
'
ThermalCommonEvent
'
,
function
()
{
describe
(
'
ThermalCommonEvent
'
,
function
()
{
console
.
log
(
"
*************Thermal commonEvent Test Begin*************
"
);
/**
...
...
@@ -29,9 +29,9 @@ describe('ThermalCommonEvent', function () {
done
();
})
console
.
log
(
"
*************Thermal commonEvent Test End*************
"
);
})
})
function
createSubscriber
()
{
function
createSubscriber
()
{
let
commonEventSubscribeInfo
=
{
events
:
[
commonEvent
.
Support
.
COMMON_EVENT_THERMAL_LEVEL_CHANGED
],
};
...
...
@@ -68,7 +68,15 @@ function createSubscriber() {
let
level
=
-
1
;
expect
(
level
>=
thermal
.
ThermalLevel
.
COOL
&&
warm
<=
level
.
ThermalLevel
.
EMERGENCY
).
assertTrue
();
});
commonEvent
.
unsubscribe
(
mySubscriber
,
(
error
)
=>
{
if
(
error
.
code
)
{
console
.
error
(
`unsubscribe failed, code is
${
err
.
code
}
`
);
}
else
{
console
.
info
(
"
unsubscribe
"
);
}
})
}).
catch
((
error
)
=>
{
console
.
error
(
'
Operation failed. Cause:
'
+
JSON
.
stringify
(
error
));
});
}}
}
}
powermgr/thermal_manager/src/main/js/test/thermal_uint.test.js
浏览文件 @
df7e79f3
// @ts-nocheck
/*
* Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录