WifiManagerP2PFunction.test.js 38.1 KB
Newer Older
Q
quanli 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * 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 wifiMg from '@ohos.wifiManager'
Q
quanli 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
import osaccount from '@ohos.account.osAccount'
import bundle from '@ohos.bundle'
import abilityAccessCtrl from '@ohos.abilityAccessCtrl'

async function applyPermission() {
    let osAccountManager = osaccount.getAccountManager();
    console.info("=== getAccountManager finish");
    let localId = await osAccountManager.getOsAccountLocalIdFromProcess();
    console.info("LocalId is :" + localId);
    let appInfo = await bundle.getApplicationInfo('ohos.acts.communication.wifi.wifidevice', 0, localId);
    let atManager = abilityAccessCtrl.createAtManager();
    if (atManager != null) {
        let tokenID = appInfo.accessTokenId;
        console.info('[permission] case accessTokenID is ' + tokenID);
        let permissionName1 = 'ohos.permission.LOCATION';
        await atManager.grantUserGrantedPermission(tokenID, permissionName1, 1).then((result) => {
            console.info('[permission] case grantUserGrantedPermission success :' + JSON.stringify(result));
        }).catch((err) => {
            console.info('[permission] case grantUserGrantedPermission failed :' + JSON.stringify(err));
        });
    } else {
        console.info('[permission] case apply permission failed, createAtManager failed');
    }
}
Q
quanli 已提交
43 44 45 46 47 48 49 50 51 52 53

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

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

export default function actsWifiManagerFunctionTest() {
    describe('actsWifiManagerFunctionTest', function () {
Q
quanli 已提交
54 55 56 57 58 59
        beforeAll(async function (done) {
            console.info('beforeAll case');
            await applyPermission();
            done();
        })

Q
quanli 已提交
60 61 62 63 64 65 66 67 68 69
        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 已提交
70 71
        * @tc.name testcreateP2pGroup
        * @tc.desc Test createP2pGroup and getCurrentP2pGroup API Function
Q
quanli 已提交
72 73 74 75 76 77 78 79
        * @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",
Q
quanli 已提交
80
                groupName : "DIRECT-AAAZZZ123",
Q
quanli 已提交
81 82 83 84
                goBand : wifiMg.GroupOwnerBand.GO_BAND_2GHZ,
            };
            console.log("[wifi_test]check the state of wifi: " + wifiMg.isWifiActive());
            expect(wifiMg.isWifiActive()).assertTrue();
Q
quanli 已提交
85
            let createP2pGroupResult = wifiMg.createP2pGroup(wifiP2PConfig);
Q
quanli 已提交
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
            await sleep(2000);
            await wifiMg.getCurrentP2pGroup()
                .then(data => {
                    console.info("[wifi_test]getCurrentP2pGroup promise result -> " + JSON.stringify(data));
                    expect(true).assertEqual(data.groupName == wifiP2PConfig.groupName);
                });
            function getCurrentP2pGroupResult(){
                return new Promise((resolve, reject) => {
                    wifiMg.getCurrentP2pGroup(
                        (err, result) => {
                            if(err) {
                                console.info("[wifi_test]failed to get getCurrentP2pGroup:" + JSON.stringify(err));
                                expect().assertFail();
                            }
                            console.info("[wifi_test]getCurrentP2pGroup 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);
                            console.info("[wifi_test] clientDevices:" + JSON.stringify(result.clientDevices));
                            console.info("[wifi_test] ownerInfo:" + JSON.stringify(result.WifiP2pDevice));
                            resolve();
                        });
                });
            }
            await getCurrentP2pGroupResult();
Q
quanli 已提交
117
            let removeP2pGroupResult = wifiMg.removeP2pGroup();
Q
quanli 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
            await sleep(2000);
            try {
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    }).catch((error) => {
                        console.error('[wifi_test] getCurrentP2pGroup  promise failed :' + JSON.stringify(error));
                        expect(true).assertEqual(error !=null);
                    });
            }catch(error){
                console.info("[wifi_test]getCurrentP2pGroup promise error: " + JSON.stringify(error.message));
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
            }
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0004
Q
quanli 已提交
137 138
        * @tc.name testcreateP2pGroup
        * @tc.desc Test createP2pGroup-Setting a 7-bit Key Function.
Q
quanli 已提交
139 140 141 142 143 144 145 146 147 148
        * @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: " + wifiMg.isWifiActive());
            expect(wifiMg.isWifiActive()).assertTrue();
            let wifiP2PConfig = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
                passphrase: "1234567",
Q
quanli 已提交
149
                groupName: "DIRECT-test_pass",
Q
quanli 已提交
150 151
                goBand: wifiMg.GroupOwnerBand.GO_BAND_2GHZ,
            };
