AccessibleSendEvent.test.js 5.4 KB
Newer Older
Y
yichengzhao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 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
/*
 * 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.
 */
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
import accessibility from '@ohos.accessibility'

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

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);
    })
    
    /******************************************************************************** */
    /* Cases SendEventAccessibility_0010-0020 & SendEventAccessibilityNull_0010-0020  */
    /*    are for accessibility.sendEvent() API test                                  */
    /******************************************************************************** */
    
    /*
    * @tc.number  SendEventAccessibility_0010
    * @tc.name    SendEventAccessibility_0010
    * @tc.desc    The parameter input is EventInfo, test the sendEvent() function,
    *             and should return true.
    * @tc.size    SmallTest
    * @tc.type    User
    */
    it('SendEventAccessibility_0010', 0, async function (done) {
        console.info('SendEventAccessibility_0010');
        let event = new accessibility.EventInfo();
        event.type = eventType;
        event.bundleName = bundleName;
        event.triggerAction = triggerAction;

        accessibility.sendEvent(event, (err, data) => {
            if (err.code != 0) {
                console.error(`AccessibleSendEvent: SendEventAccessibility_0010 has error: ${err.code}`);
                expect(null).assertFail();
                done();
            }
            console.info(`AccessibleSendEvent: SendEventAccessibility_0010 data ${data}`);
            expect(data).assertEqual(true);
            done();
        })
    })

    /*
    * @tc.number  SendEventAccessibility_0020
    * @tc.name    SendEventAccessibility_0020
    * @tc.desc    The parameter input is EventInfo, test the sendEvent() function,
    *             and should return true.
    * @tc.size    SmallTest
    * @tc.type    User
    */
    it('SendEventAccessibility_0020', 0, async function (done) {
        console.info('SendEventAccessibility_0020');
        let event = new accessibility.EventInfo();
        event.type = eventType;
        event.bundleName = bundleName;
        event.triggerAction = triggerAction;

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

    /*
    * @tc.number  SendEventAccessibilityNull_0010
    * @tc.name    SendEventAccessibilityNull_0010
    * @tc.desc    The parameter input is null, test the sendEvent() function,
    *             and should return false.
    * @tc.size    SmallTest
    * @tc.type    User
    */
    it('SendEventAccessibilityNull_0010', 0, async function (done) {
        console.info('SendEventAccessibilityNull_0010');
        let event = null;

        accessibility.sendEvent(event, (err, data) => {
            if (err.code != 0) {
                console.error(`AccessibleSendEvent: SendEventAccessibilityNull_0010 has error: ${err.code}`);
                expect(null).assertFail();
                done();
            }
            console.info(`AccessibleSendEvent: SendEventAccessibilityNull_0010 data ${data}`);
            expect(data).assertEqual(false);
            done();
        })
    })

    /*
    * @tc.number  SendEventAccessibilityNull_0020
    * @tc.name    SendEventAccessibilityNull_0020
    * @tc.desc    The parameter input is null, test the sendEvent() function,
    *             and should return false.
    * @tc.size    SmallTest
    * @tc.type    User
    */
    it('SendEventAccessibilityNull_0020', 0, async function (done) {
        console.info('SendEventAccessibilityNull_0020');
        let event = null;

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