WifiP2PFunction.test.js 27.0 KB
Newer Older
Q
quanli 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
/*
 * 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 {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '@ohos/hypium'

import wifi from '@ohos.wifi'

function sleep(delay) {
    return new Promise(resovle => setTimeout(resovle, delay))
}

function checkWifiPowerOn(){
    console.info("[wifi_test]/wifi status:" + wifi.isWifiActive());
}

let groupOwnerBand = {
    GO_BAND_AUTO : 0,
    GO_BAND_2GHZ : 1,
    GO_BAND_5GHZ : 2,
}

export default function actsWifiFunctionTest() {
    describe('actsWifiFunctionTest', function () {
        beforeEach(function () {
            console.info("[wifi_test]beforeEach start" );
            checkWifiPowerOn();
        })
        afterEach(async function () {
            console.info("[wifi_test]afterEach start" );
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0003
Q
quanli 已提交
46 47
        * @tc.name testCreateGroup
        * @tc.desc Test createGroup and getCurrentGroup API Function
Q
quanli 已提交
48 49 50 51 52 53 54 55 56
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_XTS_P2P_0003', 0, async function(done) {
            let wifiP2PConfig = {
                deviceAddress : "00:00:00:00:00:00",
                netId : -1,
                passphrase : "12345678",
                groupName : "AAAZZZ123",
Q
quanli 已提交
57
                goBand : groupOwnerBand.GO_BAND_2GHZ,
Q
quanli 已提交
58 59 60 61
            };
            console.log("[wifi_test]check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            let createGroupResult = wifi.createGroup(wifiP2PConfig);
Q
quanli 已提交
62
            console.log("[wifi_test]createGroup result: " + JSON.stringify(createGroupResult));
Q
quanli 已提交
63 64 65 66 67
            await sleep(2000);
            expect(createGroupResult).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    console.info("[wifi_test]getCurrentGroup promise result -> " + JSON.stringify(data));
Q
quanli 已提交
68
                    expect(true).assertEqual(data.groupName == wifiP2PConfig.groupName);
Q
quanli 已提交
69
                });
Q
quanli 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
            function getCurrentGroupResult(){
                return new Promise((resolve, reject) => {
                    wifi.getCurrentGroup(
                        (err, result) => {
                            if(err) {
                                console.info("[wifi_test]failed to get getCurrentGroup:" + JSON.stringify(err));
                                expect().assertFail();
                            }
                            console.info("[wifi_test]getCurrentGroup callback:" + JSON.stringify(result));
                            console.info("isP2pGo: " + result.isP2pGo +
                            "deviceName: " + result.ownerInfo.deviceName +
                            "deviceAddress: " + result.ownerInfo.deviceAddress +
                            "primaryDeviceType: " + result.ownerInfo.primaryDeviceType +
                            "deviceStatus: " + result.ownerInfo.deviceStatus +
                            "groupCapabilitys: " + result.ownerInfo.groupCapabilitys +
                            "passphrase: " + result.passphrase + "interface: "+ result.interface
                            + "groupName: " + result.groupName +
                            "frequency: " + result.frequency + "goIpAddress: " + result.goIpAddress);
                            resolve();
                        });
Q
quanli 已提交
90
                });
Q
quanli 已提交
91 92
            }
            await getCurrentGroupResult();
Q
quanli 已提交
93
            let removeGroupResult = wifi.removeGroup();
Q
quanli 已提交
94
            await sleep(2000);
Q
quanli 已提交
95
            expect(removeGroupResult).assertTrue();
Q
quanli 已提交
96 97 98 99 100
            await wifi.getCurrentGroup()
                .then(data => {
                    console.info("[wifi_test] getCurrentGroup  promise result1 :" + JSON.stringify(data));
                    expect(true).assertEqual(data.deviceName == null);
                });
Q
quanli 已提交
101 102 103 104 105
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0004
Q
quanli 已提交
106 107
        * @tc.name testCreateGroup
        * @tc.desc Test createGroup-Setting a 7-bit Key Function.
Q
quanli 已提交
108 109 110 111 112 113 114 115 116 117 118
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_XTS_P2P_0004', 0, async function (done) {
            console.log("[wifi_test]check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            let wifiP2PConfig = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
                passphrase: "1234567",
                groupName: "test_pass",
Q
quanli 已提交
119
                goBand: groupOwnerBand.GO_BAND_2GHZ,
Q
quanli 已提交
120 121 122 123 124 125 126 127 128
            };
            let createGroupResult = wifi.createGroup(wifiP2PConfig);
            console.info("[wifi_test]test createGroup end." + JSON.stringify(createGroupResult));
            await sleep(2000);
            expect(createGroupResult).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getCurrentGroup  promise result :" + JSON.stringify(data));
Q
quanli 已提交
129 130 131 132 133 134 135 136 137
                    expect(true).assertEqual(data.networkId == -999);
                });
            let removeGroupResult = wifi.removeGroup();
            await sleep(2000);
            expect(removeGroupResult).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    console.info("[wifi_test] getCurrentGroup  promise result1 :" + JSON.stringify(data));
                    expect(true).assertEqual(data.deviceName == null);
Q
quanli 已提交
138 139 140 141 142 143
                });
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0104
Q
quanli 已提交
144 145
        * @tc.name testCreateGroup
        * @tc.desc Test createGroup-Key setting: Chinese, English, and characters Function.
Q
quanli 已提交
146 147 148 149 150 151 152 153 154 155 156
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_XTS_P2P_0104', 0, async function (done) {
            console.log("[wifi_test]check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            let wifiP2PConfig = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
                passphrase: "123@%abcD",
                groupName: "test_pass1",
Q
quanli 已提交
157
                goBand: groupOwnerBand.GO_BAND_2GHZ,
Q
quanli 已提交
158 159 160 161 162 163 164 165
            };
            let createGroupResult = wifi.createGroup(wifiP2PConfig);
            console.info("[wifi_test]test createGroup end." + JSON.stringify(createGroupResult));
            await sleep(2000);
            expect(createGroupResult).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    console.info("[wifi_test]getCurrentGroup  promise result : " + JSON.stringify(data));
Q
quanli 已提交
166
                    expect(true).assertEqual(data.passphrase == wifiP2PConfig.passphrase);
Q
quanli 已提交
167
                });
Q
quanli 已提交
168 169 170 171 172 173 174 175 176
            let removeGroupResult = wifi.removeGroup();
            await sleep(2000);
            expect(removeGroupResult).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    console.info("[wifi_test] getCurrentGroup  promise result1 :" + JSON.stringify(data));
                    expect(true).assertEqual(data.deviceName == null);
                });
            done();
Q
quanli 已提交
177 178 179 180
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0204
Q
quanli 已提交
181 182
        * @tc.name testCreateGroup
        * @tc.desc Test createGroup-Key setting 64 bit Function.
Q
quanli 已提交
183 184 185 186 187 188 189 190 191
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_XTS_P2P_0204', 0, async function (done) {
            console.log("[wifi_test]check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            let wifiP2PConfig = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
Q
quanli 已提交
192
                passphrase: "abc345678901234567890123456789012345678901234567890123456789012",
Q
quanli 已提交
193
                groupName: "test_pass2",
Q
quanli 已提交
194
                goBand: groupOwnerBand.GO_BAND_2GHZ,
Q
quanli 已提交
195 196 197 198 199 200 201 202
            };
            let createGroupResult = wifi.createGroup(wifiP2PConfig);
            console.info("[wifi_test]test createGroup end." + JSON.stringify(createGroupResult));
            await sleep(2000);
            expect(createGroupResult).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    console.info("[wifi_test]getCurrentGroup promise result : " + JSON.stringify(data));
Q
quanli 已提交
203 204 205 206 207 208 209 210 211
                    expect(true).assertEqual(data.passphrase == wifiP2PConfig.passphrase);
                });
            let removeGroupResult = wifi.removeGroup();
            await sleep(2000);
            expect(removeGroupResult).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    console.info("[wifi_test] getCurrentGroup  promise result1 :" + JSON.stringify(data));
                    expect(true).assertEqual(data.deviceName == null);
Q
quanli 已提交
212
                });
Q
quanli 已提交
213
            done();
Q
quanli 已提交
214 215 216 217
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0304
Q
quanli 已提交
218 219
        * @tc.name testCreateGroup
        * @tc.desc Test createGroup-Key setting 65 bitsFunction.
Q
quanli 已提交
220 221 222 223 224 225 226 227 228
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_XTS_P2P_0304', 0, async function (done) {
            console.log("[wifi_test]check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            let wifiP2PConfig = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
Q
quanli 已提交
229
                passphrase: "abc3456789012345678901234567890123456789012345678901234567890123",
Q
quanli 已提交
230
                groupName: "test_pass3",
Q
quanli 已提交
231
                goBand: groupOwnerBand.GO_BAND_2GHZ,
Q
quanli 已提交
232 233 234 235 236 237 238 239
            };
            let createGroupResult = wifi.createGroup(wifiP2PConfig);
            console.info("[wifi_test]test createGroup end." + JSON.stringify(createGroupResult));
            await sleep(2000);
            expect(createGroupResult).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    console.info("[wifi_test]getCurrentGroup  promise result :" + JSON.stringify(data));
Q
quanli 已提交
240
                    expect(true).assertEqual(data.passphrase != wifiP2PConfig.passphrase);
Q
quanli 已提交
241
                });
Q
quanli 已提交
242
            let removeGroupResult = wifi.removeGroup();
Q
quanli 已提交
243
            await sleep(2000);
Q
quanli 已提交
244
            expect(removeGroupResult).assertTrue();
Q
quanli 已提交
245 246
            await wifi.getCurrentGroup()
                .then(data => {
Q
quanli 已提交
247 248
                    console.info("[wifi_test] getCurrentGroup  promise result1 :" + JSON.stringify(data));
                    expect(true).assertEqual(data.deviceName == null);
Q
quanli 已提交
249 250 251 252 253
                });
            done();
        })

        /**
Q
quanli 已提交
254 255 256
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0007
        * @tc.name testCreateGroup
        * @tc.desc Test createGroup-2.4 GHz frequency band setting Function
Q
quanli 已提交
257 258 259
        * @tc.type Function
        * @tc.level Level 0
        */