Q
quanli 已提交
152
            let createP2pGroupResult = wifiMg.createP2pGroup(wifiP2PConfig);
Q
quanli 已提交
153 154 155 156 157
            await sleep(2000);
            await wifiMg.getCurrentP2pGroup()
                .then(data => {
                    console.info("[wifi_test] getCurrentP2pGroup  promise result :" + JSON.stringify(data));
                    expect(true).assertEqual(data.networkId == -999);
Q
quanli 已提交
158 159 160
                }).catch((error) => {
                    console.error('[wifi_test] getCurrentP2pGroup  promise failed :' + JSON.stringify(error));
                    expect(true).assertEqual(error !=null);
Q
quanli 已提交
161
                });
Q
quanli 已提交
162
            let removeP2pGroupResult = wifiMg.removeP2pGroup();
Q
quanli 已提交
163 164 165 166 167 168 169
            await sleep(2000);
            try {
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    }).catch((error) => {
Q
quanli 已提交
170
                        console.error('[wifi_test] getCurrentP2pGroup  promise failed1 :' + JSON.stringify(error));
Q
quanli 已提交
171 172 173 174 175 176 177 178 179 180 181
                        expect(true).assertEqual(error !=null);
                    });
            }catch(error){
                console.info("[wifi_test]getCurrentP2pGroup promise error: " + JSON.stringify(error.message));
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
            }
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0104
Q
quanli 已提交
182 183
        * @tc.name testcreateP2pGroup
        * @tc.desc Test createP2pGroup-Key setting: Chinese, English, and characters Function.
Q
quanli 已提交
184 185 186 187 188 189 190 191 192 193
        * @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: " + wifiMg.isWifiActive());
            expect(wifiMg.isWifiActive()).assertTrue();
            let wifiP2PConfig = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
                passphrase: "123@%abcD",
Q
quanli 已提交
194
                groupName: "DIRECT-test_pass1",
Q
quanli 已提交
195 196
                goBand: wifiMg.GroupOwnerBand.GO_BAND_2GHZ,
            };
Q
quanli 已提交
197
            let createP2pGroupResult = wifiMg.createP2pGroup(wifiP2PConfig);
Q
quanli 已提交
198 199 200 201 202 203
            await sleep(2000);
            await wifiMg.getCurrentP2pGroup()
                .then(data => {
                    console.info("[wifi_test]getCurrentP2pGroup  promise result : " + JSON.stringify(data));
                    expect(true).assertEqual(data.passphrase == wifiP2PConfig.passphrase);
                });
Q
quanli 已提交
204
            let removeP2pGroupResult = wifiMg.removeP2pGroup();
Q
quanli 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
            await sleep(2000);
            try {
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    }).catch((error) => {
                        console.error('[wifi_test] getCurrentP2pGroup  promise failed :' + JSON.stringify(error));
                        expect(true).assertEqual(error !=null);
                    });
            }catch(error){
                console.info("[wifi_test]getCurrentP2pGroup promise error: " + JSON.stringify(error.message));
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
            }
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0204
Q
quanli 已提交
224 225
        * @tc.name testcreateP2pGroup
        * @tc.desc Test createP2pGroup-Key setting 64 bit Function.
