Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
61b3082a
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看板
未验证
提交
61b3082a
编写于
8月 01, 2023
作者:
O
openharmony_ci
提交者:
Gitee
8月 01, 2023
浏览文件
操作
浏览文件
下载
差异文件
!9629 【XTS】【communication】【beta2】wifi覆盖率上库
Merge pull request !9629 from 权力/myfeature3
上级
497ac09c
5e63a0c5
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
378 addition
and
300 deletion
+378
-300
communication/wifi_standard/src/main/js/test/WifiManagerCandidateNetWork.test.js
...dard/src/main/js/test/WifiManagerCandidateNetWork.test.js
+75
-37
communication/wifi_standard/src/main/js/test/WifiManagerStationFunctions.test.js
...dard/src/main/js/test/WifiManagerStationFunctions.test.js
+303
-263
未找到文件。
communication/wifi_standard/src/main/js/test/WifiManagerCandidateNetWork.test.js
浏览文件 @
61b3082a
...
...
@@ -68,12 +68,12 @@ export default function actsWifiManagerCandidateNetWorkTest() {
})
/**
* @tc.number SUB_Communication_WiFi_XTS_CandidateNetWork_0001
* @tc.name testaddCandidateConfig
* @tc.desc Test add OPEN and WEP CandidateConfig Promise API functionality.
* @tc.type Function
* @tc.level Level 2
*/
* @tc.number SUB_Communication_WiFi_XTS_CandidateNetWork_0001
* @tc.name testaddCandidateConfig
* @tc.desc Test add OPEN and WEP CandidateConfig Promise API functionality.
* @tc.type Function
* @tc.level Level 2
*/
it
(
'
SUB_Communication_WiFi_XTS_CandidateNetWork_0001
'
,
0
,
async
function
(
done
)
{
let
wifiDeviceConfig
=
{
"
ssid
"
:
"
TEST_OPEN
"
,
...
...
@@ -131,13 +131,51 @@ export default function actsWifiManagerCandidateNetWorkTest() {
})
/**
* @tc.number SUB_Communication_WiFi_XTS_CandidateNetWork_0002
* @tc.name testaddCandidateConfig
* @tc.desc Test add PSK CandidateConfig and removeCandidateConfig Promise API functionality.
* @tc.type Function
* @tc.level Level 2
*/
* @tc.number SUB_Communication_WiFi_XTS_CandidateNetWork_0002
* @tc.name testaddCandidateConfig
* @tc.desc Test add PSK CandidateConfig and removeCandidateConfig Promise API functionality.
* @tc.type Function
* @tc.level Level 2
*/
it
(
'
SUB_Communication_WiFi_XTS_CandidateNetWork_0002
'
,
0
,
async
function
(
done
)
{
let
EapMethod
=
{
"
EAP_NONE
"
:
0
,
"
EAP_PEAP
"
:
1
,
"
EAP_TLS
"
:
2
,
"
EAP_TTLS
"
:
3
,
"
EAP_PWD
"
:
4
,
"
EAP_SIM
"
:
5
,
"
EAP_AKA
"
:
6
,
"
EAP_AKA_PRIME
"
:
7
,
"
EAP_UNAUTH_TLS
"
:
8
,
};
let
Phase2Method
=
{
"
PHASE2_NONE
"
:
0
,
"
PHASE2_PAP
"
:
1
,
"
PHASE2_MSCHAP
"
:
2
,
"
PHASE2_MSCHAPV2
"
:
3
,
"
PHASE2_GTC
"
:
4
,
"
PHASE2_SIM
"
:
5
,
"
PHASE2_AKA
"
:
6
,
"
PHASE2_AKA_PRIME
"
:
7
,
};
let
WifiEapConfig
=
{
"
eapMethod
"
:
wifiMg
.
EapMethod
.
EAP_NONE
,
"
phase2Method
"
:
wifiMg
.
Phase2Method
.
PHASE2_NONE
,
"
identity
"
:
"
aaa
"
,
"
anonymousIdentity
"
:
"
bbb
"
,
"
password
"
:
"
12345678
"
,
"
caCertAliases
"
:
"
ddd
"
,
"
caPath
"
:
"
eee
"
,
"
clientCertAliases
"
:
"
fff
"
,
"
certEntry
"
:
new
Uint8Array
(),
"
certPassword
"
:
"
12345678
"
,
"
altSubjectMatch
"
:
"
ggg
"
,
"
domainSuffixMatch
"
:
"
hhh
"
,
"
realm
"
:
"
iii
"
,
"
plmn
"
:
"
jjj
"
,
"
eapSubId
"
:
"
kkk
"
,
};
let
wifiDeviceConfig
=
{
"
ssid
"
:
"
TEST_PSK
"
,
"
bssid
"
:
"
22:9b:e6:48:1f:5c
"
,
...
...
@@ -151,6 +189,7 @@ export default function actsWifiManagerCandidateNetWorkTest() {
"
randomMacType
"
:
0
,
"
randomMacAddr
"
:
"
11:22:33:44:55:66
"
,
"
staticIp
"
:
{
"
ipAddress
"
:
1284752956
,
"
gateway
"
:
1284752936
},
"
eapConfig
"
:
wifiMg
.
WifiEapConfig
,
};
await
wifiMg
.
addCandidateConfig
(
wifiDeviceConfig
)
.
then
(
netWorkId
=>
{
...
...
@@ -178,12 +217,12 @@ export default function actsWifiManagerCandidateNetWorkTest() {
})
/**
* @tc.number SUB_Communication_WiFi_XTS_CandidateNetWork_0003
* @tc.name testaddCandidateConfig
* @tc.desc Test add SAE CandidateConfig Promise API functionality.
* @tc.type Function
* @tc.level Level 2
*/
* @tc.number SUB_Communication_WiFi_XTS_CandidateNetWork_0003
* @tc.name testaddCandidateConfig
* @tc.desc Test add SAE CandidateConfig Promise API functionality.
* @tc.type Function
* @tc.level Level 2
*/
it
(
'
SUB_Communication_WiFi_XTS_CandidateNetWork_0003
'
,
0
,
async
function
(
done
)
{
let
wifiDeviceConfig
=
{
"
ssid
"
:
"
TEST_SAE
"
,
...
...
@@ -217,12 +256,12 @@ export default function actsWifiManagerCandidateNetWorkTest() {
})
/**
* @tc.number SUB_Communication_WiFi_XTS_CandidateNetWork_0004
* @tc.name testaddCandidateConfig
* @tc.desc Test add MAX CandidateConfig and removeall CandidateConfig.
* @tc.type Function
* @tc.level Level 2
*/
* @tc.number SUB_Communication_WiFi_XTS_CandidateNetWork_0004
* @tc.name testaddCandidateConfig
* @tc.desc Test add MAX CandidateConfig and removeall CandidateConfig.
* @tc.type Function
* @tc.level Level 2
*/
it
(
'
SUB_Communication_WiFi_XTS_CandidateNetWork_0004
'
,
0
,
async
function
(
done
)
{
let
SSID
=
"
TYPE_PSK
"
for
(
let
i
=
0
;
i
<
16
;
i
++
)
{
...
...
@@ -278,12 +317,12 @@ export default function actsWifiManagerCandidateNetWorkTest() {
})
/**
* @tc.number SUB_Communication_WiFi_XTS_CandidateNetWork_0005
* @tc.name testaddCandidateConfig
* @tc.desc Test add CandidateConfig and removeCandidateConfig callback API functionality.
* @tc.type Function
* @tc.level Level 2
*/
* @tc.number SUB_Communication_WiFi_XTS_CandidateNetWork_0005
* @tc.name testaddCandidateConfig
* @tc.desc Test add CandidateConfig and removeCandidateConfig callback API functionality.
* @tc.type Function
* @tc.level Level 2
*/
it
(
'
SUB_Communication_WiFi_XTS_CandidateNetWork_0005
'
,
0
,
async
function
(
done
)
{
let
wifiDeviceConfig
=
{
"
ssid
"
:
"
TEST_connect
"
,
...
...
@@ -329,12 +368,12 @@ export default function actsWifiManagerCandidateNetWorkTest() {
})
/**
* @tc.number SUB_Communication_WiFi_XTS_CandidateNetWork_0006
* @tc.name testaddCandidateConfig
* @tc.desc Test connect To CandidateConfig API functionality.
* @tc.type Function
* @tc.level Level 2
*/
* @tc.number SUB_Communication_WiFi_XTS_CandidateNetWork_0006
* @tc.name testaddCandidateConfig
* @tc.desc Test connect To CandidateConfig API functionality.
* @tc.type Function
* @tc.level Level 2
*/
it
(
'
SUB_Communication_WiFi_XTS_CandidateNetWork_0006
'
,
0
,
async
function
(
done
)
{
let
wifiDeviceConfig
=
{
"
ssid
"
:
"
HONOR 3000
"
,
...
...
@@ -381,4 +420,3 @@ export default function actsWifiManagerCandidateNetWorkTest() {
})
})
}
communication/wifi_standard/src/main/js/test/WifiManagerStationFunctions.test.js
浏览文件 @
61b3082a
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录