Q
quanli 已提交
260
        it('SUB_Communication_WiFi_XTS_P2P_0007', 0, async function(done) {
Q
quanli 已提交
261 262 263 264 265 266
            console.log("[wifi_test]check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            let wifiP2PConfig = {
                deviceAddress : "00:00:00:00:00:00",
                netId : -1,
                passphrase : "12345678",
Q
quanli 已提交
267 268
                groupName : "test_band1",
                goBand : groupOwnerBand.GO_BAND_2GHZ,
Q
quanli 已提交
269 270 271
            };
            let createGroupResult = wifi.createGroup(wifiP2PConfig);
            await sleep(2000);
Q
quanli 已提交
272
            console.info("[wifi_test] test createGroup result." + createGroupResult)
Q
quanli 已提交
273 274 275
            expect(createGroupResult).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
Q
quanli 已提交
276 277
                    console.info("[wifi_test]getCurrentGroup  promise result :" + JSON.stringify(data));
                    expect(true).assertEqual(data.frequency == 2412);
Q
quanli 已提交
278
                });
Q
quanli 已提交
279
            let removeGroupResult = wifi.removeGroup();
Q
quanli 已提交
280
            await sleep(2000);
Q
quanli 已提交
281
            expect(removeGroupResult).assertTrue();
Q
quanli 已提交
282 283
            await wifi.getCurrentGroup()
                .then(data => {
Q
quanli 已提交
284 285
                    console.info("[wifi_test] getCurrentGroup  promise result1 :" + JSON.stringify(data));
                    expect(true).assertEqual(data.deviceName == null);
Q
quanli 已提交
286 287 288 289 290
                });
            done();
        })

        /**
Q
quanli 已提交
291 292 293
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0107
        * @tc.name testCreateGroup
        * @tc.desc Test createGroup-5 GHz frequency band setting Function
Q
quanli 已提交
294 295 296
        * @tc.type Function
        * @tc.level Level 0
        */