Q
quanli 已提交
226 227 228 229 230 231 232 233 234 235
        * @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: " + wifiMg.isWifiActive());
            expect(wifiMg.isWifiActive()).assertTrue();
            let wifiP2PConfig = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
                passphrase: "abc345678901234567890123456789012345678901234567890123456789012",
Q
quanli 已提交
236
                groupName: "DIRECT-test_pass2",
Q
quanli 已提交
237 238
                goBand: wifiMg.GroupOwnerBand.GO_BAND_2GHZ,
            };
Q
quanli 已提交
239
            let createP2pGroupResult = wifiMg.createP2pGroup(wifiP2PConfig);
Q
quanli 已提交
240 241 242 243 244 245
            await sleep(2000);
            await wifiMg.getCurrentP2pGroup()
                .then(data => {
                    console.info("[wifi_test]getCurrentP2pGroup promise result : " + JSON.stringify(data));
                    expect(true).assertEqual(data.passphrase == wifiP2PConfig.passphrase);
                });
Q
quanli 已提交
246
            let removeP2pGroupResult = wifiMg.removeP2pGroup();
Q
quanli 已提交
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
            await sleep(2000);
            try {
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    }).catch((error) => {
                        console.error('[wifi_test] getCurrentP2pGroup  promise failed :' + JSON.stringify(error));
                        expect(true).assertEqual(error !=null);
                    });
            }catch(error){
                console.info("[wifi_test]getCurrentP2pGroup promise error: " + JSON.stringify(error.message));
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
            }
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0304
Q
quanli 已提交
266 267
        * @tc.name testcreateP2pGroup
        * @tc.desc Test createP2pGroup-Key setting 65 bitsFunction.
Q
quanli 已提交
268 269 270 271 272 273 274 275 276 277
        * @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: " + wifiMg.isWifiActive());
            expect(wifiMg.isWifiActive()).assertTrue();
            let wifiP2PConfig = {
                deviceAddress: "00:00:00:00:00:00",
                netId: -1,
                passphrase: "abc3456789012345678901234567890123456789012345678901234567890123",
Q
quanli 已提交
278
                groupName: "DIRECT-test_pass3",
Q
quanli 已提交
279 280
                goBand: wifiMg.GroupOwnerBand.GO_BAND_2GHZ,
            };
Q
quanli 已提交
281
            let createP2pGroupResult = wifiMg.createP2pGroup(wifiP2PConfig);
Q
quanli 已提交
282 283 284 285 286
            await sleep(2000);
            await wifiMg.getCurrentP2pGroup()
                .then(data => {
                    console.info("[wifi_test]getCurrentP2pGroup  promise result :" + JSON.stringify(data));
                    expect(true).assertEqual(data.passphrase != wifiP2PConfig.passphrase);
Q
quanli 已提交
287 288 289
                }).catch((error) => {
                    console.error('[wifi_test] getCurrentP2pGroup  promise failed :' + JSON.stringify(error));
                    expect(true).assertEqual(error !=null);
Q
quanli 已提交
290
                });
Q
quanli 已提交
291
            let removeP2pGroupResult = wifiMg.removeP2pGroup();
Q
quanli 已提交
292 293 294 295 296 297 298
            await sleep(2000);
            try {
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    }).catch((error) => {
Q
quanli 已提交
299
                        console.error('[wifi_test] getCurrentP2pGroup  promise failed1 :' + JSON.stringify(error));
Q
quanli 已提交
300 301 302 303 304 305 306 307 308 309 310
                        expect(true).assertEqual(error !=null);
                    });
            }catch(error){
                console.info("[wifi_test]getCurrentP2pGroup promise error: " + JSON.stringify(error.message));
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
            }
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0007
Q
quanli 已提交
311 312
        * @tc.name testcreateP2pGroup
        * @tc.desc Test createP2pGroup-2.4 GHz frequency band setting Function
