WifiStationEvent.test.js 14.5 KB
Newer Older
Q
quanli 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * 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'

Q
quanli 已提交
20
import wifiext from '@ohos.wifiext'
Q
quanli 已提交
21

Q
quanli 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
function sleep(delay) {
    return new Promise(resovle => setTimeout(resovle, delay))
}

function checkWifiPowerOn(){
    console.info("[wifi_test]wifi status:" + wifi.isWifiActive());
}
function resolveIP(ip) {
    return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
}

let wifiSecurityType = {
    WIFI_SEC_TYPE_INVALID: 0,
    WIFI_SEC_TYPE_OPEN: 1,
    WIFI_SEC_TYPE_WEP: 2,
    WIFI_SEC_TYPE_PSK: 3,
    WIFI_SEC_TYPE_SAE: 4,
}

Q
quanli 已提交
41 42 43 44 45 46
let PowerModel = {
    SLEEPING : 0,
    GENERAL : 1,
    THROUGH_WALL : 2,
}

Q
quanli 已提交
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
let connState = {
    SCANNING: 0,
    CONNECTING: 1,
    AUTHENTICATING: 2,
    OBTAINING_IPADDR: 3,
    CONNECTED: 4,
    DISCONNECTING: 5,
    DISCONNECTED: 6,
    UNKNOWN: 7,
}

let untrustedDeviceConfig = {
    "ssid": "untrusted_ssid",
    "bssid": "",
    "preSharedKey": "12345678",
    "isHiddenSsid": false,
    "securityType": wifiSecurityType.WIFI_SEC_TYPE_PSK
}

let wifiChannelWidth = {
    WIDTH_20MHZ : 0,
    WIDTH_40MHZ : 1,
    WIDTH_80MHZ : 2,
    WIDTH_160MHZ : 3,
    WIDTH_80MHZ_PLUS : 4,
    WIDTH_INVALID:null,
}

