提交 5a0a20c2 编写于 作者: Y yqhan

Modify the worker test case module

issue: https://gitee.com/openharmony/xts_acts/issues/I68FR8Signed-off-by: Nyqhan <hanyuqing2@huawei.com>
上级 9851c0c6
{
"app": {
"bundleName": "com.example.workertest",
"vendor": "huawei",
"versionCode": 1000000,
"versionName": "1.0.0",
"icon": "$media:icon",
"label": "$string:app_name",
"distributedNotificationEnabled": true,
"debug": false,
"description": "$string:app_name",
"keepAlive": true,
"singleUser": true,
"minAPIVersion": 9,
"targetAPIVersion": 9,
"car": {
"apiCompatibleVersion": 9,
"singleUser": false
}
}
}
{
"string":[
{
"name":"app_name",
"value":"WorkerTest"
}
]
}
\ No newline at end of file
# Copyright (C) 2022 Huawei Device Co., Ltd. # Copyright (c) 2022 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
# You may obtain a copy of the License at # You may obtain a copy of the License at
...@@ -14,23 +14,30 @@ ...@@ -14,23 +14,30 @@
import("//test/xts/tools/build/suite.gni") import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("worker_js_hap") { ohos_js_hap_suite("worker_js_hap") {
hap_profile = "./src/main/config.json" hap_profile = "entry/src/main/module.json"
js_build_mode = "debug"
deps = [ deps = [
":worker_js_assets", ":workertest_js_assets",
":worker_resources", ":workertest_resources",
] ]
certificate_profile = "./signature/openharmony_sx.p7b" ets2abc = true
hap_name = "ActsWorkerJSTest" certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsWorkerJsTest"
subsystem_name = "commonlibrary" subsystem_name = "commonlibrary"
part_name = "ets_utils" part_name = "ets_utils"
} }
ohos_js_assets("worker_js_assets") {
js2abc = true ohos_app_scope("workertest_app_profile") {
hap_profile = "./src/main/config.json" app_profile = "AppScope/app.json"
source_dir = "./src/main/js" sources = [ "AppScope/resources" ]
} }
ohos_resources("worker_resources") {
sources = [ "./src/main/resources" ] ohos_js_assets("workertest_js_assets") {
hap_profile = "./src/main/config.json" source_dir = "entry/src/main/ets"
}
ohos_resources("workertest_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":workertest_app_profile" ]
hap_profile = "entry/src/main/module.json"
} }
{ {
"description": "Configuration for startup worker js api Tests", "description": "Configuration for hjunit demo Tests",
"driver": { "driver": {
"type": "OHJSUnitTest", "type": "OHJSUnitTest",
"test-timeout": "800000", "test-timeout": "800000",
"bundle-name": "com.example.workerxts", "bundle-name": "com.example.workertest",
"package-name": "com.example.workerxts", "module-name": "entry",
"shell-timeout": "800000" "shell-timeout": "800000"
}, },
"kits": [ "kits": [
{ {
"test-file-name": [ "test-file-name": [
"ActsWorkerJSTest.hap" "ActsWorkerJsTest.hap"
], ],
"type": "AppInstallKit", "type": "AppInstallKit",
"cleanup-apps": true "cleanup-apps": true
} }
] ]
} }
\ No newline at end of file
/* /*
* Copyright (c) 2022 Huawei Device Co., Ltd. * Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
export default { import AbilityStage from "@ohos.app.ability.AbilityStage"
onCreate() {
console.info('TestApplication onCreate') var printLog0 = 'Worker:AbilityStage:'
export default class MyAbilityStage extends AbilityStage {
}, onCreate() {
onDestroy() { console.info(printLog0 + "onCreate")
console.info("TestApplication onDestroy"); }
} }
}; \ No newline at end of file
/* /*
* Copyright (c) 2021 Huawei Device Co., Ltd. * Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import Ability from '@ohos.app.ability.UIAbility';
.container {
display: flex; var printLog = 'Worker:MainAbility:'
flex-direction: column; export default class MainAbility extends Ability {
justify-content: center; onCreate(want, launchParam) {
align-items: center; console.info(printLog + 'onCreate')
left: 0px; }
top: 0px;
width: 100%; onDestroy() {
height: 100%; console.info(printLog + 'onDestroy')
} }
.title { onWindowStageCreate(windowStage) {
font-size: 60px; // Main window is created, set main page for this ability
text-align: center; console.info(printLog + 'onWindowStageCreate')
width: 100%;
height: 40%; windowStage.loadContent("MainAbility/pages/index", (err, data) => {
margin: 10px; if (err.code) {
} console.error('Failed to load the content. Cause:' + JSON.stringify(err));
.btn { return;
width: 50%; }
height: 100px; console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data))
font-size: 40px; });
} }
@media screen and (device-type: phone) and (orientation: landscape) { onWindowStageDestroy() {
.title { console.info(printLog + 'onWindowStageDestroy')
font-size: 60px; }
}
} onForeground() {
console.info(printLog + 'onForeground')
@media screen and (device-type: tablet) and (orientation: landscape) { }
.title {
font-size: 100px; onBackground() {
} console.info(printLog + 'onBackground')
} }
\ No newline at end of file };
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import router from '@ohos.router';
import app from '@system.app' import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
import device from '@system.device' import { Hypium } from '@ohos/hypium'
import router from '@system.router' import testsuite from '../../test/List.test'
import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
import { Hypium } from '@ohos/hypium' @Entry
import testsuite from '../../../test/List.test' @Component
struct Index {
@State message: string = 'MainAbility Worker'
export default {
data: { aboutToAppear() {
title: '' console.info("start run testcase!!!!")
}, var abilityDelegator: any
onInit() { abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
this.title = this.$t('strings.world'); var abilityDelegatorArguments: any
}, abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
onShow() { console.info('start run testcase!!!')
console.info('onShow finish') Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite)
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator() }
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
console.info('start run testcase!!!') build() {
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite) Row() {
}, Column() {
touchMove(e) { Text(this.message)
if (e.direction === 'right') { .fontSize(50)
this.appExit(); .fontWeight(FontWeight.Bold)
} }
}, .width('100%')
appExit() { }
app.terminate() .height('100%')
} }
} }
\ No newline at end of file
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import Ability from '@ohos.app.ability.UIAbility'
export default {
onCreate() { export default class TestAbility extends Ability {
console.info("Application onCreate"); onCreate(want, launchParam) {
}, console.log('TestAbility onCreate')
onDestroy() { }
console.info("Application onDestroy");
} onDestroy() {
}; console.log('TestAbility onDestroy')
}
onWindowStageCreate(windowStage) {
console.log('TestAbility onWindowStageCreate')
windowStage.loadContent("TestAbility/pages/index", (err, data) => {
if (err.code) {
console.error('Failed to load the content. Cause:' + JSON.stringify(err));
return;
}
console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data))
});
}
onWindowStageDestroy() {
console.log('TestAbility onWindowStageDestroy')
}
onForeground() {
console.log('TestAbility onForeground')
}
onBackground() {
console.log('TestAbility onBackground')
}
};
\ No newline at end of file
/*
* 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 router from '@ohos.router';
@Entry
@Component
struct Index {
aboutToAppear() {
console.info('TestAbility index aboutToAppear')
}
@State message: string = 'Hello World'
build() {
Row() {
Column() {
Text(this.message)
.fontSize(50)
.fontWeight(FontWeight.Bold)
Button() {
Text('next page')
.fontSize(20)
.fontWeight(FontWeight.Bold)
}.type(ButtonType.Capsule)
.margin({
top: 20
})
.backgroundColor('#0D9FFB')
.width('35%')
.height('5%')
.onClick(()=>{
})
}
.width('100%')
}
.height('100%')
}
}
\ No newline at end of file
/* /*
* Copyright (c) 2022 Huawei Device Co., Ltd. * Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import TestRunner from '@ohos.application.testRunner'
import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry' import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
function translateParamsToString(parameters) { var abilityDelegator = undefined
const keySet = new Set([ var abilityDelegatorArguments = undefined
'-s class', '-s notClass', '-s suite', '-s itName',
'-s level', '-s testType', '-s size', '-s timeout', function translateParamsToString(parameters) {
'-s package', '-s dryRun' const keySet = new Set([
]) '-s class', '-s notClass', '-s suite', '-s it',
let targetParams = ''; '-s level', '-s testType', '-s size', '-s timeout',
for (const key in parameters) { '-s dryRun'
if (keySet.has(key)) { ])
targetParams += ' ' + key + ' ' + parameters[key] let targetParams = '';
} for (const key in parameters) {
} if (keySet.has(key)) {
return targetParams.trim() targetParams = `${targetParams} ${key} ${parameters[key]}`
} }
}
export default { return targetParams.trim()
onPrepare() { }
console.info('OpenHarmonyTestRunner OnPrepare')
}, async function onAbilityCreateCallback() {
onRun() { console.log("onAbilityCreateCallback");
console.log('OpenHarmonyTestRunner onRun run') }
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator() async function addAbilityMonitorCallback(err: any) {
console.info("addAbilityMonitorCallback : " + JSON.stringify(err))
var testAbilityName = abilityDelegatorArguments.parameters['-p'] + '.MainAbility' }
var cmd = 'aa start -d 0 -a ' + testAbilityName + ' -b ' + abilityDelegatorArguments.bundleName export default class OpenHarmonyTestRunner implements TestRunner {
cmd += ' ' + translateParamsToString(abilityDelegatorArguments.parameters) constructor() {
var debug = abilityDelegatorArguments.parameters["-D"] }
console.info('debug value : '+debug)
if (debug == 'true') onPrepare() {
{ console.info("OpenHarmonyTestRunner OnPrepare ")
cmd += ' -D' }
}
console.info('cmd : '+cmd) async onRun() {
abilityDelegator.executeShellCommand(cmd, (err, data) => { console.log('OpenHarmonyTestRunner onRun run')
console.info('executeShellCommand : err : ' + JSON.stringify(err)); abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
console.info('executeShellCommand : data : ' + data.stdResult); abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
console.info('executeShellCommand : data : ' + data.exitCode); var testAbilityName = abilityDelegatorArguments.bundleName + '.MainAbility'
}) let lMonitor = {
} abilityName: testAbilityName,
}; onAbilityCreate: onAbilityCreateCallback,
};
abilityDelegator.addAbilityMonitor(lMonitor, addAbilityMonitorCallback)
var cmd = 'aa start -d 0 -a com.example.workertest.MainAbility' + ' -b ' + abilityDelegatorArguments.bundleName
cmd += ' '+translateParamsToString(abilityDelegatorArguments.parameters)
var debug = abilityDelegatorArguments.parameters["-D"]
if (debug == 'true')
{
cmd += ' -D'
}
console.info('cmd : '+cmd)
abilityDelegator.executeShellCommand(cmd,
(err: any, d: any) => {
console.info('executeShellCommand : err : ' + JSON.stringify(err));
console.info('executeShellCommand : data : ' + d.stdResult);
console.info('executeShellCommand : data : ' + d.exitCode);
})
console.info('OpenHarmonyTestRunner onRun end')
}
};
\ No newline at end of file
/* /*
* Copyright (c) 2022 Huawei Device Co., Ltd. * Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
export default { import WorkerTest from './WorkerTest.test.js'
data: { import threadWorkerTest from './ThreadWorker.test.js'
title: ""
}, export default function List() {
onInit() { WorkerTest()
this.title = this.$t('strings.world'); threadWorkerTest()
} }
} \ No newline at end of file
...@@ -23,7 +23,7 @@ parentPort.onmessage = function(e) { ...@@ -23,7 +23,7 @@ parentPort.onmessage = function(e) {
let data = e.data; let data = e.data;
switch(data.type) { switch(data.type) {
case "new": case "new":
ss = new worker.ThreadWorker("workers/newworker_0091.js"); ss = new worker.ThreadWorker("entry/ets/workers/newworker_0091.js");
console.log("worker:: workerxx "); console.log("worker:: workerxx ");
ss.onexit = function() { ss.onexit = function() {
flag = true; flag = true;
......
...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) { ...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) {
let data = e.data; let data = e.data;
switch(data.type) { switch(data.type) {
case "new": case "new":
ss = new worker.ThreadWorker("workers/newworker_0101.js"); ss = new worker.ThreadWorker("entry/ets/workers/newworker_0101.js");
ss.onmessage = function(ee) { ss.onmessage = function(ee) {
backValue = ee.data; backValue = ee.data;
flag = true; flag = true;
......
...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) { ...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) {
let data = e.data; let data = e.data;
switch(data.type) { switch(data.type) {
case "new": case "new":
ss = new worker.ThreadWorker("workers/newworker_0111.js"); ss = new worker.ThreadWorker("entry/ets/workers/newworker_0111.js");
ss.onmessage = function(ee) { ss.onmessage = function(ee) {
backValue = ee.data; backValue = ee.data;
flag = true; flag = true;
......
...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) { ...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) {
let data = e.data; let data = e.data;
switch(data.type) { switch(data.type) {
case "new": case "new":
ss = new worker.ThreadWorker("workers/newworker_0121.js"); ss = new worker.ThreadWorker("entry/ets/workers/newworker_0121.js");
ss.onmessage = function(ee) { ss.onmessage = function(ee) {
backValue = ee.data; backValue = ee.data;
flag = true; flag = true;
......
...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) { ...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) {
let data = e.data; let data = e.data;
switch(data.type) { switch(data.type) {
case "new": case "new":
ss = new worker.ThreadWorker("workers/newworker_0122.js"); ss = new worker.ThreadWorker("entry/ets/workers/newworker_0122.js");
ss.terminate(); ss.terminate();
ss.onexit = function() { ss.onexit = function() {
parentPort.postMessage(ss != null); parentPort.postMessage(ss != null);
......
...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) { ...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) {
var data = e.data; var data = e.data;
switch(data.type) { switch(data.type) {
case "new": case "new":
ss = new worker.ThreadWorker("workers/newworker_0131.js"); ss = new worker.ThreadWorker("entry/ets/workers/newworker_0131.js");
ss.onmessage = function(ee) { ss.onmessage = function(ee) {
backValue = ee.data; backValue = ee.data;
flag = true; flag = true;
......
...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) { ...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) {
let data = e.data; let data = e.data;
switch(data.type) { switch(data.type) {
case "new": case "new":
ss = new worker.ThreadWorker("workers/newworker_0141.js"); ss = new worker.ThreadWorker("entry/ets/workers/newworker_0141.js");
ss.onmessage = function(ee) { ss.onmessage = function(ee) {
backValue = ee.data; backValue = ee.data;
flag = true; flag = true;
......
...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) { ...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) {
var data = e.data; var data = e.data;
switch(data.type) { switch(data.type) {
case "new": case "new":
ss = new worker.ThreadWorker("workers/newworker_0151.js"); ss = new worker.ThreadWorker("entry/ets/workers/newworker_0151.js");
ss.onexit = function() { ss.onexit = function() {
parentPort.postMessage(backValue); // 16 parentPort.postMessage(backValue); // 16
} }
......
...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) { ...@@ -24,7 +24,7 @@ parentPort.onmessage = function(e) {
let data = e.data; let data = e.data;
switch(data.type) { switch(data.type) {
case "new": case "new":
ss = new worker.ThreadWorker("workers/newworker_0152.js"); ss = new worker.ThreadWorker("entry/ets/workers/newworker_0152.js");
ss.onexit = function() { ss.onexit = function() {
parentPort.postMessage(backValue); // 16 parentPort.postMessage(backValue); // 16
} }
......
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import worker from '@ohos.worker'; import worker from '@ohos.worker';
const parentPort = worker.parentPort; const parentPort = worker.parentPort;
console.info("worker:: new version") console.info("worker:: new version")
parentPort.onclose = function() { parentPort.onclose = function() {
console.info("worker::worker.js onclose"); console.info("worker::worker.js onclose");
} }
parentPort.onmessage = function(e) { parentPort.onmessage = function(e) {
let data = e.data; let data = e.data;
console.info("worker:: worker thread worker data is " + data.data); console.info("worker:: worker thread worker data is " + data.data);
switch(data.type) { switch(data.type) {
case "normal": case "normal":
console.info("worker:: worker thread receive data " + data.data); console.info("worker:: worker thread receive data " + data.data);
parentPort.postMessage(data); parentPort.postMessage(data);
console.info("worker:: worker thread post back"); console.info("worker:: worker thread post back");
break; break;
case "error": case "error":
throw new Error("123"); throw new Error("123");
case "buffer": case "buffer":
console.info("worker:: worker.js receive buffer length is " + data.data.byteLength); console.info("worker:: worker.js receive buffer length is " + data.data.byteLength);
parentPort.postMessage(data, [data.data]); parentPort.postMessage(data, [data.data]);
console.info("worker:: worker.js post buffer length is " + data.data.byteLength); console.info("worker:: worker.js post buffer length is " + data.data.byteLength);
break; break;
default: default:
console.info("worker:: worker.js receive unknow type"); console.info("worker:: worker.js receive unknow type");
break break
} }
} }
// Deserialization error // Deserialization error
parentPort.onmessageerror = function() { parentPort.onmessageerror = function() {
console.info("worker:: worker.js onmessageerror"); console.info("worker:: worker.js onmessageerror");
} }
// js execution error // js execution error
parentPort.onerror = function(data) { parentPort.onerror = function(data) {
console.info("worker:: worker.js onerror " + data.lineno + ", msg = " + data.message + ", filename = " + data.filename + ", colno = " + data.colno); console.info("worker:: worker.js onerror " + data.lineno + ", msg = " + data.message + ", filename = " + data.filename + ", colno = " + data.colno);
} }
\ No newline at end of file
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import worker from '@ohos.worker'; import worker from '@ohos.worker';
const parentPort = worker.parentPort; const parentPort = worker.parentPort;
parentPort.onmessage = function(e) { parentPort.onmessage = function(e) {
console.log("worker:: worker receive data " + e.data); console.log("worker:: worker receive data " + e.data);
let data = e.data + " worker"; let data = e.data + " worker";
parentPort.postMessage(data) parentPort.postMessage(data)
} }
\ No newline at end of file
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import worker from '@ohos.worker'; import worker from '@ohos.worker';
const parentPort = worker.parentPort; const parentPort = worker.parentPort;
parentPort.onmessage = function(e) { parentPort.onmessage = function(e) {
let data = e.data * 2 + 1 let data = e.data * 2 + 1
parentPort.postMessage(data) parentPort.postMessage(data)
} }
\ No newline at end of file
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import worker from '@ohos.worker'; import worker from '@ohos.worker';
const parentPort = worker.parentPort; const parentPort = worker.parentPort;
parentPort.onmessage = function(e) { parentPort.onmessage = function(e) {
let data = e.data; let data = e.data;
data.message = "hello world " + "worker" data.message = "hello world " + "worker"
parentPort.postMessage(data) parentPort.postMessage(data)
} }
\ No newline at end of file
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import worker from '@ohos.worker'; import worker from '@ohos.worker';
const parentPort = worker.parentPort; const parentPort = worker.parentPort;
parentPort.onmessage = function(e) { parentPort.onmessage = function(e) {
parentPort.postMessage(name) parentPort.postMessage(name)
} }
\ No newline at end of file
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import worker from '@ohos.worker'; import worker from '@ohos.worker';
const parentPort = worker.parentPort; const parentPort = worker.parentPort;
parentPort.onmessage = function(e) { parentPort.onmessage = function(e) {
parentPort.postMessage("hello world") parentPort.postMessage("hello world")
} }
\ No newline at end of file
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import worker from '@ohos.worker'; import worker from '@ohos.worker';
const parentPort = worker.parentPort; const parentPort = worker.parentPort;
parentPort.onmessage = function(e) { parentPort.onmessage = function(e) {
throw new Error(123) throw new Error(123)
} }
\ No newline at end of file
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import worker from '@ohos.worker'; import worker from '@ohos.worker';
const parentPort = worker.parentPort; const parentPort = worker.parentPort;
console.info("worker::" + typeof parentPort.self) console.info("worker::" + typeof parentPort.self)
parentPort.onmessage = function(e) { parentPort.onmessage = function(e) {
parentPort.close() parentPort.close()
} }
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import worker from "@ohos.worker" import worker from "@ohos.worker"
const parentPort = worker.parentPort; const parentPort = worker.parentPort;
var ss = undefined; var ss = undefined;
var flag = false; var flag = false;
parentPort.onmessage = function(e) { parentPort.onmessage = function(e) {
let data = e.data; let data = e.data;
switch(data.type) { switch(data.type) {
case "new": case "new":
ss = new worker.Worker("workers/worker_0091.js"); ss = new worker.Worker("entry/ets/workers/worker_0091.js");
console.log("worker:: workerxx "); console.log("worker:: workerxx");
ss.onexit = function() { ss.onexit = function() {
flag = true; flag = true;
} }
parentPort.postMessage(ss != null); parentPort.postMessage(ss != null);
break; break;
case "wait": case "wait":
if (flag) { if (flag) {
parentPort.postMessage("terminate"); parentPort.postMessage("terminate");
} }
break; break;
case "terminate": case "terminate":
flag = false; flag = false;
ss.terminate(); ss.terminate();
break; break;
default: default:
break; break;
} }
} }
\ No newline at end of file
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import worker from "@ohos.worker" import worker from "@ohos.worker"
const parentPort = worker.parentPort; const parentPort = worker.parentPort;
parentPort.onmessage = function(e) { parentPort.onmessage = function(e) {
console.log("worker:: onmessage"); console.log("worker:: onmessage");
} }
\ No newline at end of file
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import worker from "@ohos.worker" import worker from "@ohos.worker"
const parentPort = worker.parentPort; const parentPort = worker.parentPort;
var ss = undefined; var ss = undefined;
var backValue = undefined; var backValue = undefined;
var flag = false; var flag = false;
parentPort.onmessage = function(e) { parentPort.onmessage = function(e) {
let data = e.data; let data = e.data;
switch(data.type) { switch(data.type) {
case "new": case "new":
ss = new worker.Worker("workers/worker_0101.js"); ss = new worker.Worker("entry/ets/workers/worker_0101.js");
ss.onmessage = function(ee) { ss.onmessage = function(ee) {
backValue = ee.data; backValue = ee.data;
flag = true; flag = true;
} }
ss.onexit = function() { ss.onexit = function() {
backValue = "terminate"; backValue = "terminate";
flag = true; flag = true;
} }
ss.postMessage(data.value); ss.postMessage(data.value);
break; break;
case "wait": case "wait":
if (flag) { if (flag) {
parentPort.postMessage(backValue); parentPort.postMessage(backValue);
} }
break; break;
case "terminate": case "terminate":
flag = false; flag = false;
ss.terminate(); ss.terminate();
break; break;
default: default:
break; break;
} }
} }
\ No newline at end of file
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import worker from "@ohos.worker" import worker from "@ohos.worker"
const parentPort = worker.parentPort; const parentPort = worker.parentPort;
parentPort.onmessage = function(e) { parentPort.onmessage = function(e) {
let data = e.data; // 12 let data = e.data; // 12
parentPort.postMessage(data * 2 + 1); // 25 parentPort.postMessage(data * 2 + 1); // 25
} }
\ No newline at end of file
/* /*
* Copyright (C) 2022 Huawei Device Co., Ltd. * Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import worker from "@ohos.worker" import worker from "@ohos.worker"
const parentPort = worker.parentPort; const parentPort = worker.parentPort;
var ss = undefined; var ss = undefined;
var backValue = undefined; var backValue = undefined;
var flag = false; var flag = false;
parentPort.onmessage = function(e) { parentPort.onmessage = function(e) {
let data = e.data; let data = e.data;
switch(data.type) { switch(data.type) {
case "new": case "new":
ss = new worker.Worker("workers/worker_0111.js"); ss = new worker.Worker("entry/ets/workers/worker_0111.js");
ss.onmessage = function(ee) { ss.onmessage = function(ee) {
backValue = ee.data; backValue = ee.data;
flag = true; flag = true;
} }
ss.onexit = function(code) { ss.onexit = function(code) {
backValue = "terminate"; backValue = "terminate";
flag = true; flag = true;
} }
ss.postMessage(data.value); ss.postMessage(data.value);
break; break;
case "wait": case "wait":
if (flag) { if (flag) {
parentPort.postMessage(backValue); parentPort.postMessage(backValue);
} }
break; break;
case "terminate": case "terminate":
flag = false; flag = false;
ss.terminate(); ss.terminate();
break; break;
default: default:
break; break;
} }
} }
\ No newline at end of file
{
"module": {
"name": "entry",
"type": "entry",
"srcEntrance": "./ets/Application/AbilityStage.ts",
"description": "$string:entry_desc",
"mainElement": "MainAbility",
"deviceTypes": [
"default",
"tablet"
],
"deliveryWithInstall": true,
"installationFree": false,
"pages": "$profile:main_pages",
"uiSyntax": "ets",
"abilities": [
{
"name": "com.example.workertest.MainAbility",
"srcEntrance": "./ets/MainAbility/MainAbility.ts",
"description": "$string:MainAbility_desc",
"icon": "$media:icon",
"label": "$string:MainAbility_label",
"startWindowIcon": "$media:icon",
"startWindowBackground": "$color:white",
"visible": true,
"orientation": "portrait",
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
]
}
]
}
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册