Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
6610332e
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
6610332e
编写于
7月 27, 2023
作者:
Q
quanli
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
quanli1@huawei.com
Signed-off-by:
N
quanli
<
quanli1@huawei.com
>
上级
f9dd7a6a
变更
4
展开全部
隐藏空白更改
内联
并排
Showing
4 changed file
with
822 addition
and
721 deletion
+822
-721
communication/bluetooth_gatt/src/main/js/test/BtManagerGattManager.test.js
...etooth_gatt/src/main/js/test/BtManagerGattManager.test.js
+15
-14
communication/bluetooth_scanpairing/signature/openharmony_sx.p7b
...cation/bluetooth_scanpairing/signature/openharmony_sx.p7b
+0
-0
location/geolocation_standard/src/main/js/test/GeocoderMTest.test.js
...olocation_standard/src/main/js/test/GeocoderMTest.test.js
+778
-707
location/geolocation_standard/src/main/js/test/LocationMTest.test.js
...olocation_standard/src/main/js/test/LocationMTest.test.js
+29
-0
未找到文件。
communication/bluetooth_gatt/src/main/js/test/BtManagerGattManager.test.js
浏览文件 @
6610332e
...
...
@@ -51,7 +51,7 @@ describe('btManagerGattManagerTest', function() {
beforeAll
(
function
()
{
console
.
info
(
'
beforeAll called
'
)
gattServer
=
bluetooth
.
BLE
.
createGattServer
();
gattClient
=
bluetooth
.
BLE
.
createGattClientDevice
(
"
11:22:33:44:55:66
"
);
gattClient
=
bluetooth
.
BLE
.
createGattClientDevice
(
"
92:3A:C0:3A:4C:28
"
);
})
beforeEach
(
async
function
(
done
)
{
console
.
info
(
'
beforeEach called
'
)
...
...
@@ -300,8 +300,8 @@ describe('btManagerGattManagerTest', function() {
it
(
'
SUB_COMMUNICATION_BTMANAGER_GETSERVICE_0200
'
,
0
,
async
function
(
done
)
{
try
{
gattClient
.
getServices
((
code
,
data
)
=>
{
if
(
code
.
code
==
0
)
{
console
.
info
(
"
bluetooth services size is
"
,
data
.
length
)
if
(
code
.
code
==
0
)
{
console
.
info
(
"
bluetooth services size is
"
,
data
.
length
)
;
expect
(
true
).
assertEqual
(
data
.
length
>=
0
);
}
else
{
console
.
info
(
'
[bluetooth_js] get services code
'
+
JSON
.
stringify
(
code
));
...
...
@@ -310,11 +310,11 @@ describe('btManagerGattManagerTest', function() {
done
();
});
}
catch
(
error
)
{
console
.
error
(
`[bluetooth_js]GetService_0200 failed, code is
${
error
.
code
}
,
message is
${
error
.
message
}
`
);
console
.
error
(
`[bluetooth_js]GetService_0200 failed, code is
${
error
.
code
}
,message is
${
error
.
message
}
`
);
expect
(
true
).
assertFalse
();
done
()
done
()
;
}
done
();
})
...
...
@@ -467,11 +467,14 @@ describe('btManagerGattManagerTest', function() {
it
(
'
SUB_COMMUNICATION_BTMANAGER_READCHARACTERISTIC_2000
'
,
0
,
async
function
(
done
)
{
try
{
function
readCcc
(
code
,
BLECharacteristic
)
{
console
.
log
(
'
bluetooth characteristic code:
'
+
code
.
code
);
if
(
code
.
code
!=
0
)
{
return
;
}
console
.
log
(
'
bluetooth characteristic uuid:
'
+
BLECharacteristic
.
characteristicUuid
);
expect
(
true
).
assertEqual
(
data
==
null
);
console
.
log
(
'
bluetooth characteristic serviceUuid:
'
+
BLECharacteristic
.
serviceUuid
);
console
.
log
(
'
bluetooth characteristic characteristicUuid:
'
+
BLECharacteristic
.
characteristicUuid
);
console
.
log
(
'
bluetooth characteristic characteristicValue:
'
+
BLECharacteristic
.
characteristicValue
);
console
.
log
(
'
bluetooth characteristic descriptors:
'
+
BLECharacteristic
.
descriptors
);
let
value
=
new
Uint8Array
(
BLECharacteristic
.
characteristicValue
);
console
.
log
(
'
bluetooth characteristic value:
'
+
value
[
0
]
+
'
,
'
+
value
[
1
]
+
'
,
'
+
value
[
2
]
+
'
,
'
+
value
[
3
]);
...
...
@@ -492,15 +495,13 @@ describe('btManagerGattManagerTest', function() {
characteristicUuid
:
'
00001820-0000-1000-8000-00805F9B34FB
'
,
characteristicValue
:
arrayBufferCCC
,
descriptors
:
descriptors
};
gattClient
.
readCharacteristicValue
(
characteristic
,
readCcc
);
expect
(
true
).
assertFalse
();
done
()
done
();
}
catch
(
error
)
{
console
.
error
(
`[bluetooth_js]readDescrValue20 failed, code is
${
error
.
code
}
,
message is
${
error
.
message
}
`
);
console
.
error
(
`[bluetooth_js]readDescrValue20 failed, code is
${
error
.
code
}
,message is
${
error
.
message
}
`
);
expect
(
error
.
code
).
assertEqual
(
'
401
'
);
done
()
done
()
;
}
done
();
})
/**
...
...
communication/bluetooth_scanpairing/signature/openharmony_sx.p7b
浏览文件 @
6610332e
无法预览此类型文件
location/geolocation_standard/src/main/js/test/GeocoderMTest.test.js
浏览文件 @
6610332e
此差异已折叠。
点击以展开。
location/geolocation_standard/src/main/js/test/LocationMTest.test.js
浏览文件 @
6610332e
...
...
@@ -1656,6 +1656,35 @@ export default function geolocationTest_geo7() {
done
();
})
/**
* @tc.number SUB_HSS_LocationSystem_SingleLoc_3500
* @tc.name Test getCurrentLocation
* @tc.desc Initiate a single location request in a specified scenario and set the navigation scenario..
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 2
*/
it
(
'
SUB_HSS_LocationSystem_SingleLoc_3500
'
,
0
,
async
function
(
done
)
{
let
currentLocationRequest
=
{
"
priority
"
:
0x200
,
"
scenario
"
:
0x301
,
"
timeoutMs
"
:
1000
,
"
maxAccuracy
"
:
0
};
try
{
geolocationm
.
getCurrentLocation
(
currentLocationRequest
,
(
err
,
result
)
=>
{
if
(
err
)
{
console
.
info
(
"
[lbs_js] getCurrentLocation callback err:
"
+
JSON
.
stringify
(
err
));
expect
(
err
.
code
).
assertEqual
(
3301200
);
console
.
info
(
'
[lbs_js] getCurrentLocationCallback reject after
'
)
}
else
{
console
.
info
(
"
[lbs_js] getCurrentLocation callback, result:
"
+
JSON
.
stringify
(
result
));
expect
(
true
).
assertEqual
(
result
!=
null
);
}
});
}
catch
(
error
)
{
console
.
info
(
"
[lbs_js] getCurrentLocation callback try err.
"
+
JSON
.
stringify
(
error
));
expect
(
true
).
assertEqual
(
JSON
.
stringify
(
error
)
!=
null
);
}
await
sleep
(
1000
);
done
();
})
})
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录