WifiP2PFunction.test.js 35.2 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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 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 328 329 330 331 332 333 334 335 336 337 338 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 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 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 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 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 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 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 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831
/*
 * 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("beforeEach start" );
            checkWifiPowerOn();
        })
        afterEach(async function () {
            console.info("afterEach start" );
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0003
        * @tc.name testcreateGroup
        * @tc.desc Test createGroup and getCurrentGroup  infos
        * @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",
                goBand : 0
            };
            console.log("[wifi_test]  check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            let addConfig = wifi.createGroup(WifiP2PConfig);
            console.log("[wifi_test]  check the state of wifi: " + JSON.stringify(addConfig));
            await sleep(2000);
            expect(addConfig).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getCurrentGroup  [promise] result -> " + JSON.stringify(data));
                    expect(true).assertEqual(resultLength!=0);
                });
            wifi.getCurrentGroup(
                (err, result) => {
                    if (err) {
                        console.error('wifi_test / failed to get getCurrentGroup: ' + JSON.stringify(err));
                        expect().assertFail();
                    }else{
                        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);
                    }
                });
            let removeConfig = wifi.removeGroup();
            expect(removeConfig).assertTrue();
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0004
        * @tc.name testcreateGroup
        * @tc.desc Test set password createGroup API Function.
        * @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",
                goBand: 0,
            };
            let addConfig = wifi.createGroup(WifiP2PConfig);
            console.info("[wifi_test] test createGroup end." + JSON.stringify(addConfig));
            await sleep(2000);
            expect(addConfig).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getCurrentGroup  [promise] result -> " + JSON.stringify(data));
                    let removeConfig = wifi.removeGroup();
                    expect(removeConfig).assertTrue();
                });
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0104
        * @tc.name testcreateGroup
        * @tc.desc Test set password createGroup API Function.
        * @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 WifiP2PConfig1 = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
                passphrase: "123@%abcD",
                groupName: "test_pass1",
                goBand: 0,
            };
            let addConfig1 = wifi.createGroup(WifiP2PConfig1);
            console.info("[wifi_test] test createGroup end." + JSON.stringify(addConfig1));
            await sleep(2000);
            expect(addConfig1).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getCurrentGroup  [promise] result -> " + JSON.stringify(data));
                    let removeConfig = wifi.removeGroup();
                    expect(removeConfig).assertTrue();
                });
            done()
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0204
        * @tc.name testcreateGroup
        * @tc.desc Test set password createGroup API Function.
        * @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 WifiP2PConfig2 = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
                passphrase: "abc3456789012345678901234567890123456789012345678901234567890123",
                groupName: "test_pass2",
                goBand: 0,
            };
            let addConfig2 = wifi.createGroup(WifiP2PConfig2);
            console.info("[wifi_test] test createGroup end." + JSON.stringify(addConfig2));
            await sleep(2000);
            expect(addConfig2).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getCurrentGroup  [promise] result -> " + JSON.stringify(data));
                    let removeConfig = wifi.removeGroup();
                    expect(removeConfig).assertTrue();
                });
            done()
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0304
        * @tc.name testcreateGroup
        * @tc.desc Test set password createGroup API Function.
        * @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 WifiP2PConfig3 = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
                passphrase: "abc34567890123456789012345678901234567890123456789012345678901234",
                groupName: "test_pass3",
                goBand: 0,
            };
            let addConfig3 = wifi.createGroup(WifiP2PConfig3);
            console.info("[wifi_test] test createGroup end." + JSON.stringify(addConfig3));
            await sleep(2000);
            expect(addConfig3).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getCurrentGroup  [promise] result -> " + JSON.stringify(data));
                    let removeConfig = wifi.removeGroup();
                    expect(removeConfig).assertTrue();
                });
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0007
        * @tc.name testsethotspot
        * @tc.desc Test createGroup  band setting infos
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0007', 0, async function(done) {
            let WifiP2PConfig2 = {
                deviceAddress : "00:00:00:00:00:00",
                netId : -1,
                passphrase : "12345678",
                groupName : "AAAZZZ123",
                goBand : 1,
            };
            console.log("[wifi_test]  check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            let addConfig = wifi.createGroup(WifiP2PConfig2);
            await sleep(2000);
            console.info("[wifi_test] test createGroup3 result." + addConfig)
            expect(addConfig).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getCurrentGroup  [promise] result -> " + JSON.stringify(data));
                    expect(true).assertEqual(resultLength!=0);
                    let removeConfig = wifi.removeGroup();
                    expect(removeConfig).assertTrue();
                });
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0107
        * @tc.name testsethotspot
        * @tc.desc Test createGroup  band setting infos
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0107', 0, async function(done) {
            let WifiP2PConfig2 = {
                deviceAddress : "00:00:00:00:00:00",
                netId : -1,
                passphrase : "12345678",
                groupName : "AAAZZZ123",
                goBand : 2,
            };
            console.log("[wifi_test]  check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            let addConfig = wifi.createGroup(WifiP2PConfig2);
            await (2000);
            console.info("[wifi_test] test createGroup3 result." + addConfig)
            expect(addConfig).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getCurrentGroup  [promise] result -> " + JSON.stringify(data));
                    expect(true).assertEqual(resultLength!=0);
                    let removeConfig = wifi.removeGroup();
                    expect(removeConfig).assertTrue();
                });
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0207
        * @tc.name testsethotspot
        * @tc.desc Test createGroup  band setting infos
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0207', 0, async function(done) {
            let WifiP2PConfig2 = {
                deviceAddress : "00:00:00:00:00:00",
                netId : -1,
                passphrase : "12345678",
                groupName : "AAAZZZ123",
                goBand : 0,
            };
            console.log("[wifi_test]  check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            let addConfig = wifi.createGroup(WifiP2PConfig2);
            await sleep(2000);
            console.info("[wifi_test] test createGroup3 result." + addConfig)
            expect(addConfig).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getCurrentGroup  [promise] result -> " + JSON.stringify(data));
                    expect(true).assertEqual(resultLength!=0);
                    let removeConfig = wifi.removeGroup();
                    expect(removeConfig).assertTrue();
                });
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0307
        * @tc.name testsethotspot
        * @tc.desc Test createGroup  band setting infos
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0307', 0, async function(done) {
            let WifiP2PConfig2 = {
                deviceAddress : "00:00:00:00:00:00",
                netId : -1,
                passphrase : "12345678",
                groupName : "AAAZZZ123",
                goBand : 3,
            };
            console.log("[wifi_test]  check the state of wifi: " + wifi.isWifiActive());
            expect(wifi.isWifiActive()).assertTrue();
            let addConfig = wifi.createGroup(WifiP2PConfig2);
            await sleep(2000);
            console.info("[wifi_test] test createGroup3 result." + addConfig)
            expect(addConfig).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getCurrentGroup  [promise] result -> " + JSON.stringify(data));
                    expect(true).assertEqual(resultLength!=0);
                    let removeConfig = wifi.removeGroup();
                    expect(removeConfig).assertTrue();
                });
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0008
        * @tc.name testsethotspot
        * @tc.desc Test create P2P error SSID Group  functionality.
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0008', 0, async function (done) {
            let GroupOwnerBand = {
                GO_BAND_AUTO: 0,
                GO_BAND_2GHZ: 1,
                GO_BAND_5GHZ: 2,
            }
            let WifiP2PConfig = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
                passphrase: "12345678",
                groupName: "",
                goBand: 0,
            };
            let addConfig = wifi.createGroup(WifiP2PConfig);
            console.info("[wifi_test] test createGroup result:" + JSON.stringify(addConfig));
            await sleep(2000);
            expect(addConfig).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getCurrentGroup  [promise] result -> " + JSON.stringify(data));
                    let removeConfig = wifi.removeGroup();
                    expect(removeConfig).assertTrue();
                });
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0108
        * @tc.name testsethotspot
        * @tc.desc Test create P2P error SSID Group  functionality.
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0108', 0, async function (done) {
            let GroupOwnerBand = {
                GO_BAND_AUTO: 0,
                GO_BAND_2GHZ: 1,
                GO_BAND_5GHZ: 2,
            }
            let WifiP2PConfig = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
                passphrase: "12345678",
                groupName: " ",
                goBand: 0,
            };
            let addConfig = wifi.createGroup(WifiP2PConfig);
            console.info("[wifi_test] test createGroup result:" + JSON.stringify(addConfig));
            await sleep(2000);
            expect(addConfig).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getCurrentGroup  [promise] result -> " + JSON.stringify(data));
                    let removeConfig = wifi.removeGroup();
                    expect(removeConfig).assertTrue();
                });
            done();
        })

        /**
       * @tc.number SUB_Communication_WiFi_XTS_P2P_0308
       * @tc.name testsethotspot
       * @tc.desc Test create P2P error SSID Group  functionality.
       * @tc.type Function
       * @tc.level Level 0
       */
        it('SUB_Communication_WiFi_XTS_P2P_0308', 0, async function (done) {
            let GroupOwnerBand = {
                GO_BAND_AUTO: 0,
                GO_BAND_2GHZ: 1,
                GO_BAND_5GHZ: 2,
            }
            let WifiP2PConfig = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
                passphrase: " ",
                groupName: "testpassword",
                goBand: 0,
            };
            let addConfig = wifi.createGroup(WifiP2PConfig);
            console.info("[wifi_test] test createGroup result:" + JSON.stringify(addConfig));
            await sleep(2000);
            expect(addConfig).assertTrue();
            await wifi.getCurrentGroup()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getCurrentGroup  [promise] result -> " + JSON.stringify(data));
                    let removeConfig = wifi.removeGroup();
                    expect(removeConfig).assertTrue();
                });
            done();
        })

        /**
    * @tc.number SUB_Communication_WiFi_XTS_P2P_0009
    * @tc.name testp2pCancelConnect
    * @tc.desc Test p2pCancelConnect Group  API functionality.
    * @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",
                goBand : 0
            };
            let addConfig = wifi.createGroup(WifiP2PConfig);
            console.info("[wifi_test] test p2pConnect result." + addConfig);
            let disConn = wifi.p2pCancelConnect();
            await sleep(2000);
            console.info("[wifi_test] test p2pCancelConnect result." + disConn);
            expect(disConn).assertTrue();
            let removeConfig = wifi.removeGroup();
            console.info("[wifi_test] test start removeGroup:" + removeConfig);
            expect(removeConfig).assertTrue();
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0011
        * @tc.name testremoveGroup
        * @tc.desc Test remove error Group functionality.
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_XTS_P2P_0011', 0, async function (done) {
            let isRemoved = wifi.removeGroup(10000);
            console.info("[wifi_test]removeGroup(10000) result : " + JSON.stringify(isRemoved));
            expect(isRemoved).assertTrue();
            done();
        })

        /**
        * @tc.number     SUB_Communication_WiFi_XTS_P2P_0002
        * @tc.name       testP2pLocalDevice
        * @tc.desc       Test get TO P2pLocalDevice API functionality.
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_XTS_P2P_0002', 0, async function (done) {
            await wifi.getP2pLocalDevice()
                .then(data => {
                    let resultLength = Object.keys(data).length;
                    console.info("[wifi_test] getP2pLocalDevice  [promise] result :" + JSON.stringify(data));
                    expect(true).assertEqual(resultLength >= 0);
                }).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
        * @tc.name testgetP2pLinkedInfo
        * @tc.desc Test Test getP2pLinkedInfo  infos
        * @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()
                });
            function getP2pInfo(){
                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();
                        });
                });
            }
            await getP2pInfo();
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0001
        * @tc.name testgetP2pPeerDevices
        * @tc.desc Test getP2pPeerDevices promise infos
        * @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 scanConfig = wifi.startDiscoverDevices();
            await sleep(2000);
            expect(scanConfig).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 stopScan = wifi.stopDiscoverDevices();
            console.info("[wifi_test] test stopDiscoverDevices result." + stopScan);
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0101
        * @tc.name testgetP2pPeerDevices
        * @tc.desc Test getP2pPeerDevices callback infos
        * @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 scanConfig = wifi.startDiscoverDevices();
            await sleep(2000);
            expect(scanConfig).assertTrue();
            await wifi.getP2pPeerDevices((err, result) => {
                if (err) {
                    console.error('failed to getP2pPeerDevices infos callback because ' + JSON.stringify(err));
                }else{
                    console.info("[wifi_test] getP2pPeerDevices [callback] -> " + 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);
                        }
                    }
                    let stopScan = wifi.stopDiscoverDevices();
                    expect(stopScan).assertTrue();
                }
                done();
            });
        })

        /**
        * @tc.number SUB_Communication_WiFi_Event_Test_0008
        * @tc.name testp2pStateChange
        * @tc.desc Test p2pStateChange callback
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_Event_Test_0008', 0, async function (done) {
            await wifi.on('p2pStateChange', result => {
                console.info("onP2pStateChange callback, result:" + JSON.stringify(result));
                expect(true).assertEqual(result !=null);
                done();
            });
            setTimeout(function() {
                wifi.off('p2pStateChange', result => {
                    console.info("offP2pStateChange callback, result:  " + JSON.stringify(result));
                    expect(true).assertEqual(result !=null);
                });
            }, 1 * 1000);
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_Event_Test_0009
        * @tc.name testp2pConnectionChange
        * @tc.desc Test p2pConnectionChange callback
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_Event_Test_0009', 0, async function (done) {
            await wifi.on('p2pConnectionChange', recvP2pConnectionChangeFunc =>  {
                console.info("[wifi_test] p2pConnectionChange result -> " + recvP2pConnectionChangeFunc);
                expect(true).assertEqual(recvP2pConnectionChangeFunc !=null);
                done();
            });
            setTimeout(function() {
                console.info('[wifi_test] offP2pStateChange test start ...');
                wifi.off('p2pConnectionChange', recvP2pConnectionChangeFunc => {
                    console.info("p2pConnectionChange callback" + JSON.stringify(recvP2pConnectionChangeFunc));
                    expect(true).assertEqual(recvP2pConnectionChangeFunc !=null);
                });
            }, 1 * 1000);
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_Event_Test_0012
        * @tc.name testp2pDeviceChange
        * @tc.desc Test p2pDeviceChange callback
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_Event_Test_0012', 0, async function (done) {
            console.info('[wifi_test] Onp2pDeviceChange test start ...');
            await wifi.on('p2pDeviceChange', result => {
                console.info("onP2pDeviceChange callback, result:" + JSON.stringify(result));
                expect(true).assertEqual(result !=null);
                done();
            });
            setTimeout(function() {
                console.info('[wifi_test] offP2pDeviceChange test start ...');
                wifi.off('p2pDeviceChange', result => {
                    console.info("offP2pStateChange callback, result:  " + JSON.stringify(result));
                    expect(true).assertEqual(result !=null);
                });
            }, 1 * 1000);
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_Event_Test_0010
        * @tc.name testp2pDeviceChange
        * @tc.desc Test p2pDeviceChange callback
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_Event_Test_0010', 0, async function (done) {
            let recvP2pPeerDeviceChangeFunc = result => {
                console.info("wifi_test / p2p peer device change receive event: " + JSON.stringify(result));
                wifi.getP2pDevices((err, data) => {
                    if (err) {
                        console.error('wifi_test / failed to get getP2pDevices: ' + JSON.stringify(err));
                        return;
                    }
                    console.info("wifi_test / getP2pDevices [callback] -> " + JSON.stringify(data));
                    let len = Object.keys(data).length;
                    console.log("getP2pDevices number: " + len);
                    for (let i = 0; i < len; ++i) {
                        if (data[i].deviceName === "GRE") {
                            console.info("wifi_test / p2pConnect: -> " + data[i].deviceAddress);
                            let config = {
                                "deviceAddress":data[i].deviceAddress,
                                "netId":-1,
                                "passphrase":"",
                                "groupName":"",
                                "goBand":0,
                            }
                            wifi.p2pConnect(config);
                        }
                    }
                });
            }
            await wifi.on('p2pPeerDeviceChange', result => {
                console.info("onP2pPeerDeviceChange callback, result:" + JSON.stringify(result));
                expect(true).assertEqual(result !=null);
                done();
            });
            setTimeout(function() {
                wifi.off('p2pPeerDeviceChange', result => {
                    console.info("offP2pPeerDeviceChange callback, result:  " + JSON.stringify(result));
                    expect(true).assertEqual(result !=null);
                });
            }, 1 * 1000);
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_Event_Test_0013
        * @tc.name testp2pPersistentGroupChange
        * @tc.desc Test p2pPersistentGroupChange callback
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_Event_Test_0013', 0, async function (done) {
            let recvP2pPersistentGroupChangeFunc = () => {
                console.info("wifi_test / p2p persistent group change receive event");
                let config = {
                    "deviceAddress" : "02:11:65:f2:0d:6e",
                    "netId":-2,
                    "passphrase":"",
                    "groupName":"",
                    "goBand":0,
                };
                let addConfig = wifi.createGroup(config);
                expect(addConfig).assertTrue();
                wifi.getCurrentGroup((err, data) => {
                    if (err) {
                        console.error('wifi_test / failed to get getCurrentGroup: ' + JSON.stringify(err));
                        return;
                    }
                    console.info("wifi_test / get getCurrentGroup [callback] -> " + JSON.stringify(data));
                });
            };
            wifi.on("p2pPersistentGroupChange",recvP2pPersistentGroupChangeFunc);
            setTimeout(async function() {
                wifi.off('p2pPersistentGroupChange', result => {
                    console.info("offP2pPersistentGroupChange callback, result:  " + JSON.stringify(result));
                    expect(true).assertEqual(result !=null);
                });
            }, 1 * 1000);
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_Event_Test_0011
        * @tc.name testpp2pDiscoveryChange
        * @tc.desc Test p2pDiscoveryChange callback
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_Event_Test_0011', 0, async function (done) {
            await wifi.on('p2pDiscoveryChange', result => {
                console.info("onp2pDiscoveryChange callback, result:" + JSON.stringify(result));
                expect(true).assertEqual((result !=null));
                done();
            });
            setTimeout(function() {
                wifi.off('p2pDiscoveryChange', result => {
                    console.info("offp2pDiscoveryChange callback, result:  " + JSON.stringify(result));
                    expect(true).assertEqual(result !=null);
                });
            }, 1 * 1000);
            done();
        })
        console.log("*************[wifi_test] start wifi js unit test end*************");
    })
}