提交 1f16ff48 编写于 作者: Z zhaoyuan

update publishicontest

Signed-off-by: Nzhaoyuan <zhaoyuan17@huawei.com>
上级 3c9e9888
......@@ -15,9 +15,6 @@ import("//build/ohos_var.gni")
group("ans_standard") {
testonly = true
if (is_standard_system) {
deps = [
"cancel_test:cancel_test",
"publish_test:publish_test",
]
deps = [ "publishicontest:ActsAnsIconTest" ]
}
}
# 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("ActsAnsIconTest") {
hap_profile = "./entry/src/main/config.json"
deps = [
":hjs_demo_js_assets",
":hjs_demo_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsAnsIconTest"
}
ohos_js_assets("hjs_demo_js_assets") {
source_dir = "./entry/src/main/js/default"
}
ohos_resources("hjs_demo_resources") {
sources = [ "./entry/src/main/js/resources" ]
hap_profile = "./entry/src/main/config.json"
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "JSUnitTest",
"test-timeout": "21600000",
"package": "com.example.actsansicontest",
"shell-timeout": "21600000"
},
"kits": [
{
"test-file-name": [
"ActsAnsIconTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
{
"app": {
"bundleName": "com.example.actsansicontest",
"vendor": "example",
"version": {
"code": 1,
"name": "1.0"
},
"apiVersion": {
"compatible": 5,
"target": 5,
"releaseType": "Beta1"
}
},
"deviceConfig": {},
"module": {
"package": "com.example.actsansicontest",
"name": ".actsansicontest",
"deviceType": [
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"name": "com.example.actsansicontest.MainAbility",
"icon": "$media:icon",
"description": "$string:mainability_description",
"label": "$string:app_name",
"type": "page",
"isVisible": "true",
"launchType": "standard"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
]
}
}
\ 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.
*/
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">
icon_pixcelMap
</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 file from '@system.file'
import {Core, ExpectExtend} from 'deccjsunit/index'
const injectRef = Object.getPrototypeOf(global) || global
injectRef.regeneratorRuntime = require('@babel/runtime/regenerator')
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.init()
const configService = core.getDefaultService('config')
configService.setConfig(this)
require('../../../test/List.test')
core.execute()
},
onReady() {
console.info('onReady');
},
}
{
"string": [
{
"name": "app_name",
"value": "Subscriber"
},
{
"name": "mainability_description",
"value": "JS_Phone_Empty Feature Ability"
}
]
}
\ 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 notify from '@ohos.notification'
import image from '@ohos.multimedia.image'
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
var largeBuffer
var smallBuffer
var opts
var subInfo
var largeIcon
var smallIcon
describe('ActsAnsIconTest', function () {
console.info("===========ActsAnsIconTest start====================>");
//consume
function consumeCallback(err,data) {
console.debug("==========================consumeCallback data : =======================>" +err+ JSON.stringify(data));
data.largeIcon.getPixelBytesNumber().then((dataLarge)=>{
console.info("==================getPixelBytesNumber_largeIcon dataLarge==================>"+ dataLarge);
console.info("==================getPixelBytesNumber_largeIcon largeBuffer==================>"+ largeBuffer);
expect(dataLarge).assertequal(largeBuffer);
})
data.smallIcon.getPixelBytesNumber().then((dataSmall)=>{
console.info("==================getPixelBytesNumber_smallIcon dataSmall==================>"+ dataSmall);
console.info("==================getPixelBytesNumber_smallIcon smallBuffer==================>"+ smallBuffer);
expect(dataSmall).assertequal(smallBuffer);
})
}
function subscribeCallback(err) {
console.info("==========================subscribeCallback start=======================>");
console.info("================subscribeCallback err : =======================>" + JSON.stringify(err));
console.info("==========================subscribeCallback end=======================>");
}
function publishCallback(err){
console.info("==========================publishCallback start=======================>");
console.info("================publishCallback err : =======================>" + JSON.stringify(err));
console.info("==========================publishCallback end=======================>");
}
/*
* @tc.number: ActsAnsIconTest_0100
* @tc.name: createPixelMap()
* @tc.desc: verify the function of subscribe
*/
it('ActsAnsIconTest_0100', 0, async function (done) {
console.debug("===============ActsAnsIconTest_0100 start====================>");
subInfo ={
onConsume:consumeCallback,
}
await notify.subscribe(subInfo,subscribeCallback);
largeBuffer = new ArrayBuffer(64);
smallBuffer = new ArrayBuffer(32);
opts = {alphaType: 0, editable: true, pixelFormat: 4, scaleMode: 1, size: {height: 2, width: 3}}
const promise_Large = image.createPixelMap(largeBuffer, opts);
promise_Large.then((data) => {
console.debug("==========================createPixelMap_promise_Large=======================>");
largeIcon = data;
console.debug("==========================createPixelMap_promise_Large largeIcon=======================>"+largeIcon);
const promise_Small = image.createPixelMap(smallBuffer, opts);
promise_Small.then((data) => {
console.debug("==========================createPixelMap_promise_Small=======================>");
smallIcon = data;
console.debug("==========================createPixelMap_promise_Small smallIcon=======================>"+smallIcon);
notify.publish({
id: 1,
content: {
contentType: notify.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
normal: {
title: "test1_title",
text: "test1_text",
additionalText: "test1_additionalText"
},
},
slotType:notify.SlotType.SOCIAL_COMMUNICATION,
classification:"classification1",
sortingKey:"sortingKey1",
smallIcon:smallIcon,
largeIcon:largeIcon,
},publishCallback);
done();
});
});
})
})
/*
* 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.
*/
require('./Icon.js')
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册