BluetoothHid.test.js 8.9 KB
Newer Older
J
jiyong_sd 已提交
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 bluetooth from '@ohos.bluetooth';
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '@ohos/hypium'

H
comm1  
hwx951322 已提交
19
let hidHostProfile = bluetooth.getProfileInst(6);
J
jiyong_sd 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111

function on(ON_VALUE_TEST_ELEMENT) {
    return new Promise((resolve, reject) => {
        hidHostProfile.on(ON_VALUE_TEST_ELEMENT, function (err, data) {
            if (err != undefined) {
                reject(err);
            } else {
                resolve(data);
            }
        })
    });
}

function off(OFF_VALUE_TEST_ELEMENT) {
    return new Promise((resolve, reject) => {
        hidHostProfile.off(OFF_VALUE_TEST_ELEMENT, function (err, data) {
            if (err != undefined) {
                reject(err);
            } else {
                resolve(data);
            }
        })
    });
}

let ProfId = {
    PROFILE_A2DP_SINK : 0,
    PROFILE_A2DP_SOURCE : 1,
    PROFILE_AVRCP_CT : 2,
    PROFILE_AVRCP_TG : 3,
    PROFILE_HANDS_FREE_AUDIO_GATEWAY : 4,
    PROFILE_HANDS_FREE_UNIT : 5
}


