AccessibleSendEvent.test.js 83.4 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_0020
    * @tc.name    SendEvent_null_0020
Y
yichengzhao 已提交
43 44
    * @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 已提交
45 46 47
    * @tc.size    SmallTest
    * @tc.type    User
    */
Y
yichengzhao 已提交
48 49
    it('SendEvent_null_0020', 0, async function (done) {
        console.info('SendEvent_null_0020');
Y
yichengzhao 已提交
50 51
        let event = null;

Y
yichengzhao 已提交
52 53 54
        accessibility.sendEvent(event).then((result) => {           
            console.error(`AccessibleSendEvent: SendEvent_null_0020 result ${result}`);
            expect(null).assertFail();            
Y
yichengzhao 已提交
55 56
            done();
        }).catch((err) => {
Y
yichengzhao 已提交
57
            console.info(`AccessibleSendEvent: SendEvent_null_0020 has error: ${err}`);
M
Mupceet 已提交
58
            expect(true).assertTrue();
Y
yichengzhao 已提交
59 60 61
            done();
        });
    })
Y
yichengzhao 已提交
62 63

    /*********************************************************************************************************** */
M
Mupceet 已提交
64 65
    /* Cases SendEvent_type_0010-SendEvent_itemCount_constructor_0030 
    /* are for interface accessibility.EventInfo API test                                                        */
Y
yichengzhao 已提交
66 67
    /*********************************************************************************************************** */