Q
quanli 已提交
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
        it('SUB_Communication_WiFi_XTS_P2P_0107', 0, async function(done) {
            console.log("[wifi_test]check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            try {
                let wifiP2PConfig = {
                    deviceAddress : "00:00:00:00:00:00",
                    netId : -1,
                    passphrase : "12345678",
                    groupName : "test_band2",
                    goBand : groupOwnerBand.GO_BAND_5GHZ,
                };
                let createGroupResult = wifi.createGroup(wifiP2PConfig);
                await sleep(2000);
                console.info("[wifi_test]test createGroup result." + createGroupResult)
                expect(createGroupResult).assertTrue();
                await wifi.getCurrentGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentGroup  promise result :" + JSON.stringify(data));
                        expect(true).assertEqual(data.frequency == 5745);
                    });
                let removeGroupResult = await wifi.removeGroup();
                await sleep(2000);
                expect(removeGroupResult).assertTrue();
                await wifi.getCurrentGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    });
            }catch(error){
                console.info("[wifi_test]createGroup 5G goBand result : " + JSON.stringify(error.message));
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
Q
quanli 已提交
328 329 330 331 332
            }
            done();
        })

        /**
Q
quanli 已提交
333 334 335
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0207
        * @tc.name testCreateGroup
        * @tc.desc Test createGroup-Auto frequency band setting Function
Q
quanli 已提交
336 337 338
        * @tc.type Function
        * @tc.level Level 0
        */
