WifiManagerStationFunctions.test.js 19.7 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 54 55 56 57

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

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

function resolveIP(ip) {
    return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
}

export default function actsWifiManagerFunctionsTest() {
    describe('actsWifiManagerFunctionsTest', function() {
Q
quanli 已提交
58 59 60 61 62 63
        beforeAll(async function (done) {
            console.info('beforeAll case');
            await applyPermission();
            done();
        })

Q
quanli 已提交
64 65 66 67 68 69
        beforeEach(function () {
            checkWifiPowerOn();
        })
        afterEach(function () {
        })

Q
quanli 已提交
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
       /**
       * @tc.number SUB_Communication_WiFi_XTS_Sta_0021
       * @tc.name testGetSignalLevel
       * @tc.desc Test getSignalLevel API functionality..
       * @tc.type Function
       * @tc.level Level 3
       */
       it('SUB_Communication_WiFi_XTS_Sta_0021', 0, function () {
           console.info("[wifi_test] check the 2.4G rssi assgined to level test.");
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-65, 1));
           expect(wifiMg.getSignalLevel(-65, 1)).assertEqual(4);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-66, 1));
           expect(wifiMg.getSignalLevel(-66, 1)).assertEqual(3);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-75, 1));
           expect(wifiMg.getSignalLevel(-75, 1)).assertEqual(3);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-76, 1));
           expect(wifiMg.getSignalLevel(-76, 1)).assertEqual(2);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-82, 1));
           expect(wifiMg.getSignalLevel(-82, 1)).assertEqual(2);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-83, 1));
           expect(wifiMg.getSignalLevel(-83, 1)).assertEqual(1);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-88, 1));
           expect(wifiMg.getSignalLevel(-88, 1)).assertEqual(1);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-89, 1));
           expect(wifiMg.getSignalLevel(-89, 1)).assertEqual(0);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-127, 1));
           expect(wifiMg.getSignalLevel(-127, 1)).assertEqual(0);
Q
quanli 已提交
97

Q
quanli 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
           console.info("[wifi_test] check the 5G rssi assgined to level test.");
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-65, 2));
           expect(wifiMg.getSignalLevel(-65, 2)).assertEqual(4);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-66, 2));
           expect(wifiMg.getSignalLevel(-66, 2)).assertEqual(3);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-72, 2));
           expect(wifiMg.getSignalLevel(-72, 2)).assertEqual(3);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-73, 2));
           expect(wifiMg.getSignalLevel(-73, 2)).assertEqual(2);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-79, 2));
           expect(wifiMg.getSignalLevel(-79, 2)).assertEqual(2);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-80, 2));
           expect(wifiMg.getSignalLevel(-80, 2)).assertEqual(1);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-85, 2));
           expect(wifiMg.getSignalLevel(-85, 2)).assertEqual(1);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-86, 2));
           expect(wifiMg.getSignalLevel(-86, 2)).assertEqual(0);
           console.info("[wifi_test] getSignalLevel " + wifiMg.getSignalLevel(-127, 2));
           expect(wifiMg.getSignalLevel(-127, 2)).assertEqual(0);
       })
Q
quanli 已提交
118

Q
quanli 已提交
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
       /**
       * @tc.number SUB_Communication_WiFi_XTS_Sta_0017
       * @tc.name testgetCountryCode
       * @tc.desc Test getCountryCode API function.
       * @tc.type Function
       * @tc.level Level 3
       */
       it('SUB_Communication_WiFi_XTS_Sta_0017', 0, function () {
           expect(wifiMg.isWifiActive()).assertTrue();
           let getCountryCodeResult = wifiMg.getCountryCode();
           console.info("[wifi_test]getCountryCode :" + JSON.stringify(getCountryCodeResult));
           let countrylenth = getCountryCodeResult.length;
           console.info("[wifi_test]getCountryCode.length :" + JSON.stringify(countrylenth));
           expect(true).assertEqual(countrylenth == 2);
           let WIDTH_20MHZ = wifiMg.WifiChannelWidth .WIDTH_20MHZ;
           console.info("[wifi_test]WIDTH_20MHZ : " + JSON.stringify(WIDTH_20MHZ));
           expect(true).assertEqual( WIDTH_20MHZ == 0);
           let WIDTH_40MHZ = wifiMg.WifiChannelWidth .WIDTH_40MHZ;
           console.info("[wifi_test]WIDTH_40MHZ : " + JSON.stringify(WIDTH_40MHZ));
           expect(true).assertEqual( WIDTH_40MHZ == 1);
           let WIDTH_80MHZ = wifiMg.WifiChannelWidth .WIDTH_80MHZ;
           console.info("[wifi_test]WIDTH_80MHZ : " + JSON.stringify(WIDTH_80MHZ));
           expect(true).assertEqual( WIDTH_80MHZ == 2);
           let WIDTH_160MHZ = wifiMg.WifiChannelWidth .WIDTH_160MHZ;
           console.info("[wifi_test]WIDTH_160MHZ : " + JSON.stringify(WIDTH_160MHZ));
           expect(true).assertEqual( WIDTH_160MHZ == 3);
           let WIDTH_80MHZ_PLUS = wifiMg.WifiChannelWidth .WIDTH_80MHZ_PLUS;
           console.info("[wifi_test]WIDTH_80MHZ_PLUS : " + JSON.stringify(WIDTH_80MHZ_PLUS));
           expect(true).assertEqual( WIDTH_80MHZ_PLUS == 4);
           let WIDTH_INVALID = wifiMg.WifiChannelWidth .WIDTH_INVALID;
           console.info("[wifi_test]WIDTH_INVALID : " + JSON.stringify(WIDTH_INVALID));
           expect(true).assertEqual( WIDTH_INVALID == 5);
       })
