Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
1d0b0737
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,发现更多精彩内容 >>
提交
1d0b0737
编写于
6月 18, 2022
作者:
Q
q00313334
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
quanli1@huawei.com
Signed-off-by:
N
q00313334
<
quanli1@huawei.com
>
上级
a01fb748
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
118 addition
and
66 deletion
+118
-66
communication/bluetooth_profile/src/main/js/default/test/BluetoothA2dp.test.js
...th_profile/src/main/js/default/test/BluetoothA2dp.test.js
+19
-0
communication/bluetooth_standard/src/main/js/default/test/Bluetooth.test.js
...tooth_standard/src/main/js/default/test/Bluetooth.test.js
+22
-3
location/geolocation_standard/src/main/js/default/test/GeocoderTest.test.js
...on_standard/src/main/js/default/test/GeocoderTest.test.js
+77
-63
未找到文件。
communication/bluetooth_profile/src/main/js/default/test/BluetoothA2dp.test.js
浏览文件 @
1d0b0737
...
...
@@ -162,6 +162,25 @@ describe('bluetoothhostTest', function () {
})
/**
* @tc.number SUB_COMMUNACATION_bluetooth_DEVICE_JS_A2DP_GET_PROFILE_STATE_0001
* @tc.name testgetProfileState
* @tc.desc Test getProfileState api.
* @tc.type Function
* @tc.level Level 0
*/
it
(
'
SUB_COMMUNACATION_bluetooth_DEVICE_JS_A2DP_GET_PROFILE_STATE_0001
'
,
0
,
async
function
(
done
)
{
console
.
info
(
'
[bluetooth_js] a2dpSourceProfile getProfileState start
'
);
await
tryToEnableBt
();
let
state
=
bluetooth
.
getProfileConnState
(
bluetooth
.
ProfileId
.
PROFILE_A2DP_SOURCE
);
console
.
info
(
'
[bluetooth_js] a2dpSourceProfile state is:
'
+
state
);
expect
(
state
).
assertEqual
(
0
);
await
sleep
(
1000
);
done
();
})
/**
* @tc.number SUB_COMMUNACATION_bluetooth_DEVICE_JS_A2DP_SOURCCE_PROFILE_ON_0001
* @tc.name testa2dpSourceProfileon
...
...
communication/bluetooth_standard/src/main/js/default/test/Bluetooth.test.js
浏览文件 @
1d0b0737
...
...
@@ -333,9 +333,9 @@ describe('bluetoothhostTest', function() {
it
(
'
SUB_COMMUNACATION_bluetooth_SPP_CLOSE_SERVER_SOCKET_0001
'
,
0
,
async
function
(
done
)
{
console
.
log
(
"
[bluetooth_js] spp closeServerSocket start
"
);
await
tryToEnableBt
();
let
ret
=
bluetooth
.
sppCloseServerSocket
(
-
1
);
console
.
info
(
'
[bluetooth_js] bluetooth sppCloseServerSocket ret :
'
+
ret
);
expect
(
ret
).
assertEqual
(
false
);
setTimeout
(
async
()
=>
{
bluetooth
.
sppCloseServerSocket
(
-
1
);
},
3000
);
done
();
})
...
...
@@ -383,6 +383,25 @@ describe('bluetoothhostTest', function() {
done
();
})
/**
* @tc.number SUB_COMMUNACATION_bluetooth_SPP_CLOSE_CLIENT_SOCKET_0001
* @tc.name testSppCloseClientSocket
* @tc.desc Test SppCloseClientSocket api.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 2
*/
it
(
'
SUB_COMMUNACATION_bluetooth_SPP_CLOSE_CLIENT_SOCKET_0001
'
,
0
,
async
function
(
done
)
{
console
.
log
(
"
[bluetooth_js] spp closeClientSocket start
"
);
await
tryToEnableBt
();
setTimeout
(
async
()
=>
{
bluetooth
.
sppCloseClientSocket
(
-
1
);
},
3000
);
done
();
})
/**
* @tc.number SUB_COMMUNACATION_bluetooth_GET_REMO_DEV_NAME_0001
* @tc.name testGetRemoteDeviceName
...
...
location/geolocation_standard/src/main/js/default/test/GeocoderTest.test.js
浏览文件 @
1d0b0737
...
...
@@ -1484,6 +1484,7 @@ describe('geolocationTest', function () {
* @tc.level Level 2
*/
it
(
'
SUB_HSS_LocationSystem_LastLocation_0002
'
,
0
,
async
function
(
done
)
{
setTimeout
(
async
()
=>
{
await
geolocation
.
getLastLocation
().
then
((
result
)
=>
{
console
.
info
(
'
[lbs_js] getLastLocation promise result:
'
+
result
);
expect
(
result
).
assertTrue
();
...
...
@@ -1491,6 +1492,7 @@ describe('geolocationTest', function () {
console
.
info
(
'
[lbs_js] getLastLocation promise then err:
'
+
result
);
expect
().
assertFail
();
});
},
2000
);
done
();
})
...
...
@@ -1504,6 +1506,7 @@ describe('geolocationTest', function () {
*/
it
(
'
SUB_HSS_LocationSystem_SingleLoc_0028
'
,
0
,
async
function
(
done
)
{
let
currentLocationRequest
=
{
"
priority
"
:
0x0200
,
"
scenario
"
:
0x0300
,
"
timeoutMs
"
:
10
,
"
maxAccuracy
"
:
0
};
setTimeout
(
async
()
=>
{
await
geolocation
.
getCurrentLocation
(
currentLocationRequest
).
then
((
result
)
=>
{
console
.
info
(
"
[lbs_js] getCurrentLocation promise data is:
"
+
JSON
.
stringify
(
result
));
expect
(
true
).
assertEqual
((
JSON
.
stringify
(
result
))
!=
null
);
...
...
@@ -1511,6 +1514,7 @@ describe('geolocationTest', function () {
console
.
info
(
"
[lbs_js] getCurrentLocation promise then error.
"
+
error
);
expect
().
assertFail
();
});
},
2000
);
done
();
})
...
...
@@ -1524,6 +1528,7 @@ describe('geolocationTest', function () {
*/
it
(
'
SUB_HSS_LocationSystem_SingleLoc_0029
'
,
0
,
async
function
(
done
)
{
let
currentLocationRequest
=
{
"
priority
"
:
0x0200
,
"
scenario
"
:
0x0301
,
"
timeoutMs
"
:
10
,
"
maxAccuracy
"
:
0
};
setTimeout
(
async
()
=>
{
await
geolocation
.
getCurrentLocation
(
currentLocationRequest
).
then
((
result
)
=>
{
console
.
info
(
"
[lbs_js] getCurrentLocation promise result is:
"
+
JSON
.
stringify
(
result
));
expect
(
true
).
assertEqual
((
JSON
.
stringify
(
result
))
!=
null
);
...
...
@@ -1531,6 +1536,7 @@ describe('geolocationTest', function () {
console
.
info
(
"
[lbs_js] getCurrentLocation promise then error.
"
+
error
);
expect
().
assertFail
();
});
},
2000
);
done
();
})
...
...
@@ -1544,6 +1550,7 @@ describe('geolocationTest', function () {
*/
it
(
'
SUB_HSS_LocationSystem_SingleLoc_0030
'
,
0
,
async
function
(
done
)
{
let
currentLocationRequest
=
{
"
priority
"
:
0x0200
,
"
scenario
"
:
0x0302
,
"
timeoutMs
"
:
10
,
"
maxAccuracy
"
:
0
};
setTimeout
(
async
()
=>
{
await
geolocation
.
getCurrentLocation
(
currentLocationRequest
).
then
((
result
)
=>
{
console
.
info
(
"
[lbs_js] getCurrentLocation promise result is:
"
+
JSON
.
stringify
(
result
));
expect
(
true
).
assertEqual
((
JSON
.
stringify
(
result
))
!=
null
);
...
...
@@ -1551,6 +1558,7 @@ describe('geolocationTest', function () {
console
.
info
(
"
[lbs_js] getCurrentLocation promise then error.
"
+
error
);
expect
().
assertFail
();
});
},
2000
);
done
();
})
...
...
@@ -1563,7 +1571,9 @@ describe('geolocationTest', function () {
* @tc.level Level 2
*/
it
(
'
SUB_HSS_LocationSystem_SingleLoc_0031
'
,
0
,
async
function
(
done
)
{
let
currentLocationRequest
=
{
"
priority
"
:
0x0200
,
"
scenario
"
:
0x0303
,
"
timeoutMs
"
:
10
,
"
maxAccuracy
"
:
0
};
setTimeout
(
async
()
=>
{
await
geolocation
.
getCurrentLocation
(
currentLocationRequest
).
then
((
result
)
=>
{
console
.
info
(
"
[lbs_js] getCurrentLocation promise result is:
"
+
JSON
.
stringify
(
result
));
expect
(
true
).
assertEqual
((
JSON
.
stringify
(
result
))
!=
null
);
...
...
@@ -1571,6 +1581,7 @@ describe('geolocationTest', function () {
console
.
info
(
"
[lbs_js] getCurrentLocation promise then error.
"
+
error
);
expect
().
assertFail
();
});
},
2000
);
done
();
})
...
...
@@ -1584,6 +1595,7 @@ describe('geolocationTest', function () {
*/
it
(
'
SUB_HSS_LocationSystem_SingleLoc_0032
'
,
0
,
async
function
(
done
)
{
let
currentLocationRequest
=
{
"
priority
"
:
0x0200
,
"
scenario
"
:
0x0304
,
"
timeoutMs
"
:
10
,
"
maxAccuracy
"
:
0
};
setTimeout
(
async
()
=>
{
await
geolocation
.
getCurrentLocation
(
currentLocationRequest
).
then
((
result
)
=>
{
console
.
info
(
"
[lbs_js] getCurrentLocation promise result is:
"
+
JSON
.
stringify
(
result
));
expect
(
true
).
assertEqual
((
JSON
.
stringify
(
result
))
!=
null
);
...
...
@@ -1591,6 +1603,7 @@ describe('geolocationTest', function () {
console
.
info
(
"
[lbs_js] getCurrentLocation promise then error.
"
+
error
);
expect
().
assertFail
();
});
},
2000
);
done
();
})
...
...
@@ -1598,3 +1611,4 @@ describe('geolocationTest', function () {
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录