AccessibleSendEvent.test.js 84.1 KB
Newer Older
Y
yichengzhao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (C) 2021 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.
 */
J
jiyong_sd 已提交
15
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '@ohos/hypium'
Y
yichengzhao 已提交
16 17 18 19 20 21
import accessibility from '@ohos.accessibility'

const bundleName = 'com.sample.testfora11y';
const triggerAction = 'accessibilityFocus';
const eventType = 'accessibilityFocus';

J
jiyong_sd 已提交
22
export default function AccessibleSendEvent() {
Y
yichengzhao 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35
describe('AccessibleSendEvent', function () {

    beforeEach(async function (done) {
        console.info(`AccessibleSendEvent: beforeEach starts`);
        done();
    })

    afterEach(async function (done) {
        console.info(`AccessibleSendEvent: afterEach starts`);
        setTimeout(done, 1000);
    })
    
    /******************************************************************************** */
M
Mupceet 已提交
36
    /* Cases SendEvent_0010-0020 & SendEvent_Null_0010-0020  & SendEvent_construct_0010*/
Y
yichengzhao 已提交
37 38 39 40
    /*    are for accessibility.sendEvent() API test                                  */
    /******************************************************************************** */

    /*
Y
yichengzhao 已提交
41 42
    * @tc.number  SendEvent_null_0010
    * @tc.name    SendEvent_null_0010
Y
yichengzhao 已提交
43 44
    * @tc.desc    The parameter input is null, test the sendEvent() function
    *             The result of sendEvent() should be equal to an error code with error
Y
yichengzhao 已提交
45 46 47
    * @tc.size    SmallTest
    * @tc.type    User
    */
Y
yichengzhao 已提交
48 49
    it('SendEvent_null_0010', 0, async function (done) {
        console.info('SendEvent_null_0010');
Y
yichengzhao 已提交
50 51 52
        let event = null;

        accessibility.sendEvent(event, (err, data) => {
Y
yichengzhao 已提交
53 54 55 56
            console.info(`AccessibleSendEvent: SendEvent_null_0010 has error: ${err.code}`);
            expect(err.code).assertEqual(-1);
            console.info(`AccessibleSendEvent: SendEvent_null_0010 has data: ${data}`);
            expect(data).assertEqual(undefined);
Y
yichengzhao 已提交
57 58 59 60 61
            done();
        })
    })

    /*
Y
yichengzhao 已提交
62 63
    * @tc.number  SendEvent_null_0020
    * @tc.name    SendEvent_null_0020
Y
yichengzhao 已提交
64 65
    * @tc.desc    The parameter input is null, test the sendEvent() function
    *             The result of sendEvent() should be equal to a rejected promise of undefined
Y
yichengzhao 已提交
66 67 68
    * @tc.size    SmallTest
    * @tc.type    User
    */
Y
yichengzhao 已提交
69 70
    it('SendEvent_null_0020', 0, async function (done) {
        console.info('SendEvent_null_0020');
Y
yichengzhao 已提交
71 72
        let event = null;

Y
yichengzhao 已提交
73 74 75
        accessibility.sendEvent(event).then((result) => {           
            console.error(`AccessibleSendEvent: SendEvent_null_0020 result ${result}`);
            expect(null).assertFail();            
Y
yichengzhao 已提交
76 77
            done();
        }).catch((err) => {
Y
yichengzhao 已提交
78 79
            console.info(`AccessibleSendEvent: SendEvent_null_0020 has error: ${err}`);
            expect(err).assertEqual(undefined);
Y
yichengzhao 已提交
80 81 82
            done();
        });
    })
Y
yichengzhao 已提交
83

M
Mupceet 已提交
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 112
      /*
    * @tc.number  SendEvent_construct_0010
    * @tc.name    SendEvent_construct_0010
    * @tc.desc    The parameter input is EventInfo, test the sendEvent() function
    *             The result of sendEvent() should be equal to an error code with no error.
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
    it('SendEvent_construct_0010', 0, async function (done) {
      console.info('SendEvent_construct_0010');
      let jsonObj = {
        type : eventType,
        bundleName : bundleName,
        triggerAction : triggerAction,
      }

      let event = new accessibility.EventInfo(jsonObj);

      accessibility.sendEvent(event, (err, data) => {
          console.info(`AccessibleSendEventTest: SendEvent_construct_0010 has error: ${err.code}`);
          expect(err.code).assertEqual(0);
          console.info(`AccessibleSendEventTest: SendEvent_construct_0010 has data: ${data}`);
          expect(data).assertEqual(undefined);
          done();
      })
    })

Y
yichengzhao 已提交
113
    /*********************************************************************************************************** */
M
Mupceet 已提交
114 115
    /* Cases SendEvent_type_0010-SendEvent_itemCount_constructor_0030 
    /* are for interface accessibility.EventInfo API test                                                        */
Y
yichengzhao 已提交
116 117
    /*********************************************************************************************************** */

M
Mupceet 已提交
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 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 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
  /*
    * @tc.number  SendEvent_type_constructor_0010
    * @tc.name    SendEvent_type_0010
    * @tc.desc    The type of EventInfo is 'accessibilityFocus', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_type_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_type_constructor_0010 starts`);

    let eventType = 'accessibilityFocus';

    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_type_constructor_0010 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_type_constructor_0020
    * @tc.name    SendEvent_type_0020
    * @tc.desc    The type of EventInfo is 'accessibilityFocusClear', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_type_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_type_constructor_0020 starts`);

    let eventType = 'accessibilityFocusClear';

    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_type_constructor_0020 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_type_constructor_0030
    * @tc.name    SendEvent_type_constructor_0030
    * @tc.desc    The type of EventInfo is 'click', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_type_constructor_0030', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_type_constructor_0030 starts`);

    let eventType = 'click';

    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_type_constructor_0030 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_type_constructor_0040
    * @tc.name    SendEvent_type_constructor_0040
    * @tc.desc    The type of EventInfo is 'longClick', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_type_constructor_0040', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_type_constructor_0040 starts`);

    let eventType = 'longClick';

    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_type_constructor_0040 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_type_constructor_0060
    * @tc.name    SendEvent_type_constructor_0060
    * @tc.desc    The type of EventInfo is 'select', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_type_constructor_0060', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_type_constructor_0060 starts`);

    let eventType = 'select';

    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_type_constructor_0060 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_type_constructor_0070
    * @tc.name    SendEvent_type_constructor_0070
    * @tc.desc    The type of EventInfo is 'hoverEnter', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_type_constructor_0070', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_type_constructor_0070 starts`);

    let eventType = 'hoverEnter';

    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_type_constructor_0070 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_type_constructor_0080
    * @tc.name    SendEvent_type_constructor_0080
    * @tc.desc    The type of EventInfo is 'hoverExit', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_type_constructor_0080', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_type_constructor_0080 starts`);

    let eventType = 'hoverExit';

    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_type_constructor_0080 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_type_constructor_0090
    * @tc.name    SendEvent_type_constructor_0090
    * @tc.desc    The type of EventInfo is 'textUpdate', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_type_constructor_0090', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_type_constructor_0090 starts`);

    let eventType = 'textUpdate';

    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_type_constructor_0090 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_type_constructor_0100
    * @tc.name    SendEvent_type_constructor_0100
    * @tc.desc    The type of EventInfo is 'textSelectionUpdate', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_type_constructor_0100', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_type_constructor_0100 starts`);

    let eventType = 'textSelectionUpdate';

    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_type_constructor_0100 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

Y
yichengzhao 已提交
415
  /*
M
Mupceet 已提交
416 417 418 419 420 421 422 423 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 466 467 468 469 470 471 472 473 474
    * @tc.number  SendEvent_type_constructor_0110
    * @tc.name    SendEvent_type_constructor_0110
    * @tc.desc    The type of EventInfo is 'scroll', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_type_constructor_0110', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_type_constructor_0110 starts`);

    let eventType = 'scroll';

    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_type_constructor_0110 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_type_constructor_0120
    * @tc.name    SendEvent_type_constructor_0120
    * @tc.desc    The type of EventInfo is '', test sendEvent() function
    *             The result of sendEvent() should be equal to a rejected promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_type_constructor_0120', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_type_constructor_0120 starts`);

    let eventType = '';

    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) =>{
        console.error(`AccessibleSendEvent: SendEvent_type_constructor_0120 result ${result}`);
        expect(null).assertFail();
        done();
Y
yichengzhao 已提交
475
    }).catch((err) => {
M
Mupceet 已提交
476
        console.info(`AccessibleSendEvent: SendEvent_type_constructor_0120 has error: ${err}`);
Y
yichengzhao 已提交
477
        expect(err).assertEqual(undefined);
M
Mupceet 已提交
478
        done();
Y
yichengzhao 已提交
479 480 481 482
    });
  })

  /*
M
Mupceet 已提交
483 484
    * @tc.number  SendEvent_type_constructor_0130
    * @tc.name    SendEvent_type_constructor_0130
Y
yichengzhao 已提交
485
    * @tc.desc    The type of EventInfo is null, test sendEvent() function
Y
yichengzhao 已提交
486
    *             The result of sendEvent() should be equal to a rejected promise of undefined
M
Mupceet 已提交
487 488
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
489 490 491
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
492 493
  it('SendEvent_type_constructor_0130', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_type_constructor_0130 starts`);
Y
yichengzhao 已提交
494 495

    let eventType = null;
M
Mupceet 已提交
496 497 498 499 500 501 502 503 504

    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

M
Mupceet 已提交
505
    accessibility.sendEvent(event).then((result) =>{
M
Mupceet 已提交
506
        console.error(`AccessibleSendEvent: SendEvent_type_constructor_0130 result ${result}`);
M
Mupceet 已提交
507 508 509 510 511 512
        expect(null).assertFail();
        done();
    }).catch((err) => {
        console.info(`AccessibleSendEvent: SendEvent_type_constructor_0130 has error: ${err}`);
        expect(err).assertEqual(undefined);
        done();
Y
yichengzhao 已提交
513 514 515 516
    });
  })

  /*
M
Mupceet 已提交
517 518 519
    * @tc.number  SendEvent_windowUpdateType_constructor_0060
    * @tc.name    SendEvent_windowUpdateType_constructor_0060
    * @tc.desc    The windowUpdateType of EventInfo is '', test sendEvent() function
Y
yichengzhao 已提交
520
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
521 522
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
523 524 525
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
526 527
  it('SendEvent_windowUpdateType_constructor_0060', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_windowUpdateType_constructor_0060 starts`);
Y
yichengzhao 已提交
528

M
Mupceet 已提交
529 530 531 532 533 534 535
    let windowUpdateType = '';
    let jsonObj = {
      type : eventType,
      windowUpdateType : windowUpdateType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }
Y
yichengzhao 已提交
536

M
Mupceet 已提交
537
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
538 539

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
540 541
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
542
    }).catch(err => {
M
Mupceet 已提交
543
      console.error(`AccessibleSendEvent: SendEvent_windowUpdateType_constructor_0060 has error: ${err}`);
Y
yichengzhao 已提交
544 545 546 547 548 549
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
550 551 552
    * @tc.number  SendEvent_windowUpdateType_constructor_0070
    * @tc.name    SendEvent_windowUpdateType_constructor_0070
    * @tc.desc    The windowUpdateType of EventInfo is null, test sendEvent() function
Y
yichengzhao 已提交
553
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
554 555
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
556 557 558
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
559 560
  it('SendEvent_windowUpdateType_constructor_0070', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_windowUpdateType_constructor_0070 starts`);
Y
yichengzhao 已提交
561

M
Mupceet 已提交
562 563 564 565 566 567 568
    let windowUpdateType = null;
    let jsonObj = {
      type : eventType,
      windowUpdateType : windowUpdateType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }
Y
yichengzhao 已提交
569

M
Mupceet 已提交
570
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
571 572

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
573 574
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
575
    }).catch(err => {
M
Mupceet 已提交
576
      console.error(`AccessibleSendEvent: SendEvent_windowUpdateType_constructor_0070 has error: ${err}`);
Y
yichengzhao 已提交
577 578 579 580 581 582
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
583 584
    * @tc.number  SendEvent_bundleName_constructor_0010
    * @tc.name    SendEvent_bundleName_constructor_0010
Y
yichengzhao 已提交
585
    * @tc.desc    The bundleName of EventInfo is 'com.ixaa.testfora11y', test sendEvent() function
Y
yichengzhao 已提交
586
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
587 588
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
589 590 591
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
592 593
  it('SendEvent_bundleName_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_bundleName_constructor_0010 starts`);
Y
yichengzhao 已提交
594 595

    let localBundleName = 'com.ixaa.testfora11y';
M
Mupceet 已提交
596 597 598 599 600 601 602 603
    let jsonObj = {
      type : eventType,
      bundleName : localBundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

Y
yichengzhao 已提交
604
    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
605 606
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
607
    }).catch(err => {
M
Mupceet 已提交
608
      console.error(`AccessibleSendEvent: SendEvent_bundleName_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
609 610 611 612 613
      expect(null).assertFail();
      done();
    });
  })

M
Mupceet 已提交
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
  /*
    * @tc.number  SendEvent_bundleName_constructor_0020
    * @tc.name    SendEvent_bundleName_constructor_0020
    * @tc.desc    The bundleName of EventInfo is '', test sendEvent() function
    *             The result of sendEvent() should be equal to a rejected promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_bundleName_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_bundleName_constructor_0020 starts`);

    let localBundleName = '';
    let jsonObj = {
      type : eventType,
      bundleName : localBundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) =>{
        console.error(`AccessibleSendEvent: SendEvent_bundleName_constructor_0020 result ${result}`);
        expect(null).assertFail();
        done();
    }).catch((err) => {
        console.info(`AccessibleSendEvent: SendEvent_bundleName_constructor_0020 has error: ${err}`);
        expect(err).assertEqual(undefined);
        done();
Y
yichengzhao 已提交
644 645 646
    });
  })

M
Mupceet 已提交
647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
  /*
    * @tc.number  SendEvent_bundleName_constructor_0030
    * @tc.name    SendEvent_bundleName_constructor_0030
    * @tc.desc    The bundleName of EventInfo is null, test sendEvent() function
    *             The result of sendEvent() should be equal to a rejected promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_bundleName_constructor_0030', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_bundleName_constructor_0030 starts`);

    let localBundleName = null;
    let jsonObj = {
      type : eventType,
      bundleName : localBundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) =>{
        console.error(`AccessibleSendEvent: SendEvent_bundleName_constructor_0030 result ${result}`);
        expect(null).assertFail();
        done();
    }).catch((err) => {
        console.info(`AccessibleSendEvent: SendEvent_bundleName_constructor_0030 has error: ${err}`);
        expect(err).assertEqual(undefined);
        done();
Y
yichengzhao 已提交
677 678 679
    });
  })

M
Mupceet 已提交
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
  /*
    * @tc.number  SendEvent_componentType_constructor_0010
    * @tc.name    SendEvent_componentType_constructor_0010
    * @tc.desc    The componentType of EventInfo is 'button', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_componentType_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_componentType_constructor_0010 starts`);

    let componentType = 'button';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      componentType : componentType,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_componentType_constructor_0010 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_componentType_constructor_0020
    * @tc.name    SendEvent_componentType_constructor_0020
    * @tc.desc    The componentType of EventInfo is '', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_componentType_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_componentType_constructor_0020 starts`);

    let componentType = '';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      componentType : componentType,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_componentType_constructor_0020 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

Y
yichengzhao 已提交
746
  /*
M
Mupceet 已提交
747 748 749
    * @tc.number  SendEvent_componentType_constructor_0030
    * @tc.name    SendEvent_componentType_constructor_0030
    * @tc.desc    The componentType of EventInfo is null, test sendEvent() function
Y
yichengzhao 已提交
750
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
751 752
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
753 754 755
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
756 757 758 759 760 761 762 763 764 765 766 767
  it('SendEvent_componentType_constructor_0030', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_componentType_constructor_0030 starts`);

    let componentType = null;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      componentType : componentType,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
768 769

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
770 771
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
772
    }).catch(err => {
M
Mupceet 已提交
773
      console.error(`AccessibleSendEvent: SendEvent_componentType_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
774 775 776 777 778 779
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
780 781 782
    * @tc.number  SendEvent_pageId_constructor_0010
    * @tc.name    SendEvent_pageId_constructor_0010
    * @tc.desc    The pageId of EventInfo is 1, test sendEvent() function
Y
yichengzhao 已提交
783
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
784 785
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
786 787 788
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
789 790 791 792 793 794 795 796 797 798 799 800
  it('SendEvent_pageId_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_pageId_constructor_0010 starts`);

    let pageId = 1;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      pageId : pageId,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
801 802

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
803 804
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
805
    }).catch(err => {
M
Mupceet 已提交
806
      console.error(`AccessibleSendEvent: SendEvent_pageId_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
807 808 809 810 811 812
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
813 814 815
    * @tc.number  SendEvent_pageId_constructor_0020
    * @tc.name    SendEvent_pageId_constructor_0020
    * @tc.desc    The pageId of EventInfo is 0, test sendEvent() function
Y
yichengzhao 已提交
816
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
817 818
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
819 820 821
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
822 823
  it('SendEvent_pageId_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_pageId_constructor_0020 starts`);
Y
yichengzhao 已提交
824

M
Mupceet 已提交
825 826 827 828 829 830 831
    let pageId = 0;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      pageId : pageId,
      triggerAction : triggerAction,
    }
Y
yichengzhao 已提交
832

M
Mupceet 已提交
833
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
834 835

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
836 837
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
838
    }).catch(err => {
M
Mupceet 已提交
839
      console.error(`AccessibleSendEvent: SendEvent_pageId_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
840 841 842 843 844 845
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
846 847 848
    * @tc.number  SendEvent_pageId_constructor_0030
    * @tc.name    SendEvent_pageId_constructor_0030
    * @tc.desc    The pageId of EventInfo is -1, test sendEvent() function
Y
yichengzhao 已提交
849
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
850 851
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
852 853 854
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
855 856 857 858 859 860 861 862 863 864 865 866
  it('SendEvent_pageId_constructor_0030', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_pageId_constructor_0030 starts`);

    let pageId = -1;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      pageId : pageId,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
867 868

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
869 870
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
871
    }).catch(err => {
M
Mupceet 已提交
872
      console.error(`AccessibleSendEvent: SendEvent_pageId_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
873 874 875 876 877 878
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
879 880 881
    * @tc.number  SendEvent_description_constructor_0010
    * @tc.name    SendEvent_description_constructor_0010
    * @tc.desc    The description of EventInfo is '1', test sendEvent() function
Y
yichengzhao 已提交
882
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
883 884
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
885 886 887
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
888 889 890 891 892 893 894 895 896 897 898 899
  it('SendEvent_description_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_description_constructor_0010 starts`);

    let description = '1';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      description : description,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
900 901

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
902 903
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
904
    }).catch(err => {
M
Mupceet 已提交
905
      console.error(`AccessibleSendEvent: SendEvent_description_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
906 907 908 909 910 911
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
912 913 914
    * @tc.number  SendEvent_description_constructor_0020
    * @tc.name    SendEvent_description_constructor_0020
    * @tc.desc    The description of EventInfo is '', test sendEvent() function
Y
yichengzhao 已提交
915
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
916 917
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
918 919 920
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
921 922 923 924 925 926 927 928 929 930 931 932
  it('SendEvent_description_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_description_constructor_0020 starts`);

    let description = '';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      description : description,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
933 934

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
935 936
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
937
    }).catch(err => {
M
Mupceet 已提交
938
      console.error(`AccessibleSendEvent: SendEvent_description_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
939 940 941 942 943 944
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
945 946 947
    * @tc.number  SendEvent_description_constructor_0030
    * @tc.name    SendEvent_description_constructor_0030
    * @tc.desc    The description of EventInfo is null, test sendEvent() function
Y
yichengzhao 已提交
948
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
949 950
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
951 952 953
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
954 955 956 957 958 959 960 961 962 963 964 965
  it('SendEvent_description_constructor_0030', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_description_constructor_0030 starts`);

    let description = null;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      description : description,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
966 967

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
968 969
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
970
    }).catch(err => {
M
Mupceet 已提交
971
      console.error(`AccessibleSendEvent: SendEvent_description_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
972 973 974 975 976 977
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
978 979
    * @tc.number  SendEvent_triggerAction_constructor_0010
    * @tc.name    SendEvent_triggerAction_constructor_0010
Y
yichengzhao 已提交
980
    * @tc.desc    The triggerAction of EventInfo is 'accessibilityFocus', test sendEvent() function
Y
yichengzhao 已提交
981
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
982 983
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
984 985 986
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
987 988
  it('SendEvent_triggerAction_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0010 starts`);
Y
yichengzhao 已提交
989 990

    let triggerAction = 'accessibilityFocus';
M
Mupceet 已提交
991 992 993 994 995 996 997 998
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

Y
yichengzhao 已提交
999
    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1000 1001
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1002
    }).catch(err => {
M
Mupceet 已提交
1003
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
1004 1005 1006 1007 1008
      expect(null).assertFail();
      done();
    });
  })

M
Mupceet 已提交
1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198
    /*
    * @tc.number  SendEvent_triggerAction_constructor_0020
    * @tc.name    SendEvent_triggerAction_constructor_0020
    * @tc.desc    The triggerAction of EventInfo is 'clearAccessibilityFocus', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
    it('SendEvent_triggerAction_constructor_0020', 0, async function (done) {
      console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0020 starts`);
  
      let triggerAction = 'clearAccessibilityFocus';
      let jsonObj = {
        type : eventType,
        bundleName : bundleName,
        triggerAction : triggerAction,
      }
  
      let event = new accessibility.EventInfo(jsonObj);

      accessibility.sendEvent(event).then((result) => {
        expect(result).assertEqual(undefined);
        done();
      }).catch(err => {
        console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0020 has error: ${err}`);
        expect(null).assertFail();
        done();
      });
    })

  /*
    * @tc.number  SendEvent_triggerAction_constructor_0030
    * @tc.name    SendEvent_triggerAction_constructor_0030
    * @tc.desc    The triggerAction of EventInfo is 'focus', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0030', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0030 starts`);

    let triggerAction = 'focus';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0030 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_triggerAction_constructor_0040
    * @tc.name    SendEvent_triggerAction_constructor_0040
    * @tc.desc    The triggerAction of EventInfo is 'clearFocus', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0040', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0040 starts`);

    let triggerAction = 'clearFocus';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0040 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_triggerAction_constructor_0050
    * @tc.name    SendEvent_triggerAction_constructor_0050
    * @tc.desc    The triggerAction of EventInfo is 'clearSelection', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0050', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0050 starts`);

    let triggerAction = 'clearSelection';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0050 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_triggerAction_constructor_0060
    * @tc.name    SendEvent_triggerAction_constructor_0060
    * @tc.desc    The triggerAction of EventInfo is 'click', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0060', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0060 starts`);

    let triggerAction = 'click';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0060 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_triggerAction_constructor_0070
    * @tc.name    SendEvent_triggerAction_constructor_0070
    * @tc.desc    The triggerAction of EventInfo is 'longClick', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0070', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0070 starts`);

    let triggerAction = 'longClick';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0070 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

Y
yichengzhao 已提交
1199
  /*
M
Mupceet 已提交
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
    * @tc.number  SendEvent_triggerAction_constructor_0080
    * @tc.name    SendEvent_triggerAction_constructor_0080
    * @tc.desc    The triggerAction of EventInfo is 'cut', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0080', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0080 starts`);

    let triggerAction = 'cut';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0080 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_triggerAction_constructor_0090
    * @tc.name    SendEvent_triggerAction_constructor_0090
    * @tc.desc    The triggerAction of EventInfo is 'copy', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0090', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0090 starts`);

    let triggerAction = 'copy';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0090 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_triggerAction_constructor_0100
    * @tc.name    SendEvent_triggerAction_constructor_0100
    * @tc.desc    The triggerAction of EventInfo is 'paste', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0100', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0100 starts`);

    let triggerAction = 'paste';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0100 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_triggerAction_constructor_0110
    * @tc.name    SendEvent_triggerAction_constructor_0110
    * @tc.desc    The triggerAction of EventInfo is 'select', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0110', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0110 starts`);

    let triggerAction = 'select';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
M
Mupceet 已提交
1321
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0110 has error: ${err}`);
Y
yichengzhao 已提交
1322 1323 1324 1325 1326
      expect(null).assertFail();
      done();
    });
  })

M
Mupceet 已提交
1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454
  /*
    * @tc.number  SendEvent_triggerAction_constructor_0120
    * @tc.name    SendEvent_triggerAction_constructor_0120
    * @tc.desc    The triggerAction of EventInfo is 'setText', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0120', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0120 starts`);

    let triggerAction = 'setText';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0120 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_triggerAction_constructor_0130
    * @tc.name    SendEvent_triggerAction_constructor_0130
    * @tc.desc    The triggerAction of EventInfo is 'delete', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0130', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0130 starts`);

    let triggerAction = 'delete';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0130 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_triggerAction_constructor_0140
    * @tc.name    SendEvent_triggerAction_constructor_0140
    * @tc.desc    The triggerAction of EventInfo is 'scrollForward', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0140', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0140 starts`);

    let triggerAction = 'scrollForward';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0140 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_triggerAction_constructor_0150
    * @tc.name    SendEvent_triggerAction_constructor_0150
    * @tc.desc    The triggerAction of EventInfo is 'scrollBackward', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0150', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0150 starts`);

    let triggerAction = 'scrollBackward';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0150 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

Y
yichengzhao 已提交
1455
  /*
M
Mupceet 已提交
1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
    * @tc.number  SendEvent_triggerAction_constructor_0160
    * @tc.name    SendEvent_triggerAction_constructor_0160
    * @tc.desc    The triggerAction of EventInfo is 'setSelection', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0160', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0160 starts`);

    let triggerAction = 'setSelection';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0160 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_triggerAction_constructor_0170
    * @tc.name    SendEvent_triggerAction_constructor_0170
    * @tc.desc    The triggerAction of EventInfo is '', test sendEvent() function
    *             The result of sendEvent() should be equal to a rejected promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0170', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0170 starts`);

    let triggerAction = '';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) =>{
        console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0170 result ${result}`);
        expect(null).assertFail();
        done();
Y
yichengzhao 已提交
1513
    }).catch((err) => {
M
Mupceet 已提交
1514
        console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0170 has error: ${err}`);
Y
yichengzhao 已提交
1515
        expect(err).assertEqual(undefined);
M
Mupceet 已提交
1516
        done();
Y
yichengzhao 已提交
1517 1518 1519
    });
  })

M
Mupceet 已提交
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545
  /*
    * @tc.number  SendEvent_triggerAction_constructor_0180
    * @tc.name    SendEvent_triggerAction_constructor_0180
    * @tc.desc    The triggerAction of EventInfo is null, test sendEvent() function
    *             The result of sendEvent() should be equal to a rejected promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_triggerAction_constructor_0180', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0180 starts`);

    let triggerAction = null;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) =>{
        console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0180 result ${result}`);
        expect(null).assertFail();
        done();
Y
yichengzhao 已提交
1546
    }).catch((err) => {
M
Mupceet 已提交
1547
        console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0180 has error: ${err}`);
Y
yichengzhao 已提交
1548
        expect(err).assertEqual(undefined);
M
Mupceet 已提交
1549
        done();
Y
yichengzhao 已提交
1550 1551 1552
    });
  })

M
Mupceet 已提交
1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618
  /*
    * @tc.number  SendEvent_textMoveUnit_constructor_0010
    * @tc.name    SendEvent_textMoveUnit_constructor_0010
    * @tc.desc    The textMoveUnit of EventInfo is 'char', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_textMoveUnit_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0010 starts`);

    let textMoveUnit = 'char';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      textMoveUnit : textMoveUnit,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0010 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

  /*
    * @tc.number  SendEvent_textMoveUnit_constructor_0020
    * @tc.name    SendEvent_textMoveUnit_constructor_0020
    * @tc.desc    The textMoveUnit of EventInfo is 'word', test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
  it('SendEvent_textMoveUnit_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0020 starts`);

    let textMoveUnit = 'word';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      textMoveUnit : textMoveUnit,
    }

    let event = new accessibility.EventInfo(jsonObj);

    accessibility.sendEvent(event).then((result) => {
      expect(result).assertEqual(undefined);
      done();
    }).catch(err => {
      console.error(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0020 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

Y
yichengzhao 已提交
1619
  /*
M
Mupceet 已提交
1620 1621 1622
    * @tc.number  SendEvent_textMoveUnit_constructor_0030
    * @tc.name    SendEvent_textMoveUnit_constructor_0030
    * @tc.desc    The textMoveUnit of EventInfo is 'line', test sendEvent() function
Y
yichengzhao 已提交
1623
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1624 1625
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1626 1627 1628
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1629 1630
  it('SendEvent_textMoveUnit_constructor_0030', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0030 starts`);
Y
yichengzhao 已提交
1631

M
Mupceet 已提交
1632 1633 1634 1635 1636 1637 1638
    let textMoveUnit = 'line';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      textMoveUnit : textMoveUnit,
    }
Y
yichengzhao 已提交
1639

M
Mupceet 已提交
1640
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1641 1642

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1643 1644
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1645
    }).catch(err => {
M
Mupceet 已提交
1646
      console.error(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
1647 1648 1649 1650 1651 1652
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1653 1654 1655
    * @tc.number  SendEvent_textMoveUnit_constructor_0040
    * @tc.name    SendEvent_textMoveUnit_constructor_0040
    * @tc.desc    The textMoveUnit of EventInfo is 'page', test sendEvent() function
Y
yichengzhao 已提交
1656
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1657 1658
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1659 1660 1661
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1662 1663
  it('SendEvent_textMoveUnit_constructor_0040', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0040 starts`);
Y
yichengzhao 已提交
1664

M
Mupceet 已提交
1665 1666 1667 1668 1669 1670 1671
    let textMoveUnit = 'page';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      textMoveUnit : textMoveUnit,
    }
Y
yichengzhao 已提交
1672

M
Mupceet 已提交
1673
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1674 1675

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1676 1677
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1678
    }).catch(err => {
M
Mupceet 已提交
1679
      console.error(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0040 has error: ${err}`);
Y
yichengzhao 已提交
1680 1681 1682 1683 1684 1685
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1686 1687 1688
    * @tc.number  SendEvent_textMoveUnit_constructor_0050
    * @tc.name    SendEvent_textMoveUnit_constructor_0050
    * @tc.desc    The textMoveUnit of EventInfo is 'paragraph', test sendEvent() function
Y
yichengzhao 已提交
1689
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1690 1691
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1692 1693 1694
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1695 1696
  it('SendEvent_textMoveUnit_constructor_0050', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0050 starts`);
Y
yichengzhao 已提交
1697

M
Mupceet 已提交
1698 1699 1700 1701 1702 1703 1704
    let textMoveUnit = 'paragraph';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      textMoveUnit : textMoveUnit,
    }
Y
yichengzhao 已提交
1705

M
Mupceet 已提交
1706
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1707 1708

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1709 1710
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1711
    }).catch(err => {
M
Mupceet 已提交
1712
      console.error(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0050 has error: ${err}`);
Y
yichengzhao 已提交
1713 1714 1715 1716 1717 1718
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1719 1720 1721
    * @tc.number  SendEvent_textMoveUnit_constructor_0060
    * @tc.name    SendEvent_textMoveUnit_constructor_0060
    * @tc.desc    The textMoveUnit of EventInfo is '', test sendEvent() function
Y
yichengzhao 已提交
1722
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1723 1724
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1725 1726 1727
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1728 1729
  it('SendEvent_textMoveUnit_constructor_0060', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0060 starts`);
Y
yichengzhao 已提交
1730

M
Mupceet 已提交
1731 1732 1733 1734 1735 1736 1737
    let textMoveUnit = '';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      textMoveUnit : textMoveUnit,
    }
Y
yichengzhao 已提交
1738

M
Mupceet 已提交
1739
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1740 1741

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1742 1743
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1744
    }).catch(err => {
M
Mupceet 已提交
1745
      console.error(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0060 has error: ${err}`);
Y
yichengzhao 已提交
1746 1747 1748 1749 1750 1751
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1752 1753 1754
    * @tc.number  SendEvent_textMoveUnit_constructor_0070
    * @tc.name    SendEvent_textMoveUnit_constructor_0070
    * @tc.desc    The textMoveUnit of EventInfo is null, test sendEvent() function
Y
yichengzhao 已提交
1755
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1756 1757
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1758 1759 1760
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1761 1762
  it('SendEvent_textMoveUnit_constructor_0070', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0070 starts`);
Y
yichengzhao 已提交
1763

M
Mupceet 已提交
1764 1765 1766 1767 1768 1769 1770
    let textMoveUnit = null;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      textMoveUnit : textMoveUnit,
    }
Y
yichengzhao 已提交
1771

M
Mupceet 已提交
1772
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1773 1774

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1775 1776
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1777
    }).catch(err => {
M
Mupceet 已提交
1778
      console.error(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0070 has error: ${err}`);
Y
yichengzhao 已提交
1779 1780 1781 1782 1783 1784
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1785 1786 1787
    * @tc.number  SendEvent_contents_constructor_0010
    * @tc.name    SendEvent_contents_constructor_0010
    * @tc.desc    The contents of EventInfo is ['1'], test sendEvent() function
Y
yichengzhao 已提交
1788
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1789 1790
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1791 1792 1793
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1794 1795
  it('SendEvent_contents_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_contents_constructor_0010 starts`);
Y
yichengzhao 已提交
1796

M
Mupceet 已提交
1797 1798 1799 1800 1801 1802 1803
    let contents = ['1'];
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      contents : contents,
    }
Y
yichengzhao 已提交
1804

M
Mupceet 已提交
1805
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1806 1807

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1808 1809
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1810
    }).catch(err => {
M
Mupceet 已提交
1811
      console.error(`AccessibleSendEvent: SendEvent_contents_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
1812 1813 1814 1815 1816 1817
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1818 1819 1820
    * @tc.number  SendEvent_contents_constructor_0020
    * @tc.name    SendEvent_contents_constructor_0020
    * @tc.desc    The contents of EventInfo is [], test sendEvent() function
Y
yichengzhao 已提交
1821
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1822 1823
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1824 1825 1826
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1827 1828
  it('SendEvent_contents_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_contents_constructor_0020 starts`);
Y
yichengzhao 已提交
1829

M
Mupceet 已提交
1830 1831 1832 1833 1834 1835 1836
    let contents = [];
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      contents : contents,
    }
Y
yichengzhao 已提交
1837

M
Mupceet 已提交
1838
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1839 1840

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1841 1842
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1843
    }).catch(err => {
M
Mupceet 已提交
1844
      console.error(`AccessibleSendEvent: SendEvent_contents_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
1845 1846 1847 1848 1849 1850
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1851 1852 1853
    * @tc.number  SendEvent_lastContent_constructor_0010
    * @tc.name    SendEvent_lastContent_constructor_0010
    * @tc.desc    The lastContent of EventInfo is '1', test sendEvent() function
Y
yichengzhao 已提交
1854
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1855 1856
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1857 1858 1859
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1860 1861
  it('SendEvent_lastContent_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_lastContent_constructor_0010 starts`);
Y
yichengzhao 已提交
1862

M
Mupceet 已提交
1863 1864 1865 1866 1867 1868 1869
    let lastContent = '1';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      lastContent : lastContent,
    }
Y
yichengzhao 已提交
1870

M
Mupceet 已提交
1871
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1872 1873

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1874 1875
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1876
    }).catch(err => {
M
Mupceet 已提交
1877
      console.error(`AccessibleSendEvent: SendEvent_lastContent_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
1878 1879 1880 1881 1882 1883
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1884 1885 1886
    * @tc.number  SendEvent_lastContent_constructor_0020
    * @tc.name    SendEvent_lastContent_constructor_0020
    * @tc.desc    The lastContent of EventInfo is '', test sendEvent() function
Y
yichengzhao 已提交
1887
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1888 1889
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1890 1891 1892
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1893 1894
  it('SendEvent_lastContent_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_lastContent_constructor_0020 starts`);
Y
yichengzhao 已提交
1895

M
Mupceet 已提交
1896 1897 1898 1899 1900 1901 1902
    let lastContent = '';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      lastContent : lastContent,
    }
Y
yichengzhao 已提交
1903

M
Mupceet 已提交
1904
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1905 1906

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1907 1908
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1909
    }).catch(err => {
M
Mupceet 已提交
1910
      console.error(`AccessibleSendEvent: SendEvent_lastContent_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
1911 1912 1913 1914 1915 1916
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1917 1918 1919
    * @tc.number  SendEvent_lastContent_constructor_0030
    * @tc.name    SendEvent_lastContent_constructor_0030
    * @tc.desc    The lastContent of EventInfo is null, test sendEvent() function
Y
yichengzhao 已提交
1920
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1921 1922
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1923 1924 1925
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937
  it('SendEvent_lastContent_constructor_0030', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_lastContent_constructor_0030 starts`);

    let lastContent = null;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      lastContent : lastContent,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1938 1939

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1940 1941
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1942
    }).catch(err => {
M
Mupceet 已提交
1943
      console.error(`AccessibleSendEvent: SendEvent_lastContent_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
1944 1945 1946 1947 1948 1949
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1950 1951 1952
    * @tc.number  SendEvent_beginIndex_constructor_0010
    * @tc.name    SendEvent_beginIndex_constructor_0010
    * @tc.desc    The beginIndex of EventInfo is 1, test sendEvent() function
Y
yichengzhao 已提交
1953
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1954 1955
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1956 1957 1958
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970
  it('SendEvent_beginIndex_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_beginIndex_constructor_0010 starts`);

    let beginIndex = 1;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      beginIndex : beginIndex,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1971 1972

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1973 1974
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1975
    }).catch(err => {
M
Mupceet 已提交
1976
      console.error(`AccessibleSendEvent: SendEvent_beginIndex_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
1977 1978 1979 1980 1981 1982
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1983 1984 1985
    * @tc.number  SendEvent_beginIndex_constructor_0020
    * @tc.name    SendEvent_beginIndex_constructor_0020
    * @tc.desc    The beginIndex of EventInfo is 0, test sendEvent() function
Y
yichengzhao 已提交
1986
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1987 1988
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1989 1990 1991
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003
  it('SendEvent_beginIndex_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_beginIndex_constructor_0020 starts`);

    let beginIndex = 0;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      beginIndex : beginIndex,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
2004 2005

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2006 2007
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2008
    }).catch(err => {
M
Mupceet 已提交
2009
      console.error(`AccessibleSendEvent: SendEvent_beginIndex_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
2010 2011 2012 2013 2014 2015
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2016 2017 2018
    * @tc.number  SendEvent_beginIndex_constructor_0030
    * @tc.name    SendEvent_beginIndex_constructor_0030
    * @tc.desc    The beginIndex of EventInfo is -1, test sendEvent() function
Y
yichengzhao 已提交
2019
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
2020 2021
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
2022 2023 2024
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036
  it('SendEvent_beginIndex_constructor_0030', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_beginIndex_constructor_0030 starts`);

    let beginIndex = -1;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      beginIndex : beginIndex,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
2037 2038

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2039 2040
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2041
    }).catch(err => {
M
Mupceet 已提交
2042
      console.error(`AccessibleSendEvent: SendEvent_beginIndex_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
2043 2044 2045 2046 2047 2048
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069
      * @tc.number  SendEvent_currentIndex_constructor_0010
      * @tc.name    SendEvent_currentIndex_constructor_0010
      * @tc.desc    The currentIndex of EventInfo is 1, test sendEvent() function
      *             The result of sendEvent() should be equal to a promise of undefined
      *             Another test point is to test whether the modified constructor (EventInfo)
      *             works correctly.
      * @tc.size    SmallTest
      * @tc.type    User
      */
  it('SendEvent_currentIndex_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_currentIndex_constructor_0010 starts`);

    let currentIndex = 1;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      currentIndex : currentIndex,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
2070 2071

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2072 2073
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2074
    }).catch(err => {
M
Mupceet 已提交
2075
      console.error(`AccessibleSendEvent: SendEvent_currentIndex_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
2076 2077 2078 2079 2080 2081
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2082 2083 2084
    * @tc.number  SendEvent_currentIndex_constructor_0020
    * @tc.name    SendEvent_currentIndex_constructor_0020
    * @tc.desc    The currentIndex of EventInfo is 0, test sendEvent() function
Y
yichengzhao 已提交
2085
    *             The result of sendEvent() should be equal to a promise of undefined
Y
yichengzhao 已提交
2086 2087 2088
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100
  it('SendEvent_currentIndex_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_currentIndex_constructor_0020 starts`);

    let currentIndex = 0;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      currentIndex : currentIndex,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
2101 2102

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2103 2104
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2105
    }).catch(err => {
M
Mupceet 已提交
2106
      console.error(`AccessibleSendEvent: SendEvent_currentIndex_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
2107 2108 2109 2110 2111 2112
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2113 2114 2115
    * @tc.number  SendEvent_currentIndex_constructor_0030
    * @tc.name    SendEvent_currentIndex_constructor_0030
    * @tc.desc    The currentIndex of EventInfo is -1, test sendEvent() function
Y
yichengzhao 已提交
2116
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
2117 2118
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
2119 2120 2121
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133
  it('SendEvent_currentIndex_constructor_0030', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_currentIndex_constructor_0030 starts`);

    let currentIndex = -1;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      currentIndex : currentIndex,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
2134 2135

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2136 2137
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2138
    }).catch(err => {
M
Mupceet 已提交
2139
      console.error(`AccessibleSendEvent: SendEvent_currentIndex_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
2140 2141 2142 2143 2144 2145
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166
      * @tc.number  SendEvent_endIndex_constructor_0010
      * @tc.name    SendEvent_endIndex_constructor_0010
      * @tc.desc    The endIndex of EventInfo is 1, test sendEvent() function
      *             The result of sendEvent() should be equal to a promise of undefined
      *             Another test point is to test whether the modified constructor (EventInfo)
      *             works correctly.
      * @tc.size    SmallTest
      * @tc.type    User
      */
  it('SendEvent_endIndex_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_endIndex_constructor_0010 starts`);

    let endIndex = 1;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      endIndex : endIndex,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
2167 2168

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2169 2170
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2171
    }).catch(err => {
M
Mupceet 已提交
2172
      console.error(`AccessibleSendEvent: SendEvent_endIndex_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
2173 2174 2175 2176 2177 2178
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2179 2180 2181
    * @tc.number  SendEvent_endIndex_constructor_0020
    * @tc.name    SendEvent_endIndex_constructor_0020
    * @tc.desc    The endIndex of EventInfo is 0, test sendEvent() function
Y
yichengzhao 已提交
2182
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
2183 2184
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
2185 2186 2187
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199
  it('SendEvent_endIndex_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_endIndex_constructor_0020 starts`);

    let endIndex = 0;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      endIndex : endIndex,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
2200 2201

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2202 2203
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2204
    }).catch(err => {
M
Mupceet 已提交
2205
      console.error(`AccessibleSendEvent: SendEvent_endIndex_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
2206 2207 2208 2209 2210 2211
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2212 2213 2214
    * @tc.number  SendEvent_endIndex_constructor_0030
    * @tc.name    SendEvent_endIndex_constructor_0030
    * @tc.desc    The endIndex of EventInfo is -1, test sendEvent() function
Y
yichengzhao 已提交
2215
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
2216 2217
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
2218 2219 2220
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232
  it('SendEvent_endIndex_constructor_0030', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_endIndex_constructor_0030 starts`);

    let endIndex = -1;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      endIndex : endIndex,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
2233 2234

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2235 2236
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2237
    }).catch(err => {
M
Mupceet 已提交
2238
      console.error(`AccessibleSendEvent: SendEvent_endIndex_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
2239 2240 2241 2242 2243 2244
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265
      * @tc.number  SendEvent_itemCount_constructor_0010
      * @tc.name    SendEvent_itemCount_constructor_0010
      * @tc.desc    The itemCount of EventInfo is 1, test sendEvent() function
      *             The result of sendEvent() should be equal to a promise of undefined
      *             Another test point is to test whether the modified constructor (EventInfo)
      *             works correctly.
      * @tc.size    SmallTest
      * @tc.type    User
      */
  it('SendEvent_itemCount_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_itemCount_constructor_0010 starts`);

    let itemCount = 1;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      itemCount : itemCount,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
2266 2267

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2268 2269
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2270
    }).catch(err => {
M
Mupceet 已提交
2271
      console.error(`AccessibleSendEvent: SendEvent_itemCount_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
2272 2273 2274 2275 2276 2277
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2278 2279 2280
    * @tc.number  SendEvent_itemCount_constructor_0020
    * @tc.name    SendEvent_itemCount_constructor_0020
    * @tc.desc    The itemCount of EventInfo is 0, test sendEvent() function
Y
yichengzhao 已提交
2281
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
2282 2283
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
2284 2285 2286
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298
  it('SendEvent_itemCount_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_itemCount_constructor_0020 starts`);

    let itemCount = 0;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      itemCount : itemCount,
    }

    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
2299 2300

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2301 2302
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2303
    }).catch(err => {
M
Mupceet 已提交
2304
      console.error(`AccessibleSendEvent: SendEvent_itemCount_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
2305 2306 2307 2308 2309
      expect(null).assertFail();
      done();
    });
  })

M
Mupceet 已提交
2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341
    /*
    * @tc.number  SendEvent_itemCount_constructor_0030
    * @tc.name    SendEvent_itemCount_constructor_0030
    * @tc.desc    The itemCount of EventInfo is -1, test sendEvent() function
    *             The result of sendEvent() should be equal to a promise of undefined
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
    * @tc.size    SmallTest
    * @tc.type    User
    */
    it('SendEvent_itemCount_constructor_0030', 0, async function (done) {
      console.info(`AccessibleSendEvent: SendEvent_itemCount_constructor_0030 starts`);
  
      let itemCount = -1;
      let jsonObj = {
        type : eventType,
        bundleName : bundleName,
        triggerAction : triggerAction,
        itemCount : itemCount,
      }
  
      let event = new accessibility.EventInfo(jsonObj);

      accessibility.sendEvent(event).then((result) => {
        expect(result).assertEqual(undefined);
        done();
      }).catch(err => {
        console.error(`AccessibleSendEvent: SendEvent_itemCount_constructor_0030 has error: ${err}`);
        expect(null).assertFail();
        done();
      });
    })
Y
yichengzhao 已提交
2342
})
J
jiyong_sd 已提交
2343
}