Q
quanli 已提交
152

Q
quanli 已提交
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
       /**
       * @tc.number SUB_Communication_WiFi_XTS_Sta_0020
       * @tc.name testFeatureSupported
       * @tc.desc Test FeatureSupported API function.
       * @tc.type Function
       * @tc.level Level 3
       */
       it('SUB_Communication_WiFi_XTS_Sta_0020', 0, function () {
           expect(wifiMg.isWifiActive()).assertTrue();
           let wifiUtils = {
               WIFI_FEATURE_INFRA: 0x0001,
               WIFI_FEATURE_INFRA_5G: 0x0002,
               WIFI_GAS_ANQP: 0x0004,
               WIFI_WIFI_DIRECT: 0x0008,
               WIFI_FEATURE_MOBILE_HOTSPOT: 0x0010,
               WIFI_FEATURE_AWARE: 0x0040,
               WIFI_FEATURE_AP_STA: 0x8000,
               WIFI_FEATURE_WPA3_SAE: 0x8000000,
               WIFI_FEATURE_WPA3_SUITE_B: 0x10000000,
               WIFI_FEATURE_OWE: 0x20000000
           }
           let isSupport1 = wifiMg.isFeatureSupported(wifiUtils.WIFI_FEATURE_INFRA);
           console.info("[wifi_test] isFeatureSupported -> " + isSupport1);
           let isSupport2 = wifiMg.isFeatureSupported(wifiUtils.WIFI_FEATURE_INFRA_5G);
           console.info("[wifi_test] isFeatureSupported2 -> " + isSupport2);
           let isSupport3 = wifiMg.isFeatureSupported(wifiUtils.WIFI_GAS_ANQP);
           console.info("[wifi_test] isFeatureSupported3 -> " + isSupport3);
           let isSupport4 = wifiMg.isFeatureSupported(wifiUtils.WIFI_WIFI_DIRECT);
           console.info("[wifi_test] isFeatureSupported4 -> " + isSupport4);
           let isSupport5 = wifiMg.isFeatureSupported(wifiUtils.WIFI_FEATURE_MOBILE_HOTSPOT);
           console.info("[wifi_test] isFeatureSupported5 -> " + isSupport5);
           let isSupport6 = wifiMg.isFeatureSupported(wifiUtils.WIFI_FEATURE_AWARE);
           console.info("[wifi_test] isFeatureSupported6 -> " + isSupport6);
           let isSupport7 = wifiMg.isFeatureSupported(wifiUtils.WIFI_FEATURE_AP_STA);
           console.info("[wifi_test] isFeatureSupported7 -> " + isSupport7);
           let isSupport8 = wifiMg.isFeatureSupported(wifiUtils.WIFI_FEATURE_WPA3_SAE);
           console.info("[wifi_test] isFeatureSupported8 -> " + isSupport8);
           let isSupport9 = wifiMg.isFeatureSupported(wifiUtils.WIFI_FEATURE_WPA3_SUITE_B);
           console.info("[wifi_test] isFeatureSupported9 -> " + isSupport9);
           let isSupport = wifiMg.isFeatureSupported(wifiUtils.WIFI_FEATURE_OWE);
           console.info("[wifi_test] isFeatureSupported -> " + isSupport);
       })
Q
quanli 已提交
195

