提交 a82ce217 编写于 作者: L liuhaonan2

<liuhaonan8@huawei.com>

Signed-off-by: Nliuhaonan2 <liuhaonan8@huawei.com>
上级 18806717
# Copyright (C) 2021 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("//build/ohos_var.gni")
group("msdp") {
testonly = true
if (is_standard_system) {
deps = [
"msdpdevicestatus:msdp_devicestatus_test",
]
}
}
# Copyright (C) 2021 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("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("msdp_devicestatus_test") {
hap_profile = "./src/main/config.json"
deps = [
":msdp_devicestatus_js_assets",
":msdp_devicestatus_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsMsdpDeviceStatusTest"
}
ohos_js_assets("msdp_devicestatus_js_assets") {
source_dir = "./src/main/js/default"
}
ohos_resources("msdp_devicestatus_resources") {
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
}
{
"description": "Configuration for msdp devicestatus Tests",
"driver": {
"type": "JSUnitTest",
"test-timeout": "60000",
"package": "com.example.mydevicestatusapp",
"shell-timeout": "60000"
},
"kits": [
{
"test-file-name": [
"ActsMsdpDeviceStatusTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
{
"app": {
"bundleName": "com.example.mydevicestatusapp",
"vendor": "example",
"version": {
"code": 1,
"name": "1.0"
},
"apiVersion": {
"compatible": 4,
"target": 5
}
},
"deviceConfig": {},
"module": {
"package": "com.example.mydevicestatusapp",
"name": ".MyApplication",
"deviceType": [
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"visible": true,
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"name": "com.example.mydevicestatusapp.MainAbility",
"icon": "$media:icon",
"description": "$string:mainability_description",
"label": "$string:app_name",
"type": "page",
"launchType": "standard"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
]
}
}
/*
* Copyright (C) 2021 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 device from '@system.device';
export default {
onCreate() {
console.info('AceApplication onCreate');
},
onDestroy() {
console.info('AceApplication onDestroy');
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
}
}
\ No newline at end of file
.container {
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-size: 100px;
}
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
/*
* Copyright (C) 2021 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 app from '@system.app'
//import {Core, ExpectExtend, ReportExtend, InstrumentLog} from 'deccjsunit/index'
import {Core, ExpectExtend} from 'deccjsunit/index'
export default {
data: {
title: ""
},
onInit() {
this.title = this.$t('strings.world');
},
onShow() {
console.info('onShow finish')
const core = Core.getInstance()
const expectExtend = new ExpectExtend({
'id': 'extend'
})
core.addService('expect', expectExtend)
// core.addService('report', instrumentLog)
core.init()
// core.subscribeEvent('spec', instrumentLog)
// core.subscribeEvent('suite', instrumentLog)
// core.subscribeEvent('task', instrumentLog)
const configService = core.getDefaultService('config')
configService.setConfig(this)
require('../../test/List.test')
core.execute()
},
onReady() {
},
}
\ No newline at end of file
/*
* Copyright (C) 2021 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 app from '@system.app'
import devicestatus from '@ohos.devicestatus';
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
var reportLatencyNs = 100;
describe('msdpInfoTest', function () {
/**
* @tc.number DeviceStatus_001
* @tc.name
* @tc.callback:AsyncCallback<HighStillResponse>
* Normal
*/
it('msdp_test_devices_status_001',0, async function(done) {
console.log("device_status_type_001 start")
devicestatus.on('still',deviceStatus.ActivityEvent.ENTER,reportLatencyNs,(data) => {
expect(data.ActivityState == 1).assertTrue();
//unregister
devicestatus.off('still',deviceStatus.ActivityEvent.ENTER,() => {
console.log("msdp_test_devices_status_001 off success");
done();
console.log("msdp_test_devices_status_001 success");
})
})
})
/**
* @tc.number DeviceStatus_002
* @tc.name
* @tc.callback:AsyncCallback<HighStillResponse>
* Normal
*/
it('msdp_test_devices_status_002',0, async function(done) {
console.log("device_status_type_002 start")
devicestatus.on('relativeStill',deviceStatus.ActivityEvent.ENTER,reportLatencyNs,(data) => {
expect(data.ActivityState == 1).assertTrue();
//unregister
devicestatus.off('relativeStill',deviceStatus.ActivityEvent.ENTER,() => {
console.log("msdp_test_devices_status_002 off success");
done();
console.log("msdp_test_devices_status_002 success");
})
})
})
/**
* @tc.number DeviceStatus_003
* @tc.name
* @tc.callback:AsyncCallback<HighStillResponse>
* Normal
*/
it('msdp_test_devices_status_003',0, async function(done) {
console.log("device_status_type_003 start")
devicestatus.on('still',deviceStatus.ActivityEvent.EXIT,reportLatencyNs,(data) => {
expect(data.ActivityState == 2).assertTrue();
//unregister
devicestatus.off('still',deviceStatus.ActivityEvent.EXIT,() => {
console.log("msdp_test_devices_status_003 off success");
done();
console.log("msdp_test_devices_status_003 success");
})
})
})
/**
* @tc.number DeviceStatus_004
* @tc.name
* @tc.callback:AsyncCallback<HighStillResponse>
* Normal
*/
it('msdp_test_devices_status_004',0, async function(done) {
console.log("device_status_type_004 start")
devicestatus.on('relativeStill',deviceStatus.ActivityEvent.EXIT,reportLatencyNs,(data) => {
expect(data.ActivityState == 2).assertTrue();
//unregister
devicestatus.off('relativeStill',deviceStatus.ActivityEvent.EXIT,() => {
console.log("msdp_test_devices_status_004 off success");
done();
console.log("msdp_test_devices_status_004 success");
})
})
})
/**
* @tc.number DeviceStatus_005
* @tc.name
* @tc.callback:AsyncCallback<HighStillResponse>
* Normal
*/
it('msdp_test_devices_status_005',0, async function(done) {
console.log("device_status_type_005 start")
devicestatus.on('still',deviceStatus.ActivityEvent.ENTER_EXIT,reportLatencyNs,(data) => {
expect(data.ActivityState !== -1).assertTrue();
//unregister
devicestatus.off('still',deviceStatus.ActivityEvent.ENTER_EXIT,() => {
console.log("msdp_test_devices_status_005 off success");
done();
console.log("msdp_test_devices_status_005 success");
})
})
})
/**
* @tc.number DeviceStatus_006
* @tc.name
* @tc.callback:AsyncCallback<HighStillResponse>
* Normal
*/
it('msdp_test_devices_status_006',0, async function(done) {
console.log("device_status_type_006 start")
devicestatus.on('relativeStill',deviceStatus.ActivityEvent.ENTER_EXIT,reportLatencyNs,(data) => {
expect(data.ActivityState !== -1).assertTrue();
//unregister
devicestatus.off('relativeStill',deviceStatus.ActivityEvent.ENTER_EXIT,() => {
console.log("msdp_test_devices_status_006 off success");
done();
console.log("msdp_test_devices_status_006 success");
})
})
})
/**
* @tc.number DeviceStatus_007
* @tc.name
* @tc.callback:AsyncCallback<HighStillResponse>
* Normal
*/
it('msdp_test_devices_status_007',0, async function(done) {
console.log("device_status_type_007 start")
devicestatus.on('still',deviceStatus.ActivityEvent.ENTER,reportLatencyNs,(data) => {
expect(data.ActivityState == 1).assertTrue();
//unregister
devicestatus.off('still',deviceStatus.ActivityEvent.ENTER,() => {
console.log("msdp_test_devices_status_007 off success");
done();
console.log("msdp_test_devices_status_007 success");
})
})
})
/**
* @tc.number DeviceStatus_008
* @tc.name
* @tc.callback:AsyncCallback<HighStillResponse>
* -1
*/
it('msdp_test_devices_status_008',0, async function(done) {
console.log("msdp_test_devices_status_008 start");
devicestatus.once('still',(data) => {
console.log("data="+ JSON.stringify(data));
expect(data.ActivityState == 1).assertTrue();
done();
console.log("msdp_test_devices_status_008 once success");
})
})
/**
* @tc.number DeviceStatus_009
* @tc.name
* @tc.callback:AsyncCallback<HighStillResponse>
* Normal
*/
it('msdp_test_devices_status_009',0, async function(done) {
console.log("device_status_type_009 start")
devicestatus.on('relativeStill',deviceStatus.ActivityEvent.EXIT,reportLatencyNs,(data) => {
expect(data.ActivityState == 2).assertTrue();
//unregister
devicestatus.off('relativeStill',deviceStatus.ActivityEvent.ENTER,() => {
console.log("msdp_test_devices_status_009 off success");
done();
console.log("msdp_test_devices_status_009 success");
})
})
})
/**
* @tc.number DeviceStatus_010
* @tc.name
* @tc.callback:AsyncCallback<HighStillResponse>
* -1
*/
it('msdp_test_devices_status_010',0, async function(done) {
console.log("msdp_test_devices_status_010 start");
devicestatus.once('relativeStill',(data) => {
console.log("data="+ JSON.stringify(data));
expect(data.ActivityState == 2).assertTrue();
done();
console.log("msdp_test_devices_status_010 once success");
})
})
})
{
"string": [
{
"name": "app_name",
"value": "MyDeviceStatusApp"
},
{
"name": "mainability_description",
"value": "JS_Phone_Empty Feature Ability"
}
]
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册