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

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

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

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0100
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 0
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0100', 0, async function (done) {
    	function onReceiveEvent(data)
        {
            console.info('[bluetooth_js] BLEscan device result1 '+JSON.stringify(data));
Q
quanli 已提交
79
            expect(true).assertTrue(data.length>0);
Q
quanli 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
        }
        bluetooth.BLE.on("BLEDeviceFind",onReceiveEvent)
        bluetooth.BLE.startBLEScan(null);
		await sleep(1000);
		bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
		bluetooth.BLE.stopBLEScan();
		done();
    })

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0200
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0200', 0, async function (done) {
        function onReceiveEvent(data)
        {
Q
quanli 已提交
101 102
            console.info('[bluetooth_js] BLEscan device result2'+JSON.stringify(data));
            expect(true).assertTrue(data.length>0);
Q
quanli 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
         }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan([{deviceId:"00:11:22:33:44:55"}]);
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off2');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0300
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0300', 0, async function (done) {
        function onReceiveEvent(data)
        {
Q
quanli 已提交
125 126
            console.info('[bluetooth_js] BLEscan device result3'+JSON.stringify(data));
            expect(true).assertTrue(data.length>0);
Q
quanli 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
         }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan([{name:"blue_test"}]);
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off3');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0400
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 3
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0400', 0, async function (done) {
        function onReceiveEvent(data)
        {
Q
quanli 已提交
149 150
            console.info('[bluetooth_js] BLEscan device result4'+JSON.stringify(data));
            expect(true).assertTrue(data.length>0);
Q
quanli 已提交
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
         }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan([{serviceUuid:"00001888-0000-1000-8000-00805f9b34fb"}]);
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off4');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0500
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 3
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0500', 0, async function (done) {
        function onReceiveEvent(data)
        {
Q
quanli 已提交
173 174
            console.info('[bluetooth_js] BLEscan device result5'+JSON.stringify(data));
            expect(true).assertTrue(data.length>0);
Q
quanli 已提交
175 176 177 178 179 180
         }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan(
            [{}],
           {
                interval: 100,
Q
quanli 已提交
181 182
                dutyMode: bluetooth.ScanDuty.SCAN_MODE_LOW_POWER,
                matchMode: bluetooth.MatchMode.MATCH_MODE_AGGRESSIVE,
Q
quanli 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
            }
        );
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off5');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0600
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 3
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0600', 0, async function (done) {
        function onReceiveEvent(data)
        {
Q
quanli 已提交
204 205
            console.info('[bluetooth_js] BLEscan device result6'+JSON.stringify(data));
            expect(true).assertTrue(data.length>0);
Q
quanli 已提交
206 207 208
        }
        let ScanOptions=  {
            interval: 100,
Q
quanli 已提交
209 210
            dutyMode: bluetooth.ScanDuty.SCAN_MODE_BALANCED,
            matchMode: bluetooth.MatchMode.MATCH_MODE_AGGRESSIVE,
Q
quanli 已提交
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
        }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan([{}],ScanOptions);
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off6');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0700
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 3
     */
     it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0700', 0, async function (done) {
        function onReceiveEvent(data)
        {
Q
quanli 已提交
233 234
            console.info('[bluetooth_js] BLEscan device result7'+JSON.stringify(data));
            expect(true).assertTrue(data.length>0);
Q
quanli 已提交
235 236 237 238 239 240
        }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan(
            [{}],
           {
                interval: 100,
Q
quanli 已提交
241 242
                dutyMode: bluetooth.ScanDuty.SCAN_MODE_LOW_LATENCY,
                matchMode: bluetooth.MatchMode.MATCH_MODE_AGGRESSIVE,
Q
quanli 已提交
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
            }
        );
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off7');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        done();
    })

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0800
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 3
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0800', 0, async function (done) {
        bluetooth.disableBluetooth();
        await sleep(3000);
        let state = bluetooth.getState();
        console.info('[bluetooth_js] bt turn off1:'+ JSON.stringify(state));
        function onReceiveEvent(data)
        {
Q
quanli 已提交
267 268
            console.info('[bluetooth_js] BLEscan device result8'+JSON.stringify(data));
            expect(true).assertTrue(data.length=0);
Q
quanli 已提交
269 270 271 272 273 274
         }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan(
            [{}],
           {
                interval: 100,
Q
quanli 已提交
275 276
                dutyMode: bluetooth.ScanDuty.SCAN_MODE_LOW_POWER,
                matchMode: bluetooth.MatchMode.MATCH_MODE_AGGRESSIVE,
Q
quanli 已提交
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
            }
        );
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off8');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0700
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 3
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_0900', 0, async function (done) {
        function onReceiveEvent(data)
        {
Q
quanli 已提交
298 299
            console.info('[bluetooth_js] BLEscan device result9'+JSON.stringify(data));
            expect(true).assertTrue(data.length>0);
Q
quanli 已提交
300 301 302 303 304 305
        }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan(
            [{}],
           {
                interval: 0,
Q
quanli 已提交
306 307
                dutyMode: bluetooth.ScanDuty.SCAN_MODE_LOW_LATENCY,
                matchMode: bluetooth.MatchMode.MATCH_MODE_AGGRESSIVE,
Q
quanli 已提交
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
            }
        );
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off7');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1000
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 3
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1000', 0, async function (done) {
        function onReceiveEvent(data)
        {
Q
quanli 已提交
329 330
            console.info('[bluetooth_js] BLEscan device result10'+JSON.stringify(data));
            expect(true).assertTrue(data.length>0);
Q
quanli 已提交
331 332 333 334 335 336
        }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan(
            [{}],
           {
                interval: 500,
Q
quanli 已提交
337 338
                dutyMode: bluetooth.ScanDuty.SCAN_MODE_LOW_POWER,
                matchMode: bluetooth.MatchMode.MATCH_MODE_AGGRESSIVE,
Q
quanli 已提交
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
            }
        );
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off10');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1100
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 3
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1100', 0, async function (done) {
        function onReceiveEvent(data)
        {
Q
quanli 已提交
360 361
            console.info('[bluetooth_js] BLEscan device result11'+JSON.stringify(data));
            expect(true).assertTrue(data.length>0);
Q
quanli 已提交
362 363 364 365 366 367
        }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan(
            [{}],
           {
                interval: 500,
Q
quanli 已提交
368 369
                dutyMode: bluetooth.ScanDuty.SCAN_MODE_LOW_POWER,
                matchMode: bluetooth.MatchMode.MATCH_MODE_AGGRESSIVE,
Q
quanli 已提交
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
            }
        );
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off11');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1200
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 3
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1200', 0, async function (done) {
        function onReceiveEvent(data)
        {
Q
quanli 已提交
391 392
            console.info('[bluetooth_js] BLEscan device result12'+JSON.stringify(data));
            expect(true).assertTrue(data.length>0);
Q
quanli 已提交
393 394 395 396 397 398
         }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan(
            [{}],
           {
               interval: 500,
Q
quanli 已提交
399 400
               dutyMode: bluetooth.ScanDuty.SCAN_MODE_LOW_LATENCY,
               matchMode: bluetooth.MatchMode.MATCH_MODE_STICKY,
Q
quanli 已提交
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
            }
        );
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off12');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1300
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 3
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1300', 0, async function (done) {
        function onReceiveEvent(data)
		 {
Q
quanli 已提交
422 423
	    	 console.info('[bluetooth_js] BLEscan device result13'+JSON.stringify(data));
             expect(true).assertTrue(data.length>0);
Q
quanli 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
         }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan(
            [{
                deviceId:"11:22:33:44:55:66",
                name:"test",
                serviceUuid:"00001888-0000-1000-8000-00805f9b34fb"
            }],
            {
                interval: 500,
                dutyMode: bluetooth.ScanDuty.SCAN_MODE_LOW_POWER,
                matchMode: bluetooth.MatchMode.MATCH_MODE_AGGRESSIVE,
            }
        );
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off13');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

    /* @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1400
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 9
     * @tc.type Function
     * @tc.level Level 3
     */
      it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1400', 0, async function (done) {
        function onReceiveEvent(data)
        {
            console.info('[bluetooth_js] BLE scan device find result14'+ JSON.stringify(data));
            expect(true).assertTrue(data.length > 0);
        }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan([{
            serviceUuid:"00001812-0000-1000-8000-00805F9B34FB",
            serviceUuidMask:"0000FFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF",
            }]);
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off14 ');
Q
quanli 已提交
466
        bluetooth.BLE.stopBLEScan();
