BluetoothHfp.test.js 10.1 KB
Newer Older
J
jiyong_sd 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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 bluetooth from '@ohos.bluetooth';
Q
quanli 已提交
17 18 19 20 21
import geolocation from '@ohos.geolocation';
import geolocationm from '@ohos.geoLocationManager';
import abilityAccessCtrl from '@ohos.abilityAccessCtrl';
import bundle from '@ohos.bundle';
import osaccount from '@ohos.account.osAccount';
J
jiyong_sd 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '@ohos/hypium'


export default function bluetoothhostTest_host_3() {
describe('bluetoothhostTest_host_3', function () {
    function sleep(delay) {
        return new Promise(resovle => setTimeout(resovle, delay))
    }

    async function tryToEnableBt() {
        let sta = bluetooth.getState();
        switch(sta){
            case 0:
                bluetooth.enableBluetooth();
Q
quanli 已提交
36
                await sleep(10000);
Q
quanli 已提交
37 38
                let sta1 = bluetooth.getState();
                console.info('[bluetooth_js] bt turn off:'+ JSON.stringify(sta1));
J
jiyong_sd 已提交
39 40 41 42 43 44 45 46 47 48
                break;
            case 1:
                console.info('[bluetooth_js] bt turning on:'+ JSON.stringify(sta));
                await sleep(3000);
                break;
            case 2:
                console.info('[bluetooth_js] bt turn on:'+ JSON.stringify(sta));
                break;
            case 3:
                bluetooth.enableBluetooth();
Q
quanli 已提交
49
                await sleep(10000);
Q
quanli 已提交
50 51
                let sta2 = bluetooth.getState();
                console.info('[bluetooth_js] bt turning off:'+ JSON.stringify(sta2));
J
jiyong_sd 已提交
52 53 54 55 56
                break;
            default:
                console.info('[bluetooth_js] enable success');
        }
    }
Q
quanli 已提交
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
	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.location.geolocation.function', 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';
        let permissionName2 = 'ohos.permission.LOCATION_IN_BACKGROUND';
        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));
        });
        await atManager.grantUserGrantedPermission(tokenID, permissionName2, 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 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96
    beforeAll(function () {
        console.info('beforeAll called')
    })
    beforeEach(async function(done) {
        console.info('beforeEach called')
        await tryToEnableBt()
        done()
    })
    afterEach(function () {
        console.info('afterEach called')
    })
    afterAll(function () {
        console.info('afterAll called')
    })
J
jiyong_sd 已提交
97

Q
quanli 已提交
98 99 100 101 102 103 104 105 106 107 108
    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1100
     * @tc.name test Get HFP ConnectionState
     * @tc.desc Test getProfileConnState api.
     * @tc.size MEDIUM
     * @ since 8
     * @tc.type Function
     * @tc.level Level 3
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1100', 0, async function (done) {
        let hfpSrcConn = 
Q
quanli 已提交
109
            bluetooth.getProfileConnState(bluetooth.ProfileId.PROFILE_HANDS_FREE_AUDIO_GATEWAY);
Q
quanli 已提交
110
        console.info('[bluetooth_js]get hfp result:' + JSON.stringify(hfpSrcConn));
Q
quanli 已提交
111
        expect(hfpSrcConn).assertEqual(bluetooth.ProfileConnectionState.STATE_DISCONNECTED);
Q
quanli 已提交
112 113
        done();
    })
J
jiyong_sd 已提交
114 115

    /**
Q
quanli 已提交
116 117 118 119 120
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1200
     * @tc.name test getDevice HFP State.
     * @tc.desc Test getDeviceState api.
     * @tc.size MEDIUM
     * @ since 8
J
jiyong_sd 已提交
121
     * @tc.type Function
Q
quanli 已提交
122
     * @tc.level Level 3
J
jiyong_sd 已提交
123
     */
Q
quanli 已提交
124
    it('SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1200', 0, async function (done) {
Q
quanli 已提交
125
        let hfpSrc = bluetooth.getProfile(bluetooth.ProfileId.PROFILE_HANDS_FREE_AUDIO_GATEWAY);
Q
quanli 已提交
126 127
        let ret = hfpSrc.getDeviceState('11:22:33:44:55:66');
        console.info('[bluetooth_js]hfp getDeviceState:' + JSON.stringify(ret));
Q
quanli 已提交
128
        expect(ret).assertEqual(bluetooth.ProfileConnectionState.STATE_DISCONNECTED);
J
jiyong_sd 已提交
129 130 131
        done();
    })

Q
quanli 已提交
132 133 134 135 136 137 138 139 140 141
    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1300
     * @tc.name test getDevice HFP State.
     * @tc.desc Test getDeviceState api.
     * @tc.size MEDIUM
     * @ since 8
     * @tc.type Function
     * @tc.level Level 3
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1300', 0, async function (done) {
Q
quanli 已提交
142
        let hfpSrc = bluetooth.getProfile(bluetooth.ProfileId.PROFILE_HANDS_FREE_AUDIO_GATEWAY);
Q
quanli 已提交
143 144
        let ret = hfpSrc.getDeviceState('bluetooth1');
        console.info('[bluetooth_js]hfp get valid mac DeviceState:' + JSON.stringify(ret));
Q
quanli 已提交
145
        expect(ret).assertEqual(bluetooth.ProfileConnectionState.STATE_DISCONNECTED);
Q
quanli 已提交
146 147
        done();
    })