Q
quanli 已提交
313 314 315 316 317 318 319 320 321 322
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0007', 0, async function(done) {
            console.log("[wifi_test]check the state of wifi: " + wifiMg.isWifiActive());
            expect(wifiMg.isWifiActive()).assertTrue();
            let wifiP2PConfig = {
                deviceAddress : "00:00:00:00:00:00",
                netId : -1,
                passphrase : "12345678",
Q
quanli 已提交
323
                groupName : "DIRECT-test_band1",
Q
quanli 已提交
324 325
                goBand : wifiMg.GroupOwnerBand.GO_BAND_2GHZ,
            };
Q
quanli 已提交
326
            let createP2pGroupResult = wifiMg.createP2pGroup(wifiP2PConfig);
Q
quanli 已提交
327 328 329 330 331 332
            await sleep(2000);
            await wifiMg.getCurrentP2pGroup()
                .then(data => {
                    console.info("[wifi_test]getCurrentP2pGroup  promise result :" + JSON.stringify(data));
                    expect(true).assertEqual(2412 < data.frequency < 2484 );
                });
Q
quanli 已提交
333
            let removeP2pGroupResult = wifiMg.removeP2pGroup();
Q
quanli 已提交
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
            await sleep(2000);
            try {
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    }).catch((error) => {
                        console.error('[wifi_test] getCurrentP2pGroup  promise failed :' + JSON.stringify(error));
                        expect(true).assertEqual(error !=null);
                    });
            }catch(error){
                console.info("[wifi_test]getCurrentP2pGroup promise error: " + JSON.stringify(error.message));
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
            }
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0107
Q
quanli 已提交
353 354
        * @tc.name testcreateP2pGroup
        * @tc.desc Test createP2pGroup-5 GHz frequency band setting Function
Q
quanli 已提交
355 356 357 358 359 360 361 362 363 364 365
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0107', 0, async function(done) {
            console.log("[wifi_test]check the state of wifi: " + wifiMg.isWifiActive());
            expect(wifiMg.isWifiActive()).assertTrue();
            try {
                let wifiP2PConfig = {
                    deviceAddress : "00:00:00:00:00:00",
                    netId : -1,
                    passphrase : "12345678",
Q
quanli 已提交
366
                    groupName : "DIRECT-test_band2",
Q
quanli 已提交
367 368
                    goBand : wifiMg.GroupOwnerBand.GO_BAND_5GHZ,
                };
Q
quanli 已提交
369
                let createP2pGroupResult = wifiMg.createP2pGroup(wifiP2PConfig);
Q
quanli 已提交
370 371 372 373 374 375
                await sleep(2000);
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result :" + JSON.stringify(data));
                        expect(true).assertEqual(5160 < data.frequency < 5865);
                    });
Q
quanli 已提交
376
                let removeP2pGroupResult = await wifiMg.removeP2pGroup();
Q
quanli 已提交
377 378 379 380 381 382 383 384 385 386
                await sleep(2000);
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    }).catch((error) => {
                        console.error('[wifi_test] getCurrentP2pGroup  promise failed :' + JSON.stringify(error));
                        expect(true).assertEqual(error !=null);
                    });
            }catch(error){
Q
quanli 已提交
387
                console.info("[wifi_test]createP2pGroup 5G goBand result : " + JSON.stringify(error.message));
Q
quanli 已提交
388 389 390 391 392 393 394
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
            }
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0207
Q
quanli 已提交
395 396
        * @tc.name testcreateP2pGroup
        * @tc.desc Test createP2pGroup-Auto frequency band setting Function
Q
quanli 已提交
397 398 399 400 401 402 403 404 405 406 407
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0207', 0, async function(done) {
            console.log("[wifi_test]check the state of wifi: " + wifiMg.isWifiActive());
            expect(wifiMg.isWifiActive()).assertTrue();
            try {
                let wifiP2PConfig = {
                    deviceAddress : "00:00:00:00:00:00",
                    netId : -1,
                    passphrase : "12345678",
Q
quanli 已提交
408
                    groupName : "DIRECT-test_band3",
Q
quanli 已提交
409 410
                    goBand : wifiMg.GroupOwnerBand.GO_BAND_AUTO,
                };
Q
quanli 已提交
411
                let createP2pGroupResult = wifiMg.createP2pGroup(wifiP2PConfig);
Q
quanli 已提交
412 413 414 415 416 417
                await sleep(2000);
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test]getCurrentP2pGroup promise result : " + JSON.stringify(data));
                        expect(true).assertEqual(data.frequency != null );
                    });