Q
quanli 已提交
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        done();

    })
    
    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1500
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 9
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1500', 0, async function (done) {
        function onReceiveEvent(data)
        {
            console.info('[bluetooth_js] BLE scan device find result15'+ JSON.stringify(data));
            expect(true).assertTrue(data.length > 0);
        }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        bluetooth.BLE.startBLEScan([{
            serviceSolicitationUuid:"00000101-0000-1000-8000-00805F9B34FB",
            serviceSolicitationUuidMask:"FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF",

            }]);
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off15 ');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

    /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1600
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 9
     * @tc.type Function
     * @tc.level Level 2
     */
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1600', 0, async function (done) {
        function onReceiveEvent(data)
        {
            console.info('[bluetooth_js] BLE scan device find result16'+ JSON.stringify(data));
            expect(true).assertTrue(data.length > 0);
        }
        let ScanFilters= [];
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        const serviceDataArrayBuffer = new ArrayBuffer(1);
        const serviceDataMaskArrayBuffer = new ArrayBuffer(1);
        const serviceDataValue = new Uint8Array(serviceDataArrayBuffer);
        const serviceDataMaskValue = new Uint8Array(serviceDataMaskArrayBuffer);
        serviceDataValue[0] = '0xFF';
        serviceDataMaskValue[0] = '0xFF';
        let ScanFilter = {
            serviceData:serviceDataValue,
            serviceDataMask:serviceDataMaskValue,
            }
        ScanFilters[0]=ScanFilter;
        bluetooth.BLE.startBLEScan(ScanFilters);
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off16');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

   /**
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1700
     * @tc.name testClassicStartBLEScan
     * @tc.desc Test ClassicStartBLEScan api.
     * @tc.size MEDIUM
     * @ since 9
     * @tc.type Function
     * @tc.level Level 2
     */
      it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1700', 0, async function (done) {
        function onReceiveEvent(data)
        {
            console.info('[bluetooth_js] BLE scan device find result17'+ JSON.stringify(data));
            expect(true).assertTrue(data.length > 0);
        }
        bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent)
        const manufactureDataArrayBuffer = new ArrayBuffer(29);
        const manufactureDataMaskArrayBuffer = new ArrayBuffer(29);
        const manufactureDataValue = new Uint8Array(manufactureDataArrayBuffer);
        const manufactureDataMaskValue = new Uint8Array(manufactureDataMaskArrayBuffer);
        for (let i = 0; i < 29; i++) {
           manufactureDataValue[i] = '0xFF';
        }
        for (let i = 0; i < 29; i++) {
            manufactureDataMaskValue[i] = '0xFF';
        }
        bluetooth.BLE.startBLEScan([{
            manufactureId:0x0006,
            manufactureData:manufactureDataValue,
            manufactureDataMask:manufactureDataMaskValue,
            }]);
        await sleep(1000);
        console.info('[bluetooth_js] BLE scan off17 ');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done();
    })

    /**
Q
quanli 已提交
575
     * @tc.number SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1800
Q
quanli 已提交
576 577 578 579 580 581 582
     * @tc.name test gatt connect and disconnect
     * @tc.desc Test connect and disconnect api .
     * @tc.size MEDIUM
     * @ since 7
     * @tc.type Function
     * @tc.level Level 2
     */
