Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
6e1a0c44
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看板
提交
6e1a0c44
编写于
4月 24, 2023
作者:
Z
zhangyushuai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
optimized screenlock test 002
Signed-off-by:
N
zhangyushuai
<
zhangyushuai1@huawei.com
>
上级
4f5da29c
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
31 addition
and
196 deletion
+31
-196
theme/screenlock_ets/Test.json
theme/screenlock_ets/Test.json
+9
-0
theme/screenlock_ets/entry/src/main/ets/test/screenLockPromiseTest.ets
...ock_ets/entry/src/main/ets/test/screenLockPromiseTest.ets
+22
-29
theme/screenlock_ets/entry/src/main/ets/test/screenLockTest.ets
...screenlock_ets/entry/src/main/ets/test/screenLockTest.ets
+0
-5
time/timeTest/entry/src/main/ets/test/systemTimeCommonEvent.test.ets
...st/entry/src/main/ets/test/systemTimeCommonEvent.test.ets
+0
-162
未找到文件。
theme/screenlock_ets/Test.json
浏览文件 @
6e1a0c44
...
...
@@ -8,6 +8,15 @@
"shell-timeout"
:
"600000"
},
"kits"
:
[
{
"type"
:
"ShellKit"
,
"run-command"
:
[
"power-shell wakeup"
,
"power-shell setmode 602"
,
"uinput -T -m 300 720 300 360 200"
,
"uinput -T -m 650 2760 650 1380 200"
]
},
{
"test-file-name"
:
[
"ActsScreenLockETSApiTest.hap"
...
...
theme/screenlock_ets/entry/src/main/ets/test/screenLockPromiseTest.ets
浏览文件 @
6e1a0c44
...
...
@@ -39,12 +39,11 @@ export default function ScreenLockPromiseTest(){
it("SUB_MISC_THEME_screenLock_API_Promise_001", 0, async function (done) {
console.info("------------------start SUB_MISC_THEME_screenLock_API_Promise_001-------------------");
try {
screenLock.isScreenLocked().then((data) => {
console.info("SUB_MISC_THEME_screenLock_API_Promise_001 isScreenLocked result is " + data);
expect(data == result).assertTrue()
console.info("------------------end SUB_MISC_THEME_screenLock_API_Promise_001-------------------");
let data = await screenLock.isScreenLocked();
console.info("SUB_MISC_THEME_screenLock_API_Promise_001 isScreenLocked result is " + data);
expect(data == result).assertTrue()
console.info("------------------end SUB_MISC_THEME_screenLock_API_Promise_001-------------------");
done();
})
} catch (error) {
console.info("SUB_MISC_THEME_screenLock_API_Promise_001 test_setScreenLocked : error = " + error);
expect().assertFail();
...
...
@@ -64,12 +63,11 @@ export default function ScreenLockPromiseTest(){
it("SUB_MISC_THEME_screenLock_API_Promise_002", 0, async function (done) {
console.info("------------------start SUB_MISC_THEME_screenLock_API_Promise_002-------------------");
try {
screenLock.isScreenLocked().then((data) => {
console.info("SUB_MISC_THEME_screenLock_API_Promise_002 isScreenLocked result is " + data);
expect(data == result).assertTrue();
console.info("------------------end SUB_MISC_THEME_screenLock_API_Promise_002-------------------");
let data = await screenLock.isScreenLocked();
console.info("SUB_MISC_THEME_screenLock_API_Promise_002 isScreenLocked result is " + data);
expect(data == result).assertTrue()
console.info("------------------end SUB_MISC_THEME_screenLock_API_Promise_002-------------------");
done();
});
} catch (error) {
console.info("SUB_MISC_THEME_screenLock_API_Promise_002 test_setScreenLocked : error = " + error);
expect().assertFail();
...
...
@@ -89,12 +87,11 @@ export default function ScreenLockPromiseTest(){
it("SUB_MISC_THEME_screenLock_API_Promise_003", 0, async function (done) {
console.info("------------------start SUB_MISC_THEME_screenLock_API_Promise_003-------------------");
try {
screenLock.isSecureMode().then((data) => {
console.info("SUB_MISC_THEME_screenLock_API_Promise_003 isScreenLocked result is " + data);
expect(data == false).assertTrue();
console.info("------------------end SUB_MISC_THEME_screenLock_API_Promise_003-------------------");
done();
});
let data = await screenLock.isSecureMode();
console.info("SUB_MISC_THEME_screenLock_API_Promise_003 isScreenLocked result is " + data);
expect(data == false).assertTrue()
console.info("------------------end SUB_MISC_THEME_screenLock_API_Promise_003-------------------");
done();
} catch (error) {
console.info("SUB_MISC_THEME_screenLock_API_Promise_003 isScreenLocked TRUE: error = " + error);
expect().assertFail();
...
...
@@ -113,19 +110,15 @@ export default function ScreenLockPromiseTest(){
it("SUB_MISC_THEME_screenLock_API_Promise_004", 0, async function (done) {
console.info("------------------start SUB_MISC_THEME_screenLock_API_Promise_004-------------------");
try {
screenLock.unlockScreen().then((data) => {
console.info("====>SUB_MISC_THEME_screenLock_API_Promise_004 success.");
console.info('====>-------------SUB_MISC_THEME_screenLock_API_Promise_004 end----------------------');
expect(true).assertTrue()
done();
}).catch( err => {
console.info("====>SUB_MISC_THEME_screenLock_API_Promise_004 failed because: " + JSON.stringify(err));
expect().assertFail();
done();
});
} catch (error) {
console.info("====>SUB_MISC_THEME_screenLock_API_Promise_004: error = " + error);
expect().assertFail();
let data = await screenLock.unlockScreen();
console.info("====>SUB_MISC_THEME_screenLock_API_Promise_004 success.");
expect(true).assertTrue()
console.info('====>-------------SUB_MISC_THEME_screenLock_API_Promise_004 end----------------------');
done();
} catch (error) {
console.info("====>SUB_MISC_THEME_screenLock_API_Promise_004: error = " + error);
expect().assertFail();
done();
}
console.info("------------------end SUB_MISC_THEME_screenLock_API_Promise_004-------------------");
});
...
...
theme/screenlock_ets/entry/src/main/ets/test/screenLockTest.ets
浏览文件 @
6e1a0c44
...
...
@@ -54,7 +54,6 @@ export default function screenLockJSUnit() {
}catch(err){
console.info("====>logMessage SUB_MISC_THEME_screenLock_API_0001 throw_err = " + err);
expect().assertFail();
done();
}
});
...
...
@@ -84,7 +83,6 @@ export default function screenLockJSUnit() {
done();
}catch(err){
console.info("====>logMessage SUB_MISC_THEME_screenLock_API_0002 throw_err = " + err);
expect().assertFail();
done();
}
});
...
...
@@ -114,7 +112,6 @@ export default function screenLockJSUnit() {
done();
}catch(err){
console.info("====>logMessage SUB_MISC_THEME_screenLock_API_0003 throw_err = " + err);
expect().assertFail();
done();
}
});
...
...
@@ -150,7 +147,6 @@ export default function screenLockJSUnit() {
done();
}catch(err){
console.info('====>SUB_MISC_THEME_screenLock_API_0004 throw_err : ' + JSON.stringify(err));
expect().assertFail();
done();
}
});
...
...
@@ -180,7 +176,6 @@ export default function screenLockJSUnit() {
done();
}catch(err){
console.info("====>logMessage SUB_MISC_THEME_screenLock_API_0007 throw_err = " + err);
expect().assertFail();
done();
}
});
...
...
time/timeTest/entry/src/main/ets/test/systemTimeCommonEvent.test.ets
已删除
100644 → 0
浏览文件 @
4f5da29c
/*
* 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 { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from '@ohos/hypium';
import systemTime from "@ohos.systemTime";
import commonEvent from '@ohos.commonEvent'
export default function systemTimeCommonEventTest() {
describe('systemTimeCommonEventTest', function () {
console.info('====>---------------systemTimeCommonEventTest start-----------------------');
/**
* @tc.number SUB_systemTime_commonEnevt_timeChanged_0010
* @tc.name
* @tc.desc
* @tc.size : MEDIUM
* @tc.type : Function
* @tc.level : Level 3
*/
it('SUB_systemTime_commonEvent_timeChanged_0010', 0, async function (done) {
function unSubscriberCallback (err){
console.debug("====>SUB_systemTime_commonEvent_timeChanged_0010 unSubscriberCallback start");
if (err){
console.debug("====>SUB_systemTime_commonEvent_timeChanged_0010 unSubscriberCallback failed:" +
JSON.stringify(err));
} else {
console.debug("====>SUB_systemTime_commonEvent_timeChanged_0010 unSubscriberCallback finish")
}
}
function subscriberCallback (err, data){
console.debug("====>SUB_systemTime_commonEvent_timeChanged_0010 subscriberCallback data:"
+ JSON.stringify(data));
commonEvent.unsubscribe(subscriber, unSubscriberCallback);
expect(data.event).assertEqual('usual.event.TIME_CHANGED');
console.debug("====>SUB_systemTime_commonEvent_timeChanged_0010 end")
done();
}
var commonEventSubscribeInfo = {
events: ['usual.event.TIME_CHANGED']
}
var subscriber;
commonEvent.createSubscriber(commonEventSubscribeInfo).then((data)=>{
subscriber = data;
console.debug("====>SUB_systemTime_commonEvent_timeChanged_0010 subscriber data:" + JSON.stringify(data))
commonEvent.subscribe(subscriber, subscriberCallback);
console.debug("====>SUB_systemTime_commonEvent_timeChanged_0010 subscriber finish")
let t = setTimeout(async ()=>{
let currentTime= new Date().getTime() + 1500
await systemTime.setTime(currentTime)
clearTimeout(t)
}, 500)
})
});
/**
* @tc.number SUB_systemTime_commonEvent_timeTick_0010
* @tc.name
* @tc.desc
* @tc.size : MEDIUM
* @tc.type : Function
* @tc.level : Level 3
*/
it('SUB_systemTime_commonEvent_timeTick_0010', 0, async function (done) {
function unSubscriberCallback (err){
console.debug("====>SUB_systemTime_commonEvent_timeTick_0010 unSubscriberCallback start");
if (err){
console.debug("====>SUB_systemTime_commonEvent_timeTick_0010 unSubscriberCallback failed:" +
JSON.stringify(err));
} else {
console.debug("====>SUB_systemTime_commonEvent_timeTick_0010 unSubscriberCallback finish")
}
}
function subscriberCallback (err, data){
console.debug("====>SUB_systemTime_commonEvent_timeTick_0010 subscriberCallback data:"
+ JSON.stringify(data));
commonEvent.unsubscribe(subscriber, unSubscriberCallback);
expect(data.event).assertEqual('usual.event.TIME_TICK');
console.debug("====>SUB_systemTime_commonEnevt_timeTick_0010 end")
done();
}
var commonEventSubscribeInfo = {
events: ['usual.event.TIME_TICK']
}
var subscriber;
commonEvent.createSubscriber(commonEventSubscribeInfo).then((data)=>{
subscriber = data;
console.debug("====>SUB_systemTime_commonEvent_timeTick_0010 subscriber data:" + JSON.stringify(data))
commonEvent.subscribe(subscriber, subscriberCallback);
console.debug("====>SUB_systemTime_commonEvent_timeTick_0010 subscriber finish")
let t = setTimeout(async ()=>{
let currentTime= new Date().getTime()
currentTime = currentTime + (58000- (currentTime % 60000))
await systemTime.setTime(currentTime)
clearTimeout(t)
}, 500)
})
});
/**
* @tc.number SUB_systemTime_commonEvent_timezoneChanged_0010
* @tc.name
* @tc.desc
* @tc.size : MEDIUM
* @tc.type : Function
* @tc.level : Level 3
*/
it('SUB_systemTime_commonEvent_timezoneChanged_0010', 0, async function (done) {
function unSubscriberCallback (err){
console.debug("====>SUB_systemTime_commonEvent_timezoneChanged_0010 unSubscriberCallback start");
if (err){
console.debug("====>SUB_systemTime_commonEvent_timezoneChanged_0010 unSubscriberCallback failed:" +
JSON.stringify(err));
} else {
console.debug("====>SUB_systemTime_commonEvent_timezoneChanged_0010 unSubscriberCallback finish")
}
}
function subscriberCallback (err, data){
console.debug("====>SUB_systemTime_commonEvent_timezoneChanged_0010 subscriberCallback data:"
+ JSON.stringify(data));
commonEvent.unsubscribe(subscriber, unSubscriberCallback);
expect(data.event).assertEqual('usual.event.TIMEZONE_CHANGED');
console.debug("====>SUB_systemTime_commonEvent_timezoneChanged_0010 end")
done();
}
var commonEventSubscribeInfo = {
events: ['usual.event.TIMEZONE_CHANGED']
}
var subscriber;
commonEvent.createSubscriber(commonEventSubscribeInfo).then((data)=>{
subscriber = data;
console.debug("====>SUB_systemTime_commonEvent_timezoneChanged_0010 subscriber data:" + JSON.stringify(data))
commonEvent.subscribe(subscriber, subscriberCallback);
console.debug("====>SUB_systemTime_commonEvent_timezoneChanged_0010 subscriber finish")
let t = setTimeout(async ()=>{
await systemTime.setTimezone('Europe/Moscow')
clearTimeout(t)
}, 500)
})
});
});
};
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录