Q
quanli 已提交
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
       /**
       * @tc.number SUB_Communication_WiFi_XTS_Sta_0004
       * @tc.name testGetLinkedInfo
       * @tc.desc Test Test getLinkedInfo and getIpInfo  information.
       * @tc.type Function
       * @tc.level Level 1
       */
       it('SUB_Communication_WiFi_XTS_Sta_0004', 0, async function (done) {
           let isConnectedResult = wifiMg.isConnected();
           let ipInfoResult = wifiMg.getIpInfo();
           expect(JSON.stringify(ipInfoResult)).assertContain("gateway");
           let ipAddress = resolveIP(ipInfoResult.ipAddress);
           console.info("[wifi_test]ipAddress result: " + ipAddress);
           console.info("gateway: " + ipInfoResult.gateway + "ipAddress: " + ipInfoResult.ipAddress
           + "leaseDuration: " + ipInfoResult.leaseDuration +
           "leaseDuration: " + ipInfoResult.leaseDuration +
           "netmask: " + ipInfoResult.netmask + "primaryDns:" + ipInfoResult.primaryDns +
           "secondDns: " + ipInfoResult.secondDns + "serverIp: " + ipInfoResult.serverIp);
           await wifiMg.getLinkedInfo()
               .then((result) => {
                   console.info("[wifi_test]get wifi link promise:" + JSON.stringify(result));
                   done();
               }).catch((error) => {
                   console.info("[wifi_test]promise then error." + JSON.stringify(error));
                   expect().assertFail();
               });
           function getLinked(){
               return new Promise((resolve, reject) => {
                   wifiMg.getLinkedInfo(
                       (err, result) => {
                           if(err) {
                               console.log("[wifi_test]wifi getLinkedInfo failed " + err);
                           }
                           let clen = Object.keys(result).length;
                           expect(clen).assertLarger(0);
                           console.info("[wifi_test]getLinkedInfo callback result: " + JSON.stringify(result));
                           console.info("ssid: " + result.ssid + "bssid:" + result.bssid + "band: " + result.band +
                           "isHidden: " + result.isHidden + "isRestricted: " + result.isRestricted +
                           "chload: " + result.chload + "rssi " + result.rssi + "netWorkId: " + result.netWorkId +
                           "linkSpeed: " + result.linkSpeed + "frequency:"
                           + result.frequency + "snr:" + result.snr +
                           "macAddress: " + result.macAddress + "ipAddress: " + result.ipAddress +
                           "suppState: " + result.suppState + "connState: " + result.connState
                           + "macType: " + result.macType + "rxLinkSpeed: " + result.rxLinkSpeed
                           + "maxSupportedTxLinkSpeed: " + result.maxSupportedTxLinkSpeed
                           + "maxSupportedRxLinkSpeed: " + result.maxSupportedRxLinkSpeed
                           + "wifiStandard: " + result.wifiStandard);
                           let standard = wifiMg.getLinkedInfo().WifiStandard;
                           if (standard == wifiMg.WifiStandard.WIFI_STANDARD_UNDEFINED) {
                               expect(true).assertEqual(standard == 0);
                           }
                           if (standard == wifiMg.WifiStandard.WIFI_STANDARD_11A) {
                               expect(true).assertEqual(standard == 1);
                           }
                           if (standard == wifiMg.WifiStandard.WIFI_STANDARD_11B) {
                               expect(true).assertEqual(standard == 2);
                           }
                           if (standard == wifiMg.WifiStandard.WIFI_STANDARD_11G) {
                               expect(true).assertEqual(standard == 3);
                           }
                           if (standard == wifiMg.WifiStandard.WIFI_STANDARD_11N) {
                               expect(true).assertEqual(standard == 4);
                           }
                           if (standard == wifiMg.WifiStandard.WIFI_STANDARD_11AC) {
                               expect(true).assertEqual(standard == 5);
                           }
                           if (standard == wifiMg.WifiStandard.WIFI_STANDARD_11AX) {
                               expect(true).assertEqual(standard == 6);
                           }
                           if (standard == wifiMg.WifiStandard.WIFI_STANDARD_11AD) {
                               expect(true).assertEqual(standard == 7);
                           }
                           let state = wifiMg.getLinkedInfo().ConnState;
                           if (state == wifiMg.ConnState.SCANNING) {
                               expect(true).assertEqual(state == 0);
                           }
                           if (state == wifiMg.ConnState.CONNECTING) {
                               expect(true).assertEqual(state == 1);
                           }
                           if (state == wifiMg.ConnState.AUTHENTICATING) {
                               expect(true).assertEqual(state == 2);
                           }
                           if (state == wifiMg.ConnState.OBTAINING_IPADDR) {
                               expect(true).assertEqual(state == 3);
                           }
                           if (state == wifiMg.ConnState.CONNECTED) {
                               expect(true).assertEqual(state == 4);
                           }
                           if (state == wifiMg.ConnState.DISCONNECTING) {
                               expect(true).assertEqual(state == 5);
                           }
                           if (state == wifiMg.ConnState.DISCONNECTED) {
                               expect(true).assertEqual(state == 6);
                           }
                           if (state == wifiMg.ConnState.UNKNOWN) {
                               expect(true).assertEqual(state == 7);
                           }
                           resolve();
                       });
               });
           }
           await getLinked();
           done();
       })