Q
quanli 已提交
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
        it('SUB_Communication_WiFi_XTS_P2P_0207', 0, async function(done) {
            console.log("[wifi_test]check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            try {
                let wifiP2PConfig = {
                    deviceAddress : "00:00:00:00:00:00",
                    netId : -1,
                    passphrase : "12345678",
                    groupName : "test_band3",
                    goBand : groupOwnerBand.GO_BAND_AUTO,
                };
                let createGroupResult = wifi.createGroup(wifiP2PConfig);
                await sleep(2000);
                console.info("[wifi_test]test createGroup result." + createGroupResult)
                expect(createGroupResult).assertTrue();
                await wifi.getCurrentGroup()
                    .then(data => {
                        console.info("[wifi_test]getCurrentGroup promise result : " + JSON.stringify(data));
                        expect(true).assertEqual(data.frequency != null );
                    });
                let removeGroupResult = await wifi.removeGroup();
                await sleep(2000);
                expect(removeGroupResult).assertTrue();
                await wifi.getCurrentGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    });
            }catch(error){
                console.info("[wifi_test]createGroup auto  goBand result : " + JSON.stringify(error.message));
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
Q
quanli 已提交
370 371 372 373 374 375
            }
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0009
Q
quanli 已提交
376 377
        * @tc.name testP2pCancelConnect
        * @tc.desc Test p2pCancelConnect Group API functionality.
Q
quanli 已提交
378 379 380 381 382 383 384 385 386
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_XTS_P2P_0009', 0, async function (done) {
            let wifiP2PConfig = {
                deviceAddress : "00:00:00:00:00:00",
                netId : -1,
                passphrase : "12345678",
                groupName : "AAAZZZ456",
Q
quanli 已提交
387
                goBand : groupOwnerBand.GO_BAND_2GHZ,
Q
quanli 已提交
388 389 390 391 392 393 394 395 396 397
            };
            let p2pConnectResult = wifi.p2pConnect(wifiP2PConfig);
            console.info("[wifi_test]test p2pConnect result." + p2pConnectResult);
            let p2pCancelResult = wifi.p2pCancelConnect();
            await sleep(2000);
            console.info("[wifi_test]test p2pCancelConnect result." + p2pCancelResult);
            expect(p2pCancelResult).assertTrue();
            let removeGroupResult = wifi.removeGroup();
            console.info("[wifi_test]test start removeGroup:" + removeGroupResult);
            expect(removeGroupResult).assertTrue();