Q
quanli 已提交
418
                let removeP2pGroupResult = await wifiMg.removeP2pGroup();
Q
quanli 已提交
419 420 421 422 423 424 425 426 427 428
                await sleep(2000);
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    }).catch((error) => {
                        console.error('[wifi_test] getCurrentP2pGroup  promise failed :' + JSON.stringify(error));
                        expect(true).assertEqual(error !=null);
                    });
            }catch(error){
Q
quanli 已提交
429
                console.info("[wifi_test]createP2pGroup auto  goBand result : " + JSON.stringify(error.message));
Q
quanli 已提交
430 431 432 433 434 435 436
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
            }
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0008
Q
quanli 已提交
437 438
        * @tc.name testcreateP2pGroup
        * @tc.desc Test createP2pGroup-SSID is an empty string Function.
Q
quanli 已提交
439 440 441 442 443 444 445 446 447 448 449 450 451 452
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0008', 0, async function (done) {
            console.log("[wifi_test]check the state of wifi: " + wifiMg.isWifiActive());
            expect(wifiMg.isWifiActive()).assertTrue();
            try {
                let wifiP2PConfig = {
                    deviceAddress: "00:00:00:00:00:00",
                    netId: -1,
                    passphrase: "12345678",
                    groupName: "",
                    goBand: wifiMg.GroupOwnerBand.GO_BAND_2GHZ,
                };
Q
quanli 已提交
453
                let createP2pGroupResult = wifi.createP2pGroup(wifiP2PConfig);
Q
quanli 已提交
454 455 456 457 458
                await sleep(2000);
                await wifi.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test]getCurrentP2pGroup  promise result : " + JSON.stringify(data));
                    });
Q
quanli 已提交
459
                let removeP2pGroupResult = wifi.removeP2pGroup();
Q
quanli 已提交
460 461 462 463 464 465 466 467 468 469
                await sleep(2000);
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    }).catch((error) => {
                        console.error('[wifi_test] getCurrentP2pGroup  promise failed :' + JSON.stringify(error));
                        expect(true).assertEqual(error !=null);
                    });
            }catch(error){
Q
quanli 已提交
470
                console.info("[wifi_test]createP2pGroup error passphrase result : " + JSON.stringify(error.message));
Q
quanli 已提交
471 472 473 474 475 476 477
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
            }
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0108
Q
quanli 已提交
478 479
        * @tc.name testcreateP2pGroup
        * @tc.desc Test createP2pGroup-SSID is a space Function.
Q
quanli 已提交
480 481 482 483 484 485 486 487 488 489 490 491 492 493
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0108', 0, async function (done) {
            console.log("[wifi_test]check the state of wifi: " + wifiMg.isWifiActive());
            expect(wifiMg.isWifiActive()).assertTrue();
            try {
                let wifiP2PConfig = {
                    deviceAddress: "00:00:00:00:00:00",
                    netId: -1,
                    passphrase: "12345678",
                    groupName: " ",
                    goBand: wifiMg.GroupOwnerBand.GO_BAND_2GHZ,
                };
Q
quanli 已提交
494
                let createP2pGroupResult = wifi.createP2pGroup(wifiP2PConfig);
Q
quanli 已提交
495 496 497 498 499
                await sleep(2000);
                await wifi.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test]getCurrentP2pGroup promise result :" + JSON.stringify(data));
                    });
Q
quanli 已提交
500
                let removeP2pGroupResult = wifi.removeP2pGroup();
