Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
8896fd8e
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看板
未验证
提交
8896fd8e
编写于
3月 01, 2022
作者:
O
openharmony_ci
提交者:
Gitee
3月 01, 2022
浏览文件
操作
浏览文件
下载
差异文件
!2141 修改Worker.test.js关于Worker的用例。
Merge pull request !2141 from 杜文博/OpenHarmony-3.0-LTS
上级
c70620d2
6a25154a
变更
14
显示空白变更内容
内联
并排
Showing
14 changed file
with
109 addition
and
246 deletion
+109
-246
compileruntime/BUILD.gn
compileruntime/BUILD.gn
+1
-1
compileruntime/worker_lib_standard/Test.json
compileruntime/worker_lib_standard/Test.json
+2
-2
compileruntime/worker_lib_standard/src/main/config.json
compileruntime/worker_lib_standard/src/main/config.json
+1
-0
compileruntime/worker_lib_standard/src/main/js/default/workers/worker.js
...worker_lib_standard/src/main/js/default/workers/worker.js
+38
-48
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_002.js
...er_lib_standard/src/main/js/default/workers/worker_002.js
+7
-16
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_003.js
...er_lib_standard/src/main/js/default/workers/worker_003.js
+6
-14
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_004.js
...er_lib_standard/src/main/js/default/workers/worker_004.js
+7
-15
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_005.js
...er_lib_standard/src/main/js/default/workers/worker_005.js
+5
-13
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_006.js
...er_lib_standard/src/main/js/default/workers/worker_006.js
+5
-13
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_007.js
...er_lib_standard/src/main/js/default/workers/worker_007.js
+5
-13
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_008.js
...er_lib_standard/src/main/js/default/workers/worker_008.js
+5
-13
compileruntime/worker_lib_standard/src/main/js/test/ExampleJsunit.test.js
...orker_lib_standard/src/main/js/test/ExampleJsunit.test.js
+0
-25
compileruntime/worker_lib_standard/src/main/js/test/List.test.js
...runtime/worker_lib_standard/src/main/js/test/List.test.js
+0
-1
compileruntime/worker_lib_standard/src/main/js/test/Worker.test.js
...ntime/worker_lib_standard/src/main/js/test/Worker.test.js
+27
-72
未找到文件。
compileruntime/BUILD.gn
浏览文件 @
8896fd8e
...
...
@@ -19,7 +19,7 @@ group("compileruntime") {
"process_lib_standard:process_js_test",
"url_lib_standard:url_js_test",
"util_lib_standard:util_js_test",
"worker_lib_standard:worker_js_hap",
#
"worker_lib_standard:worker_js_hap",
]
}
}
compileruntime/worker_lib_standard/Test.json
浏览文件 @
8896fd8e
...
...
@@ -2,9 +2,9 @@
"description"
:
"Configuration for startup worker js api Tests"
,
"driver"
:
{
"type"
:
"JSUnitTest"
,
"test-timeout"
:
"
6
0000"
,
"test-timeout"
:
"
80
0000"
,
"package"
:
"com.example.workerxts"
,
"shell-timeout"
:
"
6
0000"
"shell-timeout"
:
"
9
0000"
},
"kits"
:
[
{
...
...
compileruntime/worker_lib_standard/src/main/config.json
浏览文件 @
8896fd8e
...
...
@@ -37,6 +37,7 @@
]
}
],
"visible"
:
true
,
"orientation"
:
"unspecified"
,
"name"
:
"com.example.workerxts.MainAbility"
,
"icon"
:
"$media:icon"
,
...
...
compileruntime/worker_lib_standard/src/main/js/default/workers/worker.js
浏览文件 @
8896fd8e
...
...
@@ -13,24 +13,16 @@
* limitations under the License.
*/
/******/
(()
=>
{
// webpackBootstrap
var
__webpack_exports__
=
{};
/*!********************************************************************************************!*\
!*** d:\workspace\my_works\MyApplication\entry\src\main\ets\default\workers\WorkerDemo.js ***!
\********************************************************************************************/
function
foo
(
x
)
{
return
x
}
import
worker
from
'
@ohos.worker
'
;
const
parentPort
=
worker
.
parentPort
;
var
worker
=
globalThis
.
requireNapi
(
'
worker
'
);
console
.
info
(
"
worker:: new version
"
)
const
parentPort
=
worker
.
parentPort
;
console
.
info
(
"
worker:: new version
"
)
parentPort
.
onclose
=
function
()
{
parentPort
.
onclose
=
function
()
{
console
.
info
(
"
worker::worker.js onclose
"
);
}
}
parentPort
.
onmessage
=
function
(
e
)
{
parentPort
.
onmessage
=
function
(
e
)
{
var
data
=
e
.
data
;
console
.
info
(
"
worker:: worker thread worker data is
"
+
data
.
data
);
switch
(
data
.
type
)
{
...
...
@@ -51,16 +43,14 @@
console
.
info
(
"
worker:: worker.js receive unknow type
"
);
break
}
}
}
// 反序列错误
parentPort
.
onmessageerror
=
function
()
{
// 反序列错误
parentPort
.
onmessageerror
=
function
()
{
console
.
info
(
"
worker:: worker.js onmessageerror
"
);
}
}
// js执行异常
parentPort
.
onerror
=
function
(
data
)
{
// js执行异常
parentPort
.
onerror
=
function
(
data
)
{
console
.
info
(
"
worker:: worker.js onerror
"
+
data
.
lineno
+
"
, msg =
"
+
data
.
message
+
"
, filename =
"
+
data
.
filename
+
"
, colno =
"
+
data
.
colno
);
}
/******/
})()
;
\ No newline at end of file
}
\ No newline at end of file
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_002.js
浏览文件 @
8896fd8e
...
...
@@ -13,20 +13,11 @@
* limitations under the License.
*/
/******/
(()
=>
{
// webpackBootstrap
var
__webpack_exports__
=
{};
/*!********************************************************************************************!*\
!*** d:\workspace\my_works\MyApplication\entry\src\main\ets\default\workers\WorkerDemo.js ***!
\********************************************************************************************/
console
.
log
(
"
worker:: run script
"
);
var
worker
=
globalThis
.
requireNapi
(
'
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
);
var
data
=
e
.
data
+
"
worker
"
;
parentPort
.
postMessage
(
data
)
}
/******/
})()
;
\ No newline at end of file
}
\ No newline at end of file
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_003.js
浏览文件 @
8896fd8e
...
...
@@ -13,18 +13,10 @@
* limitations under the License.
*/
/******/
(()
=>
{
// webpackBootstrap
var
__webpack_exports__
=
{};
/*!********************************************************************************************!*\
!*** d:\workspace\my_works\MyApplication\entry\src\main\ets\default\workers\WorkerDemo.js ***!
\********************************************************************************************/
var
worker
=
globalThis
.
requireNapi
(
'
worker
'
);
import
worker
from
'
@ohos.worker
'
;
const
parentPort
=
worker
.
parentPort
;
const
parentPort
=
worker
.
parentPort
;
parentPort
.
onmessage
=
function
(
e
)
{
parentPort
.
onmessage
=
function
(
e
)
{
var
data
=
e
.
data
*
2
+
1
parentPort
.
postMessage
(
data
)
}
/******/
})()
;
\ No newline at end of file
}
\ No newline at end of file
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_004.js
浏览文件 @
8896fd8e
...
...
@@ -13,19 +13,11 @@
* limitations under the License.
*/
/******/
(()
=>
{
// webpackBootstrap
var
__webpack_exports__
=
{};
/*!********************************************************************************************!*\
!*** d:\workspace\my_works\MyApplication\entry\src\main\ets\default\workers\WorkerDemo.js ***!
\********************************************************************************************/
var
worker
=
globalThis
.
requireNapi
(
'
worker
'
);
import
worker
from
'
@ohos.worker
'
;
const
parentPort
=
worker
.
parentPort
;
const
parentPort
=
worker
.
parentPort
;
parentPort
.
onmessage
=
function
(
e
)
{
parentPort
.
onmessage
=
function
(
e
)
{
var
data
=
e
.
data
;
data
.
message
=
"
hello world
"
+
"
worker
"
parentPort
.
postMessage
(
data
)
}
/******/
})()
;
\ No newline at end of file
}
\ No newline at end of file
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_005.js
浏览文件 @
8896fd8e
...
...
@@ -13,17 +13,9 @@
* limitations under the License.
*/
/******/
(()
=>
{
// webpackBootstrap
var
__webpack_exports__
=
{};
/*!********************************************************************************************!*\
!*** d:\workspace\my_works\MyApplication\entry\src\main\ets\default\workers\WorkerDemo.js ***!
\********************************************************************************************/
var
worker
=
globalThis
.
requireNapi
(
'
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
)
}
/******/
})()
;
\ No newline at end of file
}
\ No newline at end of file
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_006.js
浏览文件 @
8896fd8e
...
...
@@ -13,17 +13,9 @@
* limitations under the License.
*/
/******/
(()
=>
{
// webpackBootstrap
var
__webpack_exports__
=
{};
/*!********************************************************************************************!*\
!*** d:\workspace\my_works\MyApplication\entry\src\main\ets\default\workers\WorkerDemo.js ***!
\********************************************************************************************/
var
worker
=
globalThis
.
requireNapi
(
'
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
"
)
}
/******/
})()
;
\ No newline at end of file
}
\ No newline at end of file
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_007.js
浏览文件 @
8896fd8e
...
...
@@ -13,17 +13,9 @@
* limitations under the License.
*/
/******/
(()
=>
{
// webpackBootstrap
var
__webpack_exports__
=
{};
/*!********************************************************************************************!*\
!*** d:\workspace\my_works\MyApplication\entry\src\main\ets\default\workers\WorkerDemo.js ***!
\********************************************************************************************/
var
worker
=
globalThis
.
requireNapi
(
'
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
)
}
/******/
})()
;
\ No newline at end of file
}
\ No newline at end of file
compileruntime/worker_lib_standard/src/main/js/default/workers/worker_008.js
浏览文件 @
8896fd8e
...
...
@@ -13,17 +13,9 @@
* limitations under the License.
*/
/******/
(()
=>
{
// webpackBootstrap
var
__webpack_exports__
=
{};
/*!********************************************************************************************!*\
!*** d:\workspace\my_works\MyApplication\entry\src\main\ets\default\workers\WorkerDemo.js ***!
\********************************************************************************************/
var
worker
=
globalThis
.
requireNapi
(
'
worker
'
);
import
worker
from
'
@ohos.worker
'
;
const
parentPort
=
worker
.
parentPort
;
const
parentPort
=
worker
.
parentPort
;
parentPort
.
onmessage
=
function
(
e
)
{
parentPort
.
onmessage
=
function
(
e
)
{
parentPort
.
close
()
}
/******/
})()
;
\ No newline at end of file
}
compileruntime/worker_lib_standard/src/main/js/test/ExampleJsunit.test.js
已删除
100644 → 0
浏览文件 @
c70620d2
/*
* 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
{
describe
,
beforeAll
,
beforeEach
,
afterEach
,
afterAll
,
it
,
expect
}
from
'
deccjsunit/index
'
describe
(
'
appInfoTest
'
,
function
()
{
it
(
'
app_info_test_001
'
,
0
,
function
()
{
var
info
=
app
.
getInfo
()
expect
(
info
.
versionName
).
assertEqual
(
'
1.0.0
'
)
expect
(
info
.
versionCode
).
assertEqual
(
'
1000000
'
)
})
})
\ No newline at end of file
compileruntime/worker_lib_standard/src/main/js/test/List.test.js
浏览文件 @
8896fd8e
...
...
@@ -13,5 +13,4 @@
* limitations under the License.
*/
require
(
'
./ExampleJsunit.test.js
'
)
require
(
"
./Worker.test.js
"
)
\ No newline at end of file
compileruntime/worker_lib_standard/src/main/js/test/Worker.test.js
浏览文件 @
8896fd8e
/*
* Copyright (C) 2021 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 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,
* 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.
...
...
@@ -16,7 +16,7 @@
// @ts-nocheck
import
app
from
'
@system.app
'
import
{
describe
,
beforeAll
,
beforeEach
,
afterEach
,
afterAll
,
it
,
expect
}
from
'
deccjsunit/index
'
import
worker
from
'
@ohos.worker
'
import
worker
from
"
@ohos.worker
"
;
describe
(
'
workerTest
'
,
function
()
{
...
...
@@ -145,7 +145,22 @@ describe('workerTest', function () {
const
buffer
=
new
ArrayBuffer
(
8
)
expect
(
buffer
.
byteLength
).
assertEqual
(
8
)
ss
.
postMessage
(
buffer
,
[
buffer
])
expect
(
buffer
.
byteLength
).
assertEqual
(
0
)
var
length
=
undefined
;
var
exception
=
undefined
;
try
{
length
=
buffer
.
byteLength
;
}
catch
(
e
)
{
exception
=
e
.
message
;
}
console
.
log
(
"
worker:: length is
"
+
length
)
console
.
log
(
"
worker:: exception is
"
+
exception
)
if
(
typeof
exception
==
"
undefined
"
)
{
expect
(
length
).
assertEqual
(
0
)
}
else
{
expect
(
exception
).
assertEqual
(
"
IsDetachedBuffer
"
)
}
})
// check worker handle error is ok
...
...
@@ -463,6 +478,7 @@ describe('workerTest', function () {
ss
.
dispatchEvent
({
type
:
"
zhangsan
"
})
expect
(
zhangsanTimes
).
assertEqual
(
2
)
})
// check worker removeAllListener function is ok
...
...
@@ -501,65 +517,23 @@ describe('workerTest', function () {
it
(
'
worker_parentPortClose_test_001
'
,
0
,
async
function
(
done
)
{
var
ss
=
new
worker
.
Worker
(
"
workers/worker_008.js
"
);
var
res
=
0
var
flag
=
false
;
ss
.
on
message
=
function
(
e
)
{
ss
.
on
exit
=
function
(
e
)
{
res
++
;
flag
=
true
;
}
ss
.
postMessage
(
"
abc
"
)
while
(
!
flag
)
{
await
promiseCase
()
expect
(
res
).
assertEqual
(
0
)
done
()
})
// check parentPort.close is ok
it
(
'
worker_parentPortClose_test_002
'
,
0
,
async
function
(
done
)
{
var
ss1
=
new
worker
.
Worker
(
"
workers/worker_008.js
"
);
var
ss2
=
new
worker
.
Worker
(
"
workers/worker_008.js
"
);
var
res
=
0
var
times
=
0
ss1
.
onmessage
=
function
(
e
)
{
res
++
;
}
ss1
.
postMessage
(
"
abc
"
)
await
promiseCase
()
expect
(
res
).
assertEqual
(
0
)
ss2
.
postMessage
(
"
hello world
"
)
await
promiseCase
()
expect
(
res
).
assertEqual
(
0
)
done
()
})
// check parentPort.close is ok
it
(
'
worker_parentPortClose_test_003
'
,
0
,
async
function
(
done
)
{
var
ss1
=
new
worker
.
Worker
(
"
workers/worker_008.js
"
);
var
ss2
=
new
worker
.
Worker
(
"
workers/worker_008.js
"
);
var
res
=
0
var
times
=
0
ss1
.
onmessage
=
function
(
e
)
{
res
++
;
}
ss1
.
postMessage
(
"
abc
"
)
await
promiseCase
()
expect
(
res
).
assertEqual
(
0
)
ss2
.
addEventListener
(
"
zhangsan
"
,
()
=>
{
times
++
;
})
ss2
.
dispatchEvent
({
type
:
"
zhangsan
"
})
expect
(
times
).
assertEqual
(
1
)
expect
(
res
).
assertEqual
(
1
)
done
()
})
// check parentPort.close is ok
it
(
'
worker_parentPortClose_test_00
4
'
,
0
,
async
function
(
done
)
{
it
(
'
worker_parentPortClose_test_00
2
'
,
0
,
async
function
(
done
)
{
var
ss
=
new
worker
.
Worker
(
"
workers/worker_008.js
"
);
var
res
=
0
var
flag
=
false
;
...
...
@@ -605,23 +579,4 @@ describe('workerTest', function () {
done
()
})
// check onmessageerror is ok
it
(
'
worker_onmessageerror_test_002
'
,
0
,
async
function
(
done
)
{
var
ss
=
new
worker
.
Worker
(
"
workers/worker_008.js
"
);
var
res
=
0
var
flag
=
false
;
ss
.
onmessageerror
=
function
(
e
)
{
flag
=
true
;
res
++
;
}
function
foo
()
{
}
ss
.
postMessage
(
foo
)
while
(
!
flag
)
{
await
promiseCase
()
}
expect
(
res
).
assertEqual
(
1
)
done
()
})
})
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录