Q
quanli 已提交
398 399 400 401 402
            await wifi.getCurrentGroup()
                .then(data => {
                    console.info("[wifi_test] getCurrentGroup  promise result1 :" + JSON.stringify(data));
                    expect(true).assertEqual(data.deviceName == null);
                });
Q
quanli 已提交
403 404 405 406 407
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0011
Q
quanli 已提交
408 409
        * @tc.name testRemoveGroup
        * @tc.desc Test remove a nonexistent group.
Q
quanli 已提交
410 411 412 413 414 415 416
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_XTS_P2P_0011', 0, async function (done) {
            let removeGroupResult = wifi.removeGroup(10000);
            console.info("[wifi_test]removeGroup(10000) result : " + JSON.stringify(removeGroupResult));
            expect(removeGroupResult).assertTrue();
Q
quanli 已提交
417 418 419 420 421
            await wifi.getCurrentGroup()
                .then(data => {
                    console.info("[wifi_test] getCurrentGroup  promise result1 :" + JSON.stringify(data));
                    expect(true).assertEqual(data.deviceName == null);
                });
Q
quanli 已提交
422 423 424 425 426 427
            done();
        })

        /**
        * @tc.number     SUB_Communication_WiFi_XTS_P2P_0002
        * @tc.name       testP2pLocalDevice
Q
quanli 已提交
428
        * @tc.desc       Test get P2pLocalDevice API functionality.
Q
quanli 已提交
429 430 431 432 433 434 435
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_XTS_P2P_0002', 0, async function (done) {
            await wifi.getP2pLocalDevice()
                .then(data => {
                    console.info("[wifi_test]getP2pLocalDevice  promise result :" + JSON.stringify(data));
Q
quanli 已提交
436
                    expect(true).assertEqual(data.deviceName !=null);
Q
quanli 已提交
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
                }).catch((error) => {
                    console.info("[wifi_test]getP2pLocalDevice promise error." + JSON.stringify(error));
                    expect().assertFail();
                });
            function getP2pLocal(){
                return new Promise((resolve, reject) => {
                    wifi.getP2pLocalDevice(
                        (err, ret) => {
                            if(err) {
                                console.info("[wifi_test]getP2pLocalDevice callback failed : " + JSON.stringify(err));
                                return;
                            }
                            console.info("[wifi_test]getP2pLocalDevice callback result: " + JSON.stringify(ret));
                            console.info("deviceName: " + ret.deviceName + "deviceAddress: " +
                            ret.deviceAddress + "primaryDeviceType: " + ret.primaryDeviceType +
                            "deviceStatus: " + ret.deviceStatus + "groupCapabilitys: " +
                            ret.groupCapabilitys );
                            resolve();
                        });
                });
            }
            await getP2pLocal();
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0010
Q
quanli 已提交
464 465
        * @tc.name testGetP2pLinkedInfo
        * @tc.desc Test getP2pLinkedInfo API functionality
Q
quanli 已提交
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
        * @tc.type Function
        * @tc.level Level 2
        */
        it('SUB_Communication_WiFi_XTS_P2P_0010', 0, async function(done) {
            let p2pConnectState = {
                DISCONNECTED :0,
                CONNECTED : 1,
            };
            await wifi.getP2pLinkedInfo()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test]getP2pLinkedInfo promise result :" + JSON.stringify(data));
                    expect(true).assertEqual(resultLength!=0);
                    done()
                });