Q
quanli 已提交
300

Q
quanli 已提交
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
       /**
       * @tc.number SUB_Communication_WiFi_XTS_Sta_0034
       * @tc.name testgetScanResultsSync
       * @tc.desc Test getScanResults Sync API functionality.
       * @tc.type Function
       * @tc.level Level 0
       */
       it('SUB_Communication_WiFi_XTS_Sta_0034', 0, async function(done) {
           let scanResult = wifiMg.scan();
           await sleep(3000);
           let getScanInfoListResult = wifiMg.getScanInfoList();
           console.info("[wifi_test]wifi getScanInfoList  result : " + JSON.stringify(getScanInfoListResult));
           let clen = Object.keys(getScanInfoListResult).length;
           console.info("[wifi_test]wifi getScanInfoList length  result : " + JSON.stringify(clen));
           let result = getScanInfoListResult;
           if (clen >= 0) {
               expect(true).assertEqual(clen >= 0);
               for (let j = 0; j < clen; ++j) {
                   console.info("ssid: " + result[j].ssid + "bssid: " + result[j].bssid +
                   "securityType: " + result[j].securityType +
                   "rssi: " + result[j].rssi + "band: " + result[j].band +
                   "frequency: " + result[j].frequency + "channelWidth: " + result[j].channelWidth +
                   "timestamp" + result[j].timestamp + "capabilities" + result[j].capabilities
                   + "centerFrequency0: " + result[j].centerFrequency0
                   + "centerFrequency1: " + result[j].centerFrequency1
                   + "eid: " + result[j].infoElems.eid + "content: " + result[j].infoElems.content);
               }
           }
           done();
       })
Q
quanli 已提交
331 332

        /**
Q
quanli 已提交
333 334 335
        * @tc.number SUB_Communication_WiFi_XTS_Sta_0035
        * @tc.name testisBandTypeSupported
        * @tc.desc Test isBandTypeSupported API functionality.
Q
quanli 已提交
336 337 338
        * @tc.type Function
        * @tc.level Level 0
        */
Q
quanli 已提交
339 340 341 342 343 344 345
        it('SUB_Communication_WiFi_XTS_Sta_0035', 0, async function(done) {
            try {
                let isBandTypeSupported = wifiMg.isBandTypeSupported(wifiMg.WifiBandType.WIFI_BAND_NONE);
                console.info("[wifi_test]isBandTypeSupported." + JSON.stringify(isBandTypeSupported));
            } catch (error) {
                console.error(`isBandTypeSupported failed, code is ${error.code}, message is ${error.message}`);
                expect(error.code).assertEqual("401");
Q
quanli 已提交
346
            }
Q
quanli 已提交
347 348 349 350 351 352 353 354 355 356 357 358
            let isBandTypeSupported1 = wifiMg.isBandTypeSupported(wifiMg.WifiBandType.WIFI_BAND_2G);
            console.info("[wifi_test]isBandTypeSupported1." + JSON.stringify(isBandTypeSupported1));
            expect(typeof (isBandTypeSupported1)).assertEqual('boolean');
            let isBandTypeSupported2 = wifiMg.isBandTypeSupported(wifiMg.WifiBandType.WIFI_BAND_5G);
            console.info("[wifi_test]isBandTypeSupported2." + JSON.stringify(isBandTypeSupported2));
            expect(typeof (isBandTypeSupported2)).assertEqual('boolean');
            let isBandTypeSupported3 = wifiMg.isBandTypeSupported(wifiMg.WifiBandType.WIFI_BAND_6G);
            console.info("[wifi_test]isBandTypeSupported3." + JSON.stringify(isBandTypeSupported3));
            expect(typeof (isBandTypeSupported3)).assertEqual('boolean');
            let isBandTypeSupported4 = wifiMg.isBandTypeSupported(wifiMg.WifiBandType.WIFI_BAND_60G);
            console.info("[wifi_test]isBandTypeSupported4." + JSON.stringify(isBandTypeSupported4));
            expect(typeof (isBandTypeSupported4)).assertEqual('boolean');
Q
quanli 已提交
359 360 361
            done();
        })
        console.log("*************[wifi_test] start wifi js unit test end*************");
Q
quanli 已提交
362
    })
Q
quanli 已提交
363 364
}