export default function bluetoothhostTest_host_2() {
describe('bluetoothhostTest_host_2', function () {
    beforeAll(function () {
        console.info('beforeAll called')
    })
    beforeEach(function () {
        console.info('beforeEach called')
    })
    afterEach(function () {
        console.info('afterEach called')
    })
    afterAll(function () {
        console.info('afterAll called')
    })

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

    async function tryToEnableBt() {
        let sta = bluetooth.getState();
        switch(sta){
            case 0:
                console.info('[bluetooth_js] bt turn off:'+ JSON.stringify(sta));
                bluetooth.enableBluetooth();
                await sleep(3000);
                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:
                console.info('[bluetooth_js] bt turning off:'+ JSON.stringify(sta));
                bluetooth.enableBluetooth();
                await sleep(3000);
                break;
            default:
                console.info('[bluetooth_js] enable success');
        }
    }


    /**
     * @tc.number SUB_COMMUNACATION_bluetooth_DEVICE_JS_GET_PROFILE_LOOP_0001
     * @tc.name looptestgetprofile(set parameterless)
     * @tc.desc Test getProfile api 1000 times.
     * @tc.author defu.zheng
     * @tc.size SMALL
     * @tc.type Function
     * @tc.level Level 0
     */
    it('SUB_COMMUNACATION_bluetooth_DEVICE_JS_GET_PROFILE_LOOP_0001', 0, async function (done) {
        console.info('[bluetooth_js] loop get profile start');
        await tryToEnableBt();
H
comm1  
hwx951322 已提交
112
        let proFile = bluetooth.getProfileInst(6);
J
jiyong_sd 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
        console.info('[bluetooth_js] loop get profile result:' + JSON.stringify(proFile));
        expect(proFile != null).assertEqual(true);
        done();
    })


    /**
     * @tc.number SUB_COMMUNACATION_bluetooth_DEVICE_JS_GET_CONN_DEV_LOOP_0001
     * @tc.name looptestgetConnectionDevices(bluetooth mode is off)
     * @tc.desc Test getConnectionDevices api 1000 times.
     * @tc.author defu.zheng
     * @tc.size SMALL
     * @tc.type Function
     * @tc.level Level 0
     */
    it('SUB_COMMUNACATION_bluetooth_DEVICE_JS_GET_CONN_DEV_LOOP_0001', 0, async function (done) {
        console.info('[bluetooth_js] loop get connection devices start');
        await tryToEnableBt();
        let arrDev = hidHostProfile.getConnectionDevices();
        console.info('[bluetooth_js] loop getconndev:' + JSON.stringify(arrDev)+ 'length'+ arrDev.length);
        expect(arrDev.length).assertEqual(0);
        done();
    })


    /**
     * @tc.number SUB_COMMUNACATION_bluetooth_DEVICE_JS_GET_DEV_STATE_LOOP_0001
     * @tc.name looptestgetDeviceState(set a null value)
     * @tc.desc Test getDeviceState api 1000 times.
     * @tc.author defu.zheng
     * @tc.size SMALL
     * @tc.type Function
     * @tc.level Level 0
     */
    it('SUB_COMMUNACATION_bluetooth_DEVICE_JS_GET_DEV_STATE_LOOP_0001', 0, async function (done) {
        console.info('[bluetooth_js] loop get device state start');
        await tryToEnableBt();
        let devState = hidHostProfile.getDeviceState('');
        console.info('[bluetooth_js] loop get device state result:' + JSON.stringify(devState));
        expect(devState).assertEqual(0);
        done();
    })


    /**
     * @tc.number SUB_COMMUNACATION_bluetooth_DEVICE_JS_HID_HOST_PROFILE_CONN_LOOP_0001
     * @tc.name looptesthidhostprofileconnect(set a null value)
     * @tc.desc Test hidHostProfile connect api 1000 times.
     * @tc.author defu.zheng
     * @tc.size SMALL
     * @tc.type Function
     * @tc.level Level 0
     */
    it('SUB_COMMUNACATION_bluetooth_DEVICE_JS_HID_HOST_PROFILE_CONN_LOOP_0001', 0, async function (done) {
        console.info('[bluetooth_js] loop HidHostProfile the connect start');
        await tryToEnableBt();
        let conn = hidHostProfile.connect('');
        console.info('[bluetooth_js] loop HidHostProfile the connect result:' + JSON.stringify(conn));
        expect(conn).assertFalse();
        done();
    })


    /**
     * @tc.number SUB_COMMUNACATION_bluetooth_DEVICE_JS_HID_HOST_PROFILE_DISCONN_LOOP_0001
     * @tc.name looptesthidhostprofiledisconnect(set a null value)
     * @tc.desc Test hidHostProfile disconnect api 1000 times.
     * @tc.author defu.zheng
     * @tc.size SMALL
     * @tc.type Function
     * @tc.level Level 0
     */
    it('SUB_COMMUNACATION_bluetooth_DEVICE_JS_HID_HOST_PROFILE_DISCONN_LOOP_0001', 0, async function (done) {
        console.info('[bluetooth_js] loop HidHostProfile the disconnect start');
        await tryToEnableBt();
        let disConn = hidHostProfile.disconnect('');
        console.info('[bluetooth_js] loop HidHostProfile the disconnect result:' + JSON.stringify(disConn));
        expect(disConn).assertFalse();
        done();
    })


    /**
     * @tc.number SUB_COMMUNACATION_bluetooth_DEVICE_JS_HID_HOST_PROFILE_ON_LOOP_0001
     * @tc.name looptesthidhostprofileon
     * @tc.desc Test hidHostProfile on api 1000 times.
     * @tc.author defu.zheng
     * @tc.size SMALL
     * @tc.type Function
     * @tc.level Level 0
     */
    it('SUB_COMMUNACATION_bluetooth_DEVICE_JS_HID_HOST_PROFILE_ON_LOOP_0001', 0, async function (done) {
        try {
            await tryToEnableBt();
            console.info('[bluetooth_js] loop HidHostProfile the on start');
            on("connectionStateChange", function (data) {
                console.info("[bluetooth_js] HidHostProfile_on data " + JSON.stringify(data));
                expect(true).assertEqual(data !=null);
            });
        }catch(e) {
            expect(null).assertFail();
        }
        try {
            console.info('[bluetooth_js] HidHostProfile the off test start');
            off("connectionStateChange", function (data) {
                console.info("[bluetooth_js] HidHostProfile_off data-> " + JSON.stringify(data));
                expect(true).assertEqual(data ==null);
            });
        }catch(e) {
            expect(null).assertFail();
        }
        done();
    })



Q
quanli 已提交
229 230 231 232 233 234 235 236 237 238 239
    /**
     * @tc.number SUB_COMMUNACATION_bluetoothble_PANProfile_Tethering_0001
     * @tc.name testonsppReadOn
     * @tc.desc Test sppReadOn api .
     * @tc.size MEDIUM
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_COMMUNACATION_bluetoothble_PANProfile_Tethering_0001', 0, async function (done) {
        await tryToEnableBt();
        console.info('[bluetooth_js] tethering test start');
H
comm1  
hwx951322 已提交
240
        let panProfile = bluetooth.getProfileInst(bluetooth.ProfileId.PROFILE_PAN_NETWORK);
Q
quanli 已提交
241 242 243 244 245 246 247
        let ret = panProfile.setTethering(false);
        console.info("[bluetooth_js] setTethering false result "+JSON.stringify(ret));
        let result = panProfile.isTetheringOn();
        console.info("[bluetooth_js] setTethering getTetheringOn result1 false== "+JSON.stringify(result));
        expect(result).assertFalse();
        done();
        })
H
comm1  
hwx951322 已提交
248
    })
J
jiyong_sd 已提交
249
}