Q
quanli 已提交
481
            function getP2pLinkedInfoResult(){
Q
quanli 已提交
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
                return new Promise((resolve, reject) => {
                    wifi.getP2pLinkedInfo(
                        (err, result) => {
                            if(err) {
                                console.info("[wifi_test]failed to getP2pLinkedInfo callback:" + JSON.stringify(err));
                                return;
                            }
                            let resultLength = Object.keys(result).length;
                            console.info("[wifi_test]getP2pLinkedInfo callback:" + JSON.stringify(resultLength));
                            console.info("connectState: " + result.connectState +
                            "isGroupOwner: " + result.isGroupOwner +
                            "groupOwnerAddr: " + result.groupOwnerAddr);
                            expect(true).assertEqual(resultLength!=0);
                            resolve();
                        });
                });
            }
Q
quanli 已提交
499
            await getP2pLinkedInfoResult();
Q
quanli 已提交
500 501 502 503 504
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0001
Q
quanli 已提交
505 506
        * @tc.name testGetP2pPeerDevices
        * @tc.desc Test getP2pPeerDevices promise API functionality
Q
quanli 已提交
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0001', 0, async function(done){
            console.log("[wifi_test]check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            let startDiscover = wifi.startDiscoverDevices();
            await sleep(2000);
            expect(startDiscover).assertTrue();
            await wifi.getP2pPeerDevices()
                .then((data)  => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test]getP2pPeerDevices  promise result -> " + JSON.stringify(data));
                    expect(true).assertEqual(resultLength >= 0);
                }).catch((error) => {
                    console.info("[wifi_test]getP2pPeerDevices promise then error." + JSON.stringify(error));
                    expect().assertFail();
                });
            let stopDiscover = wifi.stopDiscoverDevices();
            console.info("[wifi_test]test stopDiscoverDevices result." + stopDiscover);
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0101
Q
quanli 已提交
532 533
        * @tc.name testGetP2pPeerDevices
        * @tc.desc Test getP2pPeerDevices callback API functionality
Q
quanli 已提交
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0101', 0, async function(done){
            let p2pDeviceStatus = {
                CONNECTED : 0,
                INVITED : 1,
                FAILED : 2,
                AVAILABLE : 3,
                UNAVAILABLE : 4,
            };
            console.log("[wifi_test]check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            let startDiscover = wifi.startDiscoverDevices();
            await sleep(2000);
            expect(startDiscover).assertTrue();
Q
quanli 已提交
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587

            function getP2pPeerDevicesResult(){
                return new Promise((resolve, reject) => {
                    wifi.getP2pPeerDevices(
                        (err, result) => {
                            if(err) {
                                console.error('[wifi_test]failed to getP2pPeerDevices :' + JSON.stringify(err));
                            }
                            console.info("[wifi_test] getP2pPeerDevices callback result :" + JSON.stringify(result));
                            let len = Object.keys(result).length;
                            for (let j = 0; j < len; ++j) {
                                console.info("deviceName: " + result[j].deviceName +
                                "deviceAddress: " + result[j].deviceAddress +
                                "primaryDeviceType: " + result[j].primaryDeviceType +
                                "deviceStatus: " + result[j].deviceStatus +
                                "groupCapabilitys: " + result[j].groupCapabilitys );
                                if(result[j].deviceStatus ==p2pDeviceStatus.UNAVAILABLE){
                                    console.info("deviceStatus: " + result[j].deviceStatus);
                                }
                                if(result[j].deviceStatus ==p2pDeviceStatus.CONNECTED){
                                    console.info("deviceStatus: " + result[j].deviceStatus);
                                }
                                if(result[j].deviceStatus ==p2pDeviceStatus.INVITED){
                                    console.info("deviceStatus: " + result[j].deviceStatus);
                                }
                                if(result[j].deviceStatus ==p2pDeviceStatus.FAILED){
                                    console.info("deviceStatus: " + result[j].deviceStatus);
                                }
                                if(result[j].deviceStatus ==p2pDeviceStatus.AVAILABLE){
                                    console.info("deviceStatus: " + result[j].deviceStatus);
                                }
                            }
                            resolve();
                        });
                });
            }
            await getP2pPeerDevicesResult();
            done();
Q
quanli 已提交
588 589 590 591
            });
        console.log("*************[wifi_test] start wifi js unit test end*************");
    })
}
Q
quanli 已提交
592