Q
quanli 已提交
501 502 503 504 505 506 507 508 509 510
                await sleep(2000);
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    }).catch((error) => {
                        console.error('[wifi_test] getCurrentP2pGroup  promise failed :' + JSON.stringify(error));
                        expect(true).assertEqual(error !=null);
                    });
            }catch(error){
Q
quanli 已提交
511
                console.info("[wifi_test]createP2pGroup error passphrase result : " + JSON.stringify(error.message));
Q
quanli 已提交
512 513 514 515 516 517 518
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
            }
            done();
        })

        /**
       * @tc.number SUB_Communication_WiFi_XTS_P2P_0308
Q
quanli 已提交
519 520
       * @tc.name testcreateP2pGroup
       * @tc.desc Test createP2pGroup-the password must be a space.
Q
quanli 已提交
521 522 523 524 525 526 527 528 529 530 531
       * @tc.type Function
       * @tc.level Level 0
       */
        it('SUB_Communication_WiFi_XTS_P2P_0308', 0, async function (done) {
            console.log("[wifi_test]check the state of wifi: " + wifiMg.isWifiActive());
            expect(wifiMg.isWifiActive()).assertTrue();
            try {
                let wifiP2PConfig = {
                    deviceAddress: "00:00:00:00:00:00",
                    netId: -1,
                    passphrase: " ",
Q
quanli 已提交
532
                    groupName: "DIRECT-testpassword",
Q
quanli 已提交
533 534
                    goBand: wifiMg.GroupOwnerBand.GO_BAND_2GHZ,
                };
Q
quanli 已提交
535
                let createP2pGroupResult = wifi.createP2pGroup(wifiP2PConfig);
Q
quanli 已提交
536 537 538 539 540
                await sleep(2000);
                await wifi.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result :" + JSON.stringify(data));
                    });
Q
quanli 已提交
541
                let removeP2pGroupResult = wifi.removeP2pGroup();
Q
quanli 已提交
542 543 544 545 546 547 548 549 550 551
                await sleep(2000);
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    }).catch((error) => {
                        console.error('[wifi_test] getCurrentP2pGroup  promise failed :' + JSON.stringify(error));
                        expect(true).assertEqual(error !=null);
                    });
            }catch(error){
Q
quanli 已提交
552
                console.info("[wifi_test]createP2pGroup error passphrase result : " + JSON.stringify(error.message));
Q
quanli 已提交
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
            }
            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 : "11:22:33:44:55:66",
                netId : -1,
                passphrase : "12345678",
Q
quanli 已提交
570
                groupName : "DIRECT-AAAZZZ456",
Q
quanli 已提交
571 572 573 574 575 576 577
                goBand : wifiMg.GroupOwnerBand.GO_BAND_2GHZ,
            };
            let p2pConnectResult = wifiMg.p2pConnect(wifiP2PConfig);
            console.info("[wifi_test]test p2pConnect successful." );
            let p2pCancelResult = wifiMg.p2pCancelConnect();
            await sleep(2000);
            console.info("[wifi_test]test p2pCancelConnect successful." );
Q
quanli 已提交
578 579
            let removeP2pGroupResult = wifiMg.removeP2pGroup();
            console.info("[wifi_test]test removeP2pGroup  successful " );
Q
quanli 已提交
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
            try {
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    }).catch((error) => {
                        console.error('[wifi_test] getCurrentP2pGroup  promise failed :' + JSON.stringify(error));
                        expect(true).assertEqual(error !=null);
                    });
            }catch(error){
                console.info("[wifi_test]getCurrentP2pGroup promise error: " + JSON.stringify(error.message));
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
            }
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0011
Q
quanli 已提交
598
        * @tc.name testremoveP2pGroup
Q
quanli 已提交
599 600 601 602 603
        * @tc.desc Test remove a nonexistent group.
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_XTS_P2P_0011', 0, async function (done) {
Q
quanli 已提交
604 605 606 607 608 609 610 611 612 613 614 615 616 617
            let removeP2pGroupResult = wifiMg.removeP2pGroup(10000);
            try {
                await wifiMg.getCurrentP2pGroup()
                    .then(data => {
                        console.info("[wifi_test] getCurrentP2pGroup  promise result1 :" + JSON.stringify(data));
                        expect(true).assertEqual(data.deviceName == null);
                    }).catch((error) => {
                        console.error('[wifi_test] getCurrentP2pGroup  promise failed :' + JSON.stringify(error));
                        expect(true).assertEqual(error !=null);
                    });
            }catch(error){
                console.info("[wifi_test]getCurrentP2pGroup promise error: " + JSON.stringify(error.message));
                expect(true).assertEqual( (JSON.stringify(error.message)) !=null);
            }
