summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/selftests/keyboard/tst_keyboard.cpp
blob: 069306121c099873d5ee268d8998b731e7acface (plain)
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
/****************************************************************************
**
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include <QtTest/qtest.h>
#include <QtGui/qwindow.h>
#include <QtGui/private/qguiapplication_p.h>
#include <QtGui/qpa/qplatformintegration.h>

class tst_Keyboard : public QObject
{
    Q_OBJECT

private slots:
    void keyPressAndRelease();
};

class KeyWindow : public QWindow
{
public:
    void keyPressEvent(QKeyEvent *event) override
    {
        QSharedPointer<QKeyEvent> copiedEvent(new QKeyEvent(event->type(), event->key(),
            event->modifiers(), event->text(), event->isAutoRepeat(), event->count()));
        mEventOrder.append(copiedEvent);
    }

    void keyReleaseEvent(QKeyEvent *event) override
    {
        QSharedPointer<QKeyEvent> copiedEvent(new QKeyEvent(event->type(), event->key(),
            event->modifiers(), event->text(), event->isAutoRepeat(), event->count()));
        mEventOrder.append(copiedEvent);
    }

    QList<QSharedPointer<QKeyEvent>> mEventOrder;
};

void tst_Keyboard::keyPressAndRelease()
{
    KeyWindow window;
    window.show();
    window.setGeometry(100, 100, 200, 200);
    QVERIFY(QTest::qWaitForWindowExposed(&window));

    if (!QGuiApplicationPrivate::platformIntegration()->hasCapability(QPlatformIntegration::WindowActivation)) {
        QTest::ignoreMessage(QtWarningMsg,
                             "qWaitForWindowActive was called on a platform that doesn't support window "
                             "activation. This means there is an error in the test and it should either "
                             "check for the WindowActivation platform capability before calling "
                             "qWaitForWindowActivate, use qWaitForWindowExposed instead, or skip the test. "
                             "Falling back to qWaitForWindowExposed.");
    }
    QVERIFY(QTest::qWaitForWindowActive(&window));

    QTest::keyPress(&window, Qt::Key_A);
    QTest::keyRelease(&window, Qt::Key_A);
    QCOMPARE(window.mEventOrder.size(), 2);

    const auto pressEvent = window.mEventOrder.at(0);
    QCOMPARE(pressEvent->type(), QEvent::KeyPress);
    QCOMPARE(pressEvent->key(), Qt::Key_A);
    QCOMPARE(pressEvent->modifiers(), Qt::NoModifier);
    QCOMPARE(pressEvent->text(), "a");
    QCOMPARE(pressEvent->isAutoRepeat(), false);

    const auto releaseEvent = window.mEventOrder.at(1);
    QCOMPARE(releaseEvent->type(), QEvent::KeyRelease);
    QCOMPARE(releaseEvent->key(), Qt::Key_A);
    QCOMPARE(releaseEvent->modifiers(), Qt::NoModifier);
    QCOMPARE(releaseEvent->text(), "a");
    QCOMPARE(releaseEvent->isAutoRepeat(), false);
}

QTEST_MAIN(tst_Keyboard)
#include "tst_keyboard.moc"