Q
quanli 已提交
583
    it('SUB_COMMUNICATION_BLUETOOTH_BLE_Scan_1800', 0, async function (done) {
Q
quanli 已提交
584 585 586
        async function onReceiveEvent(ScanResult)
        {
            console.info('[bluetooth_js] BLEscan device result12'+JSON.stringify(ScanResult)
Q
quanli 已提交
587 588
               +ScanResult.deviceId+ScanResult.rssi+ ScanResult.data);
            expect(true).assertTrue(ScanResult.length>0);
Q
quanli 已提交
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
            await sleep(1000);
            let gattClient = bluetooth.BLE.createGattClientDevice(ScanResult[0].deviceId);
            let ret = gattClient.connect();
            await sleep(2000);
            console.info('[bluetooth_js] gattClient connect' + ret)
            expect(ret).assertTrue();
            let disconnect = gattClient.disconnect();
            console.info('[bluetooth_js] gatt disconnect:' + disconnect);
            expect(disconnect).assertEqual(false);
         }
        await bluetooth.BLE.on("BLEDeviceFind", onReceiveEvent);
        bluetooth.BLE.startBLEScan(
            [{}],
           {
               interval: 500,
Q
quanli 已提交
604 605
               dutyMode: bluetooth.ScanDuty.SCAN_MODE_LOW_LATENCY,
               matchMode: bluetooth.MatchMode.MATCH_MODE_STICKY,
Q
quanli 已提交
606 607 608 609 610 611 612 613 614 615 616 617
            }
        );
        console.info('[bluetooth_js] BLE scan offC');
        bluetooth.BLE.off('BLEDeviceFind', onReceiveEvent);
        bluetooth.BLE.stopBLEScan();
        done()
    })


})
}

Q
quanli 已提交
618