export default function actsWifiEventTest() {
    describe('actsWifiEventTest', function() {
        beforeEach(function () {
            checkWifiPowerOn();
        })
        afterEach(function () {
        })

        /**
        * @tc.number SUB_Communication_WiFi_Event_Test_0001
Q
quanli 已提交
85
        * @tc.name testWifiStateChange
Q
quanli 已提交
86 87 88 89 90
        * @tc.desc Test wifiStateChange callback
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_Event_Test_0001', 0, async function (done) {
Q
quanli 已提交
91 92 93 94 95 96 97
            let wifiState = "wifiStateChange";
            let wifiStateChangeCallback = result => {
                console.info("[wifi_test]wifiStateChange callback, result: " + JSON.stringify(result));
            }
            wifi.on(wifiState, wifiStateChangeCallback);
            await sleep(3000);
            wifi.off(wifiState, wifiStateChangeCallback);
Q
quanli 已提交
98 99 100 101 102
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_Event_Test_0002
Q
quanli 已提交
103
        * @tc.name testWifiConnectionChange
Q
quanli 已提交
104 105 106 107 108
        * @tc.desc Test wifiConnectionChange callback
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_Event_Test_0002', 0, async function (done) {
Q
quanli 已提交
109 110 111 112 113 114 115
            let wifiConnectionState = "wifiConnectionChange";
            let wifiConnectionChangeCallback = result => {
                console.info("[wifi_test]wifiConnectionChange callback, result: " + JSON.stringify(result));
            }
            wifi.on(wifiConnectionState, wifiConnectionChangeCallback);
            await sleep(3000);
            wifi.off(wifiConnectionState, wifiConnectionChangeCallback);
Q
quanli 已提交
116 117 118 119 120
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_Event_Test_0003
Q
quanli 已提交
121 122
        * @tc.name testWifiScanStateChange
        * @tc.desc Test wifiScanStateChange  callback
Q
quanli 已提交
123 124 125 126
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_Event_Test_0003', 0, async function (done) {
Q
quanli 已提交
127 128 129 130 131
            let wifiScanState = "wifiScanStateChange";
            let wifiScanStateChangeCallback = result => {
                console.info("[wifi_test]wifiScanStateChange callback, result: " + JSON.stringify(result));
            }
            wifi.on(wifiScanState, wifiScanStateChangeCallback);
Q
quanli 已提交
132 133
            let scanResult = wifi.scan();
            await sleep(3000);
Q
quanli 已提交
134
            wifi.off(wifiScanState, wifiScanStateChangeCallback);
Q
quanli 已提交
135 136 137 138 139
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_Event_Test_0004
Q
quanli 已提交
140
        * @tc.name testWifiRssiChange
Q
quanli 已提交
141 142 143 144 145
        * @tc.desc Test wifiRssiChange callback
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_Event_Test_0004', 0, async function (done) {
Q
quanli 已提交
146 147 148 149 150 151 152
            let wifiRssiState = "wifiRssiChange";
            let wifiRssiChangeCallback = result => {
                console.info("[wifi_test]wifiRssiChange callback, result: " + JSON.stringify(result));
            }
            wifi.on(wifiRssiState, wifiRssiChangeCallback);
            await sleep(3000);
            wifi.off(wifiRssiState, wifiRssiChangeCallback);
Q
quanli 已提交
153 154 155 156 157
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_Event_Test_0005
Q
quanli 已提交
158
        * @tc.name testHotspotStateChange
Q
quanli 已提交
159 160 161 162 163
        * @tc.desc Test hotspotStateChange api.
        * @tc.type Function
        * @tc.level Level 3
        */
        it('SUB_Communication_WiFi_Event_Test_0005', 0, async function (done) {
Q
quanli 已提交
164 165 166
            let hotspotState = "hotspotStateChange";
            let hotspotStateChangeCallback = result => {
                console.info("[wifi_test]hotspotStateChange callback, result: " + JSON.stringify(result));
Q
quanli 已提交
167
            }
Q
quanli 已提交
168 169 170
            wifi.on(hotspotState, hotspotStateChangeCallback);
            await sleep(3000);
            wifi.off(hotspotState, hotspotStateChangeCallback);
Q
quanli 已提交
171 172
            done();
        })
Q
quanli 已提交
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

        /**
        * @tc.number SUB_Communication_WiFi_SysCaps_Test_0001
        * @tc.name testenableHotspot
        * @tc.desc Test enableHotspot api.
        * @tc.type Function
        */
        it('SUB_Communication_WiFi_SysCaps_Test_0001', 0, async function (done) {
            console.info('testSysCaps01 start');
            let ret = false;
            try {
                var isAccessToken = canIUse("SystemCapability.Communication.WiFi.AP.Extension");
                console.info("testSysCaps01 test.syscap.param.001 : " + isAccessToken);
                if (isAccessToken) {
                    ret = true;
                }
                console.info("[wifi_test] enableHotspot: " + wifiext.enableHotspot())
                expect(isAccessToken).assertFalse();
                done();
            } catch (e) {
                expect(ret).assertFalse();
                console.info("testSysCaps01 canIUse isAccessToken error: " + e);
            }
            console.info('testSysCaps01 end');
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_SysCaps_Test_0002
        * @tc.name testdisableHotspot
        * @tc.desc Test disableHotspot api.
        * @tc.type Function
        */
        it('SUB_Communication_WiFi_SysCaps_Test_0002', 0, async function (done) {
            console.info('testSysCaps02 start');
            let ret = false;
            try {
                var isAccessToken = canIUse("SystemCapability.Communication.WiFi.AP.Extension");
                console.info("testSysCaps01 test.syscap.param.001 : " + isAccessToken);
                if (isAccessToken) {
                    ret = true;
                }
                console.info("[wifi_test] disableHotspot: " + wifiext.disableHotspot())
                expect(isAccessToken).assertFalse();
                done();
            } catch (e) {
                expect(ret).assertFalse();
                console.info("testSysCaps02 canIUse isAccessToken error: " + e);
            }
            console.info('testSysCaps02 end');
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_SysCaps_Test_0003
        * @tc.name testgetSupportedPowerModel
        * @tc.desc Test getSupportedPowerModel api.
        * @tc.type Function
        */
        it('SUB_Communication_WiFi_SysCaps_Test_0003', 0, async function (done) {
            console.info('testSysCaps03 start');
            let ret = false;
            try {
                var isAccessToken = canIUse("SystemCapability.Communication.WiFi.AP.Extension");
                console.info("testSysCaps01 test.syscap.param.001 : " + isAccessToken);
                if (isAccessToken) {
                    ret = true;
                }
                await wifiext.getSupportedPowerModel()
                    .then(data => {
                        console.info("[wifi_test]getSupportedPowerModel promise result -> " + JSON.stringify(data));
                    });
                expect(isAccessToken).assertFalse();
                done();
            } catch (e) {
                expect(ret).assertFalse();
                console.info("testSysCaps03 canIUse isAccessToken error: " + e);
            }
            console.info('testSysCaps03 end');
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_SysCaps_Test_0004
        * @tc.name testgetSupportedPowerModel
        * @tc.desc Test getSupportedPowerModel api.
        * @tc.type Function
        */
        it('SUB_Communication_WiFi_SysCaps_Test_0004', 0, async function (done) {
            console.info('testSysCaps04 start');
            let ret = false;
            try {
                var isAccessToken = canIUse("SystemCapability.Communication.WiFi.AP.Extension");
                console.info("testSysCaps04 test.syscap.param.001 : " + isAccessToken);
                if (isAccessToken) {
                    ret = true;
                }
                function getSupportedPowerModelResult(){
                    return new Promise((resolve, reject) => {
                        wifiext.getSupportedPowerModel(
                            (err, result) => {
                                if(err) {
                                    console.info("[wifi_test]failed to  getSupportedPowerModel:" + JSON.stringify(err));
                                    expect(true).assertTrue();
                                }
                                console.info("[wifi_test]getSupportedPowerModel callback:" + JSON.stringify(result));
                                resolve();
                            });
                    });
                }
                await getSupportedPowerModelResult();
                expect(isAccessToken).assertFalse();
                done();
            } catch (e) {
                expect(ret).assertFalse();
                console.info("testSysCaps04 canIUse isAccessToken error: " + e);
            }
            console.info('testSysCaps04 end');
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_SysCaps_Test_0005
        * @tc.name testgetPowerModel
        * @tc.desc Test getPowerModel api.
        * @tc.type Function
        */
        it('SUB_Communication_WiFi_SysCaps_Test_0005', 0, async function (done) {
            console.info('testSysCaps05 start');
            let ret = false;
            try {
                var isAccessToken = canIUse("SystemCapability.Communication.WiFi.AP.Extension");
                console.info("testSysCaps01 test.syscap.param.001 : " + isAccessToken);
                if (isAccessToken) {
                    ret = true;
                }
                await wifiext.getPowerModel()
                    .then(data => {
                        console.info("[wifi_test]getPowerModel promise result -> " + JSON.stringify(data));
                    });
                expect(isAccessToken).assertFalse();
                done();
            } catch (e) {
                expect(ret).assertFalse();
                console.info("testSysCaps05 canIUse isAccessToken error: " + e);
            }
            console.info('testSysCaps05 end');
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_SysCaps_Test_0006
        * @tc.name testgetPowerModel
        * @tc.desc Test getPowerModel api.
        * @tc.type Function
        */
        it('SUB_Communication_WiFi_SysCaps_Test_0006', 0, async function (done) {
            console.info('testSysCaps04 start');
            let ret = false;
            try {
                var isAccessToken = canIUse("SystemCapability.Communication.WiFi.AP.Extension");
                console.info("testSysCaps04 test.syscap.param.001 : " + isAccessToken);
                if (isAccessToken) {
                    ret = true;
                }
                function getPowerModelResult(){
                    return new Promise((resolve, reject) => {
                        wifiext.getPowerModel(
                            (err, result) => {
                                if(err) {
                                    console.info("[wifi_test]failed to  getPowerModel:" + JSON.stringify(err));
                                    expect(true).assertTrue();
                                }
                                console.info("[wifi_test]getPowerModel callback:" + JSON.stringify(result));
                                resolve();
                            });
                    });
                }
                await getPowerModelResult();
                expect(isAccessToken).assertFalse();
                done();
            } catch (e) {
                expect(ret).assertFalse();
                console.info("testSysCaps06 canIUse isAccessToken error: " + e);
            }
            console.info('testSysCaps06 end');
            done();
        })

        /**
        * @tc.number SUB_Communication_WiFi_SysCaps_Test_0007
        * @tc.name testsetPowerModel
        * @tc.desc Test setPowerModel api.
        * @tc.type Function
        */
        it('SUB_Communication_WiFi_SysCaps_Test_0007', 0, async function (done) {
            console.info('testSysCaps01 start');
            let ret = false;
            try {
                var isAccessToken = canIUse("SystemCapability.Communication.WiFi.AP.Extension");
                console.info("testSysCaps01 test.syscap.param.001 : " + isAccessToken);
                if (isAccessToken) {
                    ret = true;
                }
                console.info("[wifi_test] setPowerModel: " + wifiext.setPowerModel(PowerModel))
                expect(isAccessToken).assertFalse();
                done();
            } catch (e) {
                expect(ret).assertFalse();
                console.info("testSysCaps07 canIUse isAccessToken error: " + e);
            }
            console.info('testSysCaps07 end');
            done();
        })
Q
quanli 已提交
387 388 389 390
        console.log("*************[wifi_test] start wifi js unit test end*************");
        })
}

Q
quanli 已提交
391

Q
quanli 已提交
392