J
jiyong_sd 已提交
148 149

    /**
Q
quanli 已提交
150 151 152 153 154
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1400
     * @tc.name test HFP Connect
     * @tc.desc Test connect api.
     * @tc.size MEDIUM
     * @ since 8
J
jiyong_sd 已提交
155
     * @tc.type Function
Q
quanli 已提交
156
     * @tc.level Level 1
J
jiyong_sd 已提交
157
     */
Q
quanli 已提交
158 159 160 161 162 163
    it('SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1400', 0, async function (done) {
        function StateChangeParam(data) {
            console.info("[bluetooth_js] hfp state " + JSON.stringify(data) +
            'deviceId: ' + data.deviceId + 'state:'+ data.state);
            expect(true).assertEqual(data !=null);
        }
Q
quanli 已提交
164
        let hfpSrc = bluetooth.getProfile(bluetooth.ProfileId.PROFILE_HANDS_FREE_AUDIO_GATEWAY);
Q
quanli 已提交
165
        hfpSrc.on('connectionStateChange', StateChangeParam);
Q
quanli 已提交
166
        let conn = hfpSrc.connect('11:22:33:44:55:66');
Q
quanli 已提交
167
        await sleep(6000);
Q
quanli 已提交
168 169
		console.info('[bluetooth_js]hfp connect result:' + JSON.stringify(conn));
        expect(conn).assertFalse();
Q
quanli 已提交
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
        hfpSrc.off('connectionStateChange', StateChangeParam);
        done();
    })
    
    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1500
     * @tc.name test HFP disconnect
     * @tc.desc Test disconnect api.
     * @tc.size MEDIUM
     * @ since 8
     * @tc.type Function
     * @tc.level Level 3
     */
      it('SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1500', 0, async function (done) {
        function StateChangeParam(data) {
            console.info("[bluetooth_js] hfp state " + JSON.stringify(data) +
            'deviceId: ' + data.deviceId + 'state:'+ data.state);
            expect(true).assertEqual(data !=null);
        }
Q
quanli 已提交
189
        let hfpSrc = bluetooth.getProfile(bluetooth.ProfileId.PROFILE_HANDS_FREE_AUDIO_GATEWAY);
Q
quanli 已提交
190 191 192 193 194 195
        hfpSrc.on('connectionStateChange', StateChangeParam);
        await sleep(10000);
        let conn = hfpSrc.disconnect('11:22:33:44:55:66');
        console.info('[bluetooth_js]hfp disconnect result:' + JSON.stringify(conn));
        expect(conn).assertFalse();
        hfpSrc.off('connectionStateChange', StateChangeParam);
J
jiyong_sd 已提交
196 197 198
        done();
    })

Q
quanli 已提交
199 200 201 202 203 204 205 206 207 208
    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1600
     * @tc.name test a invaild HFP Connect
     * @tc.desc Test connect api.
     * @tc.size MEDIUM
     * @ since 8
     * @tc.type Function
     * @tc.level Level 3
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1600', 0, async function (done) {
Q
quanli 已提交
209
        let hfpSrc = bluetooth.getProfile(bluetooth.ProfileId.PROFILE_HANDS_FREE_AUDIO_GATEWAY);
Q
quanli 已提交
210 211 212 213 214
        let conn1 = hfpSrc.connect('test');
        console.info('[bluetooth_js]hfp vaild MAC disconnect :' + JSON.stringify(conn1));
        expect(conn1).assertFalse();
        done();
    })
J
jiyong_sd 已提交
215 216

    /**
Q
quanli 已提交
217 218 219 220 221
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1700
     * @tc.name test a invaild HFP disconnect
     * @tc.desc Test disconnect api.
     * @tc.size MEDIUM
     * @ since 8
J
jiyong_sd 已提交
222
     * @tc.type Function
Q
quanli 已提交
223
     * @tc.level Level 3
J
jiyong_sd 已提交
224
     */
Q
quanli 已提交
225
    it('SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1700', 0, async function (done) {
Q
quanli 已提交
226
        let hfpSrc = bluetooth.getProfile(bluetooth.ProfileId.PROFILE_HANDS_FREE_AUDIO_GATEWAY);
Q
quanli 已提交
227 228 229 230
        console.info('[bluetooth_js]hfp get profile result:' + JSON.stringify(hfpSrc));
        let conn = hfpSrc.disconnect('test');
        console.info('[bluetooth_js]hfp disconnect1 result:' + JSON.stringify(conn));
        expect(conn).assertFalse();
J
jiyong_sd 已提交
231 232 233
        done();
    })

Q
quanli 已提交
234 235 236 237 238 239 240 241 242 243
    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1800
     * @tc.name test getDevice HFP State.
     * @tc.desc Test getDeviceState api.
     * @tc.size MEDIUM
     * @ since 8
     * @tc.type Function
     * @tc.level Level 1
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BR_HFP_Conn_1800', 0, async function (done) {
Q
quanli 已提交
244
        let hfpSrc = bluetooth.getProfile(bluetooth.ProfileId.PROFILE_HANDS_FREE_AUDIO_GATEWAY);
Q
quanli 已提交
245 246 247 248 249 250 251
        let retArray = hfpSrc.getConnectionDevices();
        console.info('[bluetooth_js]hfp getConnectionDevices:' + JSON.stringify(retArray));
        expect(true).assertEqual(retArray.length>=0);
        done();
    })


J
jiyong_sd 已提交
252 253 254
})

}
Q
quanli 已提交
255