M
Mupceet 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 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
  /*
    * @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 已提交
365
  /*
M
Mupceet 已提交
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 415 416 417 418 419 420 421 422 423 424
    * @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 已提交
425
    }).catch((err) => {
M
Mupceet 已提交
426
        console.info(`AccessibleSendEvent: SendEvent_type_constructor_0120 has error: ${err}`);
M
Mupceet 已提交
427
        expect(true).assertTrue();
M
Mupceet 已提交
428
        done();
Y
yichengzhao 已提交
429 430 431 432
    });
  })

  /*
M
Mupceet 已提交
433 434
    * @tc.number  SendEvent_type_constructor_0130
    * @tc.name    SendEvent_type_constructor_0130
Y
yichengzhao 已提交
435
    * @tc.desc    The type of EventInfo is null, test sendEvent() function
Y
yichengzhao 已提交
436
    *             The result of sendEvent() should be equal to a rejected promise of undefined
M
Mupceet 已提交
437 438
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
439 440 441
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
442 443
  it('SendEvent_type_constructor_0130', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_type_constructor_0130 starts`);
Y
yichengzhao 已提交
444 445

    let eventType = null;
M
Mupceet 已提交
446 447 448 449 450 451 452 453 454

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

    let event = new accessibility.EventInfo(jsonObj);

M
Mupceet 已提交
455
    accessibility.sendEvent(event).then((result) =>{
M
Mupceet 已提交
456
        console.error(`AccessibleSendEvent: SendEvent_type_constructor_0130 result ${result}`);
M
Mupceet 已提交
457 458 459 460
        expect(null).assertFail();
        done();
    }).catch((err) => {
        console.info(`AccessibleSendEvent: SendEvent_type_constructor_0130 has error: ${err}`);
M
Mupceet 已提交
461
        expect(true).assertTrue();
M
Mupceet 已提交
462
        done();
Y
yichengzhao 已提交
463 464 465
    });
  })

M
Mupceet 已提交
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
  /*
    * @tc.number  SendEvent_windowUpdateType_constructor_0050
    * @tc.name    SendEvent_windowUpdateType_constructor_0050
    * @tc.desc    The windowUpdateType 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_windowUpdateType_constructor_0050', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_windowUpdateType_constructor_0050 starts`);

    let windowUpdateType = 'add';
    let jsonObj = {
      type : eventType,
      windowUpdateType : windowUpdateType,
      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_windowUpdateType_constructor_0050 has error: ${err}`);
      expect(null).assertFail();
      done();
    });
  })

Y
yichengzhao 已提交
499
  /*
M
Mupceet 已提交
500 501 502
    * @tc.number  SendEvent_windowUpdateType_constructor_0060
    * @tc.name    SendEvent_windowUpdateType_constructor_0060
    * @tc.desc    The windowUpdateType of EventInfo is '', test sendEvent() function
Y
yichengzhao 已提交
503
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
504 505
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
506 507 508
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
509 510
  it('SendEvent_windowUpdateType_constructor_0060', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_windowUpdateType_constructor_0060 starts`);
Y
yichengzhao 已提交
511

M
Mupceet 已提交
512 513 514 515 516 517 518
    let windowUpdateType = '';
    let jsonObj = {
      type : eventType,
      windowUpdateType : windowUpdateType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }
Y
yichengzhao 已提交
519

M
Mupceet 已提交
520
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
521 522

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
523 524
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
525
    }).catch(err => {
M
Mupceet 已提交
526
      console.error(`AccessibleSendEvent: SendEvent_windowUpdateType_constructor_0060 has error: ${err}`);
Y
yichengzhao 已提交
527 528 529 530 531 532
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
533 534 535
    * @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 已提交
536
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
537 538
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
539 540 541
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
542 543
  it('SendEvent_windowUpdateType_constructor_0070', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_windowUpdateType_constructor_0070 starts`);
Y
yichengzhao 已提交
544

M
Mupceet 已提交
545 546 547 548 549 550 551
    let windowUpdateType = null;
    let jsonObj = {
      type : eventType,
      windowUpdateType : windowUpdateType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }
Y
yichengzhao 已提交
552

M
Mupceet 已提交
553
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
554 555

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
556 557
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
558
    }).catch(err => {
M
Mupceet 已提交
559
      console.error(`AccessibleSendEvent: SendEvent_windowUpdateType_constructor_0070 has error: ${err}`);
Y
yichengzhao 已提交
560 561 562 563 564 565
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
566 567
    * @tc.number  SendEvent_bundleName_constructor_0010
    * @tc.name    SendEvent_bundleName_constructor_0010
Y
yichengzhao 已提交
568
    * @tc.desc    The bundleName of EventInfo is 'com.ixaa.testfora11y', test sendEvent() function
Y
yichengzhao 已提交
569
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
570 571
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
572 573 574
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
575 576
  it('SendEvent_bundleName_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_bundleName_constructor_0010 starts`);
Y
yichengzhao 已提交
577 578

    let localBundleName = 'com.ixaa.testfora11y';
M
Mupceet 已提交
579 580 581 582 583 584 585 586
    let jsonObj = {
      type : eventType,
      bundleName : localBundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

Y
yichengzhao 已提交
587
    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
588 589
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
590
    }).catch(err => {
M
Mupceet 已提交
591
      console.error(`AccessibleSendEvent: SendEvent_bundleName_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
592 593 594 595 596
      expect(null).assertFail();
      done();
    });
  })

M
Mupceet 已提交
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
  /*
    * @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}`);
M
Mupceet 已提交
625
        expect(true).assertTrue();
M
Mupceet 已提交
626
        done();
Y
yichengzhao 已提交
627 628 629
    });
  })

M
Mupceet 已提交
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
  /*
    * @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}`);
M
Mupceet 已提交
658
        expect(true).assertTrue();
M
Mupceet 已提交
659
        done();
Y
yichengzhao 已提交
660 661 662
    });
  })

M
Mupceet 已提交
663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 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
  /*
    * @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 已提交
729
  /*
M
Mupceet 已提交
730 731 732
    * @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 已提交
733
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
734 735
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
736 737 738
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
739 740 741 742 743 744 745 746 747 748 749 750
  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 已提交
751 752

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
753 754
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
755
    }).catch(err => {
M
Mupceet 已提交
756
      console.error(`AccessibleSendEvent: SendEvent_componentType_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
757 758 759 760 761 762
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
763 764 765
    * @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 已提交
766
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
767 768
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
769 770 771
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
772 773 774 775 776 777 778 779 780 781 782 783
  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 已提交
784 785

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
786 787
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
788
    }).catch(err => {
M
Mupceet 已提交
789
      console.error(`AccessibleSendEvent: SendEvent_pageId_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
790 791 792 793 794 795
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
796 797 798
    * @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 已提交
799
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
800 801
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
802 803 804
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
805 806
  it('SendEvent_pageId_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_pageId_constructor_0020 starts`);
Y
yichengzhao 已提交
807

M
Mupceet 已提交
808 809 810 811 812 813 814
    let pageId = 0;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      pageId : pageId,
      triggerAction : triggerAction,
    }
Y
yichengzhao 已提交
815

M
Mupceet 已提交
816
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
817 818

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
819 820
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
821
    }).catch(err => {
M
Mupceet 已提交
822
      console.error(`AccessibleSendEvent: SendEvent_pageId_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
823 824 825 826 827 828
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
829 830 831
    * @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 已提交
832
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
833 834
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
835 836 837
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
838 839 840 841 842 843 844 845 846 847 848 849
  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 已提交
850 851

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
852 853
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
854
    }).catch(err => {
M
Mupceet 已提交
855
      console.error(`AccessibleSendEvent: SendEvent_pageId_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
856 857 858 859 860 861
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
862 863 864
    * @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 已提交
865
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
866 867
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
868 869 870
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
871 872 873 874 875 876 877 878 879 880 881 882
  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 已提交
883 884

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
885 886
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
887
    }).catch(err => {
M
Mupceet 已提交
888
      console.error(`AccessibleSendEvent: SendEvent_description_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
889 890 891 892 893 894
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
895 896 897
    * @tc.number  SendEvent_description_constructor_0020
    * @tc.name    SendEvent_description_constructor_0020
    * @tc.desc    The description of EventInfo is '', test sendEvent() function
Y
yichengzhao 已提交
898
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
899 900
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
901 902 903
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
904 905 906 907 908 909 910 911 912 913 914 915
  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 已提交
916 917

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
918 919
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
920
    }).catch(err => {
M
Mupceet 已提交
921
      console.error(`AccessibleSendEvent: SendEvent_description_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
922 923 924 925 926 927
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
928 929 930
    * @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 已提交
931
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
932 933
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
934 935 936
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
937 938 939 940 941 942 943 944 945 946 947 948
  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 已提交
949 950

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
951 952
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
953
    }).catch(err => {
M
Mupceet 已提交
954
      console.error(`AccessibleSendEvent: SendEvent_description_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
955 956 957 958 959 960
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
961 962
    * @tc.number  SendEvent_triggerAction_constructor_0010
    * @tc.name    SendEvent_triggerAction_constructor_0010
Y
yichengzhao 已提交
963
    * @tc.desc    The triggerAction of EventInfo is 'accessibilityFocus', test sendEvent() function
Y
yichengzhao 已提交
964
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
965 966
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
967 968 969
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
970 971
  it('SendEvent_triggerAction_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0010 starts`);
Y
yichengzhao 已提交
972 973

    let triggerAction = 'accessibilityFocus';
M
Mupceet 已提交
974 975 976 977 978 979 980 981
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
    }

    let event = new accessibility.EventInfo(jsonObj);

Y
yichengzhao 已提交
982
    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
983 984
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
985
    }).catch(err => {
M
Mupceet 已提交
986
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
987 988 989 990 991
      expect(null).assertFail();
      done();
    });
  })

M
Mupceet 已提交
992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 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
    /*
    * @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 已提交
1182
  /*
M
Mupceet 已提交
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 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
    * @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 已提交
1304
      console.error(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0110 has error: ${err}`);
Y
yichengzhao 已提交
1305 1306 1307 1308 1309
      expect(null).assertFail();
      done();
    });
  })

M
Mupceet 已提交
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 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
  /*
    * @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 已提交
1438
  /*
M
Mupceet 已提交
1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 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
    * @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 已提交
1496
    }).catch((err) => {
M
Mupceet 已提交
1497
        console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0170 has error: ${err}`);
M
Mupceet 已提交
1498
        expect(true).assertTrue();
M
Mupceet 已提交
1499
        done();
Y
yichengzhao 已提交
1500 1501 1502
    });
  })

M
Mupceet 已提交
1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528
  /*
    * @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 已提交
1529
    }).catch((err) => {
M
Mupceet 已提交
1530
        console.info(`AccessibleSendEvent: SendEvent_triggerAction_constructor_0180 has error: ${err}`);
M
Mupceet 已提交
1531
        expect(true).assertTrue();
M
Mupceet 已提交
1532
        done();
Y
yichengzhao 已提交
1533 1534 1535
    });
  })

M
Mupceet 已提交
1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 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
  /*
    * @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 已提交
1602
  /*
M
Mupceet 已提交
1603 1604 1605
    * @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 已提交
1606
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1607 1608
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1609 1610 1611
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1612 1613
  it('SendEvent_textMoveUnit_constructor_0030', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0030 starts`);
Y
yichengzhao 已提交
1614

M
Mupceet 已提交
1615 1616 1617 1618 1619 1620 1621
    let textMoveUnit = 'line';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      textMoveUnit : textMoveUnit,
    }
Y
yichengzhao 已提交
1622

M
Mupceet 已提交
1623
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1624 1625

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1626 1627
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1628
    }).catch(err => {
M
Mupceet 已提交
1629
      console.error(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
1630 1631 1632 1633 1634 1635
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1636 1637 1638
    * @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 已提交
1639
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1640 1641
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1642 1643 1644
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1645 1646
  it('SendEvent_textMoveUnit_constructor_0040', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0040 starts`);
Y
yichengzhao 已提交
1647

M
Mupceet 已提交
1648 1649 1650 1651 1652 1653 1654
    let textMoveUnit = 'page';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      textMoveUnit : textMoveUnit,
    }
Y
yichengzhao 已提交
1655

M
Mupceet 已提交
1656
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1657 1658

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1659 1660
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1661
    }).catch(err => {
M
Mupceet 已提交
1662
      console.error(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0040 has error: ${err}`);
Y
yichengzhao 已提交
1663 1664 1665 1666 1667 1668
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1669 1670 1671
    * @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 已提交
1672
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1673 1674
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1675 1676 1677
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1678 1679
  it('SendEvent_textMoveUnit_constructor_0050', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0050 starts`);
Y
yichengzhao 已提交
1680

M
Mupceet 已提交
1681 1682 1683 1684 1685 1686 1687
    let textMoveUnit = 'paragraph';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      textMoveUnit : textMoveUnit,
    }
Y
yichengzhao 已提交
1688

M
Mupceet 已提交
1689
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1690 1691

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1692 1693
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1694
    }).catch(err => {
M
Mupceet 已提交
1695
      console.error(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0050 has error: ${err}`);
Y
yichengzhao 已提交
1696 1697 1698 1699 1700 1701
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1702 1703 1704
    * @tc.number  SendEvent_textMoveUnit_constructor_0060
    * @tc.name    SendEvent_textMoveUnit_constructor_0060
    * @tc.desc    The textMoveUnit of EventInfo is '', test sendEvent() function
Y
yichengzhao 已提交
1705
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1706 1707
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1708 1709 1710
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1711 1712
  it('SendEvent_textMoveUnit_constructor_0060', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0060 starts`);
Y
yichengzhao 已提交
1713

M
Mupceet 已提交
1714 1715 1716 1717 1718 1719 1720
    let textMoveUnit = '';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      textMoveUnit : textMoveUnit,
    }
Y
yichengzhao 已提交
1721

M
Mupceet 已提交
1722
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1723 1724

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1725 1726
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1727
    }).catch(err => {
M
Mupceet 已提交
1728
      console.error(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0060 has error: ${err}`);
Y
yichengzhao 已提交
1729 1730 1731 1732 1733 1734
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1735 1736 1737
    * @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 已提交
1738
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1739 1740
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1741 1742 1743
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1744 1745
  it('SendEvent_textMoveUnit_constructor_0070', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0070 starts`);
Y
yichengzhao 已提交
1746

M
Mupceet 已提交
1747 1748 1749 1750 1751 1752 1753
    let textMoveUnit = null;
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      textMoveUnit : textMoveUnit,
    }
Y
yichengzhao 已提交
1754

M
Mupceet 已提交
1755
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1756 1757

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1758 1759
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1760
    }).catch(err => {
M
Mupceet 已提交
1761
      console.error(`AccessibleSendEvent: SendEvent_textMoveUnit_constructor_0070 has error: ${err}`);
Y
yichengzhao 已提交
1762 1763 1764 1765 1766 1767
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1768 1769 1770
    * @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 已提交
1771
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1772 1773
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1774 1775 1776
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1777 1778
  it('SendEvent_contents_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_contents_constructor_0010 starts`);
Y
yichengzhao 已提交
1779

M
Mupceet 已提交
1780 1781 1782 1783 1784 1785 1786
    let contents = ['1'];
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      contents : contents,
    }
Y
yichengzhao 已提交
1787

M
Mupceet 已提交
1788
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1789 1790

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1791 1792
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1793
    }).catch(err => {
M
Mupceet 已提交
1794
      console.error(`AccessibleSendEvent: SendEvent_contents_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
1795 1796 1797 1798 1799 1800
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1801 1802 1803
    * @tc.number  SendEvent_contents_constructor_0020
    * @tc.name    SendEvent_contents_constructor_0020
    * @tc.desc    The contents of EventInfo is [], test sendEvent() function
Y
yichengzhao 已提交
1804
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1805 1806
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1807 1808 1809
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1810 1811
  it('SendEvent_contents_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_contents_constructor_0020 starts`);
Y
yichengzhao 已提交
1812

M
Mupceet 已提交
1813 1814 1815 1816 1817 1818 1819
    let contents = [];
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      contents : contents,
    }
Y
yichengzhao 已提交
1820

M
Mupceet 已提交
1821
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1822 1823

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1824 1825
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1826
    }).catch(err => {
M
Mupceet 已提交
1827
      console.error(`AccessibleSendEvent: SendEvent_contents_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
1828 1829 1830 1831 1832 1833
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1834 1835 1836
    * @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 已提交
1837
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1838 1839
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1840 1841 1842
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1843 1844
  it('SendEvent_lastContent_constructor_0010', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_lastContent_constructor_0010 starts`);
Y
yichengzhao 已提交
1845

M
Mupceet 已提交
1846 1847 1848 1849 1850 1851 1852
    let lastContent = '1';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      lastContent : lastContent,
    }
Y
yichengzhao 已提交
1853

M
Mupceet 已提交
1854
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1855 1856

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1857 1858
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1859
    }).catch(err => {
M
Mupceet 已提交
1860
      console.error(`AccessibleSendEvent: SendEvent_lastContent_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
1861 1862 1863 1864 1865 1866
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1867 1868 1869
    * @tc.number  SendEvent_lastContent_constructor_0020
    * @tc.name    SendEvent_lastContent_constructor_0020
    * @tc.desc    The lastContent of EventInfo is '', test sendEvent() function
Y
yichengzhao 已提交
1870
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1871 1872
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1873 1874 1875
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1876 1877
  it('SendEvent_lastContent_constructor_0020', 0, async function (done) {
    console.info(`AccessibleSendEvent: SendEvent_lastContent_constructor_0020 starts`);
Y
yichengzhao 已提交
1878

M
Mupceet 已提交
1879 1880 1881 1882 1883 1884 1885
    let lastContent = '';
    let jsonObj = {
      type : eventType,
      bundleName : bundleName,
      triggerAction : triggerAction,
      lastContent : lastContent,
    }
Y
yichengzhao 已提交
1886

M
Mupceet 已提交
1887
    let event = new accessibility.EventInfo(jsonObj);
Y
yichengzhao 已提交
1888 1889

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1890 1891
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1892
    }).catch(err => {
M
Mupceet 已提交
1893
      console.error(`AccessibleSendEvent: SendEvent_lastContent_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
1894 1895 1896 1897 1898 1899
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1900 1901 1902
    * @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 已提交
1903
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1904 1905
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1906 1907 1908
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920
  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 已提交
1921 1922

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1923 1924
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1925
    }).catch(err => {
M
Mupceet 已提交
1926
      console.error(`AccessibleSendEvent: SendEvent_lastContent_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
1927 1928 1929 1930 1931 1932
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1933 1934 1935
    * @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 已提交
1936
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1937 1938
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1939 1940 1941
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953
  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 已提交
1954 1955

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1956 1957
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1958
    }).catch(err => {
M
Mupceet 已提交
1959
      console.error(`AccessibleSendEvent: SendEvent_beginIndex_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
1960 1961 1962 1963 1964 1965
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1966 1967 1968
    * @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 已提交
1969
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
1970 1971
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
1972 1973 1974
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986
  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 已提交
1987 1988

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
1989 1990
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
1991
    }).catch(err => {
M
Mupceet 已提交
1992
      console.error(`AccessibleSendEvent: SendEvent_beginIndex_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
1993 1994 1995 1996 1997 1998
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
1999 2000 2001
    * @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 已提交
2002
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
2003 2004
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
2005 2006 2007
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019
  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 已提交
2020 2021

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2022 2023
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2024
    }).catch(err => {
M
Mupceet 已提交
2025
      console.error(`AccessibleSendEvent: SendEvent_beginIndex_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
2026 2027 2028 2029 2030 2031
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052
      * @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 已提交
2053 2054

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2055 2056
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2057
    }).catch(err => {
M
Mupceet 已提交
2058
      console.error(`AccessibleSendEvent: SendEvent_currentIndex_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
2059 2060 2061 2062 2063 2064
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2065 2066 2067
    * @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 已提交
2068
    *             The result of sendEvent() should be equal to a promise of undefined
Y
yichengzhao 已提交
2069 2070 2071
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083
  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 已提交
2084 2085

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2086 2087
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2088
    }).catch(err => {
M
Mupceet 已提交
2089
      console.error(`AccessibleSendEvent: SendEvent_currentIndex_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
2090 2091 2092 2093 2094 2095
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2096 2097 2098
    * @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 已提交
2099
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
2100 2101
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
2102 2103 2104
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116
  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 已提交
2117 2118

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2119 2120
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2121
    }).catch(err => {
M
Mupceet 已提交
2122
      console.error(`AccessibleSendEvent: SendEvent_currentIndex_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
2123 2124 2125 2126 2127 2128
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149
      * @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 已提交
2150 2151

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2152 2153
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2154
    }).catch(err => {
M
Mupceet 已提交
2155
      console.error(`AccessibleSendEvent: SendEvent_endIndex_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
2156 2157 2158 2159 2160 2161
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2162 2163 2164
    * @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 已提交
2165
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
2166 2167
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
2168 2169 2170
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182
  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 已提交
2183 2184

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2185 2186
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2187
    }).catch(err => {
M
Mupceet 已提交
2188
      console.error(`AccessibleSendEvent: SendEvent_endIndex_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
2189 2190 2191 2192 2193 2194
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2195 2196 2197
    * @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 已提交
2198
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
2199 2200
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
2201 2202 2203
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215
  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 已提交
2216 2217

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2218 2219
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2220
    }).catch(err => {
M
Mupceet 已提交
2221
      console.error(`AccessibleSendEvent: SendEvent_endIndex_constructor_0030 has error: ${err}`);
Y
yichengzhao 已提交
2222 2223 2224 2225 2226 2227
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248
      * @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 已提交
2249 2250

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2251 2252
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2253
    }).catch(err => {
M
Mupceet 已提交
2254
      console.error(`AccessibleSendEvent: SendEvent_itemCount_constructor_0010 has error: ${err}`);
Y
yichengzhao 已提交
2255 2256 2257 2258 2259 2260
      expect(null).assertFail();
      done();
    });
  })

  /*
M
Mupceet 已提交
2261 2262 2263
    * @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 已提交
2264
    *             The result of sendEvent() should be equal to a promise of undefined
M
Mupceet 已提交
2265 2266
    *             Another test point is to test whether the modified constructor (EventInfo)
    *             works correctly.
Y
yichengzhao 已提交
2267 2268 2269
    * @tc.size    SmallTest
    * @tc.type    User
    */
M
Mupceet 已提交
2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281
  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 已提交
2282 2283

    accessibility.sendEvent(event).then((result) => {
Y
yichengzhao 已提交
2284 2285
      expect(result).assertEqual(undefined);
      done();
Y
yichengzhao 已提交
2286
    }).catch(err => {
M
Mupceet 已提交
2287
      console.error(`AccessibleSendEvent: SendEvent_itemCount_constructor_0020 has error: ${err}`);
Y
yichengzhao 已提交
2288 2289 2290 2291 2292
      expect(null).assertFail();
      done();
    });
  })

M
Mupceet 已提交
2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324
    /*
    * @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 已提交
2325
})
J
jiyong_sd 已提交
2326
}