Q
quanli 已提交
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
            done();
        })

        /**
        * @tc.number     SUB_Communication_WiFi_XTS_P2P_0002
        * @tc.name       testP2pLocalDevice
        * @tc.desc       Test get P2pLocalDevice API functionality.
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_XTS_P2P_0002', 0, async function (done) {
            await wifiMg.getP2pLocalDevice()
                .then(data => {
                    console.info("[wifi_test]getP2pLocalDevice  promise result :" + JSON.stringify(data));
                    expect(true).assertEqual(data.deviceName !=null);
                }).catch((error) => {
                    console.info("[wifi_test]getP2pLocalDevice promise error." + JSON.stringify(error));
                    expect().assertFail();
                });
            function getP2pLocal(){
                return new Promise((resolve, reject) => {
                    wifiMg.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 getP2pLinkedInfo API functionality
        * @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 wifiMg.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 getP2pLinkedInfoResult(){
                return new Promise((resolve, reject) => {
                    wifiMg.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 getP2pLinkedInfoResult();
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0001
        * @tc.name testGetP2pPeerDevices
        * @tc.desc Test getP2pPeerDevices promise API functionality
        * @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: " + wifiMg.isWifiActive());
            expect(wifiMg.isWifiActive()).assertTrue();
Q
quanli 已提交
709
            let startDiscover = wifiMg.startDiscoverP2pDevices();
Q
quanli 已提交
710 711 712 713 714 715 716 717 718 719
            await sleep(2000);
            await wifiMg.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();
                });
Q
quanli 已提交
720
            let stopDiscover = wifiMg.stopDiscoverP2pDevices();
Q
quanli 已提交
721 722 723 724 725 726 727 728 729 730 731 732 733
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_XTS_P2P_0101
        * @tc.name testGetP2pPeerDevices
        * @tc.desc Test getP2pPeerDevices callback API functionality
        * @tc.type Function
        * @tc.level Level 0
        */
        it('SUB_Communication_WiFi_XTS_P2P_0101', 0, async function(done){
            console.log("[wifi_test]check the state of wifi: " + wifiMg.isWifiActive());
            expect(wifiMg.isWifiActive()).assertTrue();
Q
quanli 已提交
734
            let startDiscover = wifiMg.startDiscoverP2pDevices();
Q
quanli 已提交
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
            await sleep(2000);
            function getP2pPeerDevicesResult(){
                return new Promise((resolve, reject) => {
                    wifiMg.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 == wifiMg.P2pDeviceStatus.UNAVAILABLE){
                                    console.info("deviceStatus: " + result[j].deviceStatus);
                                }
                                if(result[j].deviceStatus == wifiMg.P2pDeviceStatus.CONNECTED){
                                    console.info("deviceStatus: " + result[j].deviceStatus);
                                }
                                if(result[j].deviceStatus == wifiMg.P2pDeviceStatus.INVITED){
                                    console.info("deviceStatus: " + result[j].deviceStatus);
                                }
                                if(result[j].deviceStatus == wifiMg.P2pDeviceStatus.FAILED){
                                    console.info("deviceStatus: " + result[j].deviceStatus);
                                }
                                if(result[j].deviceStatus == wifiMg.P2pDeviceStatus.AVAILABLE){
                                    console.info("deviceStatus: " + result[j].deviceStatus);
                                }
                            }
                            resolve();
                        });
                });
            }
            await getP2pPeerDevicesResult();
            done();
        });
        console.log("*************[wifi_test] start wifi js unit test end*************");
    })
}