302 lines
12 KiB
C++
302 lines
12 KiB
C++
// Copyright (C) 2017 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
#include <QtTest/qtest.h>
|
|
#include <QtQml/qqmlengine.h>
|
|
#include <QtQml/qqmlcomponent.h>
|
|
#include <QtQml/qqmlcontext.h>
|
|
#include <QtQuick/private/qquickitem_p.h>
|
|
#include <QtQuickTestUtils/private/qmlutils_p.h>
|
|
#include <QtQuickTemplates2/private/qquickpopup_p.h>
|
|
|
|
#if QT_CONFIG(accessibility)
|
|
#include <QtGui/private/qguiapplication_p.h>
|
|
#include <QtGui/qpa/qplatformintegration.h>
|
|
#include <QtGui/qpa/qplatformaccessibility.h>
|
|
#include <QtQuick/private/qquickaccessibleattached_p.h>
|
|
#endif
|
|
|
|
class tst_accessibility : public QQmlDataTest
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
tst_accessibility();
|
|
|
|
private slots:
|
|
void a11y_data();
|
|
void a11y();
|
|
|
|
void override_data();
|
|
void override();
|
|
|
|
void ordering();
|
|
|
|
void actionAccessibility();
|
|
private:
|
|
QQmlEngine engine;
|
|
};
|
|
|
|
#if QT_CONFIG(accessibility)
|
|
static QPlatformAccessibility *platformAccessibility()
|
|
{
|
|
QPlatformIntegration *pfIntegration = QGuiApplicationPrivate::platformIntegration();
|
|
return pfIntegration ? pfIntegration->accessibility() : nullptr;
|
|
}
|
|
#endif
|
|
|
|
QString adjustFileBaseName(const QString &fileBaseName)
|
|
{
|
|
#if !QT_CONFIG(accessibility)
|
|
if (fileBaseName == QLatin1Literal("dayofweekrow")
|
|
|| fileBaseName == QLatin1Literal("monthgrid")
|
|
|| fileBaseName == QLatin1Literal("weeknumbercolumn"))
|
|
return fileBaseName += QLatin1Literal("-2");
|
|
#else
|
|
return fileBaseName;
|
|
#endif
|
|
}
|
|
|
|
QQuickItem *findItem(QObject *object)
|
|
{
|
|
QQuickItem *item = qobject_cast<QQuickItem *>(object);
|
|
if (!item) {
|
|
QQuickPopup *popup = qobject_cast<QQuickPopup *>(object);
|
|
if (popup)
|
|
item = popup->popupItem();
|
|
}
|
|
return item;
|
|
}
|
|
|
|
tst_accessibility::tst_accessibility()
|
|
: QQmlDataTest(QT_QMLTEST_DATADIR)
|
|
{
|
|
}
|
|
|
|
void tst_accessibility::a11y_data()
|
|
{
|
|
QTest::addColumn<QString>("fileBaseName");
|
|
QTest::addColumn<QAccessible::Role>("role");
|
|
QTest::addColumn<QString>("text");
|
|
|
|
QTest::newRow("AbstractButton") << "abstractbutton" << QAccessible::Button << "AbstractButton";
|
|
QTest::newRow("BusyIndicator") << "busyindicator" << QAccessible::Indicator << "";
|
|
QTest::newRow("Button") << "button" << QAccessible::Button << "Button";
|
|
QTest::newRow("CheckBox") << "checkbox" << QAccessible::CheckBox << "CheckBox";
|
|
QTest::newRow("CheckDelegate") << "checkdelegate" << QAccessible::CheckBox << "CheckDelegate";
|
|
QTest::newRow("ComboBox") << "combobox" << QAccessible::ComboBox << "ComboBox";
|
|
QTest::newRow("Container") << "container" << QAccessible::NoRole << "";
|
|
QTest::newRow("Control") << "control" << QAccessible::NoRole << "";
|
|
QTest::newRow("Dial") << "dial" << QAccessible::Dial << "";
|
|
QTest::newRow("Dialog") << "dialog" << QAccessible::Dialog << "Dialog";
|
|
QTest::newRow("Drawer") << "drawer" << QAccessible::Dialog << "";
|
|
QTest::newRow("Frame") << "frame" << QAccessible::Border << "";
|
|
QTest::newRow("GroupBox") << "groupbox" << QAccessible::Grouping << "GroupBox";
|
|
QTest::newRow("ItemDelegate") << "itemdelegate" << QAccessible::ListItem << "ItemDelegate";
|
|
QTest::newRow("Label") << "label" << QAccessible::StaticText << "Label";
|
|
QTest::newRow("Menu") << "menu" << QAccessible::PopupMenu << "";
|
|
QTest::newRow("MenuItem") << "menuitem" << QAccessible::MenuItem << "MenuItem";
|
|
QTest::newRow("Page") << "page" << QAccessible::PageTab << "Page";
|
|
QTest::newRow("PageIndicator") << "pageindicator" << QAccessible::Indicator << "";
|
|
QTest::newRow("Pane") << "pane" << QAccessible::Pane << "";
|
|
QTest::newRow("Popup") << "popup" << QAccessible::Dialog << "";
|
|
QTest::newRow("ProgressBar") << "progressbar" << QAccessible::ProgressBar << "";
|
|
QTest::newRow("RadioButton") << "radiobutton" << QAccessible::RadioButton << "RadioButton";
|
|
QTest::newRow("RadioDelegate") << "radiodelegate" << QAccessible::RadioButton << "RadioDelegate";
|
|
QTest::newRow("RangeSlider") << "rangeslider" << QAccessible::Slider << "";
|
|
QTest::newRow("RoundButton") << "roundbutton" << QAccessible::Button << "RoundButton";
|
|
QTest::newRow("ScrollBar") << "scrollbar" << QAccessible::ScrollBar << "";
|
|
QTest::newRow("ScrollIndicator") << "scrollindicator" << QAccessible::Indicator << "";
|
|
QTest::newRow("Slider") << "slider" << QAccessible::Slider << "";
|
|
QTest::newRow("SpinBox") << "spinbox" << QAccessible::SpinBox << "";
|
|
QTest::newRow("StackView") << "stackview" << QAccessible::LayeredPane << "";
|
|
QTest::newRow("SwipeDelegate") << "swipedelegate" << QAccessible::ListItem << "SwipeDelegate";
|
|
QTest::newRow("SwipeView") << "swipeview" << QAccessible::PageTabList << "";
|
|
QTest::newRow("Switch") << "switch" << QAccessible::CheckBox << "Switch";
|
|
QTest::newRow("SwitchDelegate") << "switchdelegate" << QAccessible::ListItem << "SwitchDelegate";
|
|
QTest::newRow("TabBar") << "tabbar" << QAccessible::PageTabList << "";
|
|
QTest::newRow("TabButton") << "tabbutton" << QAccessible::PageTab << "TabButton";
|
|
QTest::newRow("TextArea") << "textarea" << QAccessible::EditableText << "";
|
|
QTest::newRow("TextField") << "textfield" << QAccessible::EditableText << "";
|
|
QTest::newRow("ToolBar") << "toolbar" << QAccessible::ToolBar << "";
|
|
QTest::newRow("ToolButton") << "toolbutton" << QAccessible::Button << "ToolButton";
|
|
QTest::newRow("ToolTip") << "tooltip" << QAccessible::ToolTip << "ToolTip";
|
|
QTest::newRow("Tumbler") << "tumbler" << QAccessible::NoRole << ""; // TODO
|
|
}
|
|
|
|
void tst_accessibility::a11y()
|
|
{
|
|
QFETCH(QString, fileBaseName);
|
|
QFETCH(QAccessible::Role, role);
|
|
QFETCH(QString, text);
|
|
|
|
QQmlComponent component(&engine);
|
|
component.loadUrl(testFileUrl("defaults/" + adjustFileBaseName(fileBaseName) + ".qml"));
|
|
|
|
QScopedPointer<QObject> object(component.create());
|
|
QVERIFY2(!object.isNull(), qPrintable(component.errorString()));
|
|
|
|
QQuickItem *item = findItem(object.data());
|
|
QVERIFY(item);
|
|
|
|
#if QT_CONFIG(accessibility)
|
|
QQuickAccessibleAttached *attached = QQuickAccessibleAttached::attachedProperties(item);
|
|
if (QAccessible::isActive()) {
|
|
QVERIFY(attached);
|
|
} else {
|
|
QVERIFY(!attached);
|
|
QPlatformAccessibility *accessibility = platformAccessibility();
|
|
if (!accessibility)
|
|
QSKIP("No QPlatformAccessibility available.");
|
|
accessibility->setActive(true);
|
|
attached = QQuickAccessibleAttached::attachedProperties(item);
|
|
}
|
|
QVERIFY(attached);
|
|
QCOMPARE(attached->role(), role);
|
|
QCOMPARE(attached->name(), text);
|
|
#else
|
|
Q_UNUSED(role);
|
|
Q_UNUSED(text);
|
|
#endif
|
|
}
|
|
|
|
void tst_accessibility::override_data()
|
|
{
|
|
QTest::addColumn<QAccessible::Role>("role");
|
|
|
|
QTest::newRow("AbstractButton") << QAccessible::Button;
|
|
QTest::newRow("BusyIndicator") << QAccessible::Indicator;
|
|
QTest::newRow("Button") << QAccessible::Button;
|
|
QTest::newRow("CheckBox") << QAccessible::CheckBox;
|
|
QTest::newRow("CheckDelegate") << QAccessible::CheckBox;
|
|
QTest::newRow("ComboBox") << QAccessible::ComboBox;
|
|
QTest::newRow("Container") << QAccessible::NoRole;
|
|
QTest::newRow("Control") << QAccessible::NoRole;
|
|
QTest::newRow("Dial") << QAccessible::Dial;
|
|
QTest::newRow("Dialog") << QAccessible::Dialog;
|
|
QTest::newRow("Drawer") << QAccessible::Dialog;
|
|
QTest::newRow("Frame") << QAccessible::Border;
|
|
QTest::newRow("GroupBox") << QAccessible::Grouping;
|
|
QTest::newRow("ItemDelegate") << QAccessible::ListItem;
|
|
QTest::newRow("Label") << QAccessible::StaticText;
|
|
QTest::newRow("Menu") << QAccessible::PopupMenu;
|
|
QTest::newRow("MenuItem") << QAccessible::MenuItem;
|
|
QTest::newRow("Page") << QAccessible::PageTab;
|
|
QTest::newRow("PageIndicator") << QAccessible::Indicator;
|
|
QTest::newRow("Pane") << QAccessible::Pane;
|
|
QTest::newRow("Popup") << QAccessible::Dialog;
|
|
QTest::newRow("ProgressBar") << QAccessible::ProgressBar;
|
|
QTest::newRow("RadioButton") << QAccessible::RadioButton;
|
|
QTest::newRow("RadioDelegate") << QAccessible::RadioButton;
|
|
QTest::newRow("RangeSlider") << QAccessible::Slider;
|
|
QTest::newRow("RoundButton") << QAccessible::Button;
|
|
QTest::newRow("ScrollBar") << QAccessible::ScrollBar;
|
|
QTest::newRow("ScrollIndicator") << QAccessible::Indicator;
|
|
QTest::newRow("Slider") << QAccessible::Slider;
|
|
QTest::newRow("SpinBox") << QAccessible::SpinBox;
|
|
QTest::newRow("StackView") << QAccessible::LayeredPane;
|
|
QTest::newRow("SwipeDelegate") << QAccessible::ListItem;
|
|
QTest::newRow("SwipeView") << QAccessible::PageTabList;
|
|
QTest::newRow("Switch") << QAccessible::CheckBox;
|
|
QTest::newRow("SwitchDelegate") << QAccessible::ListItem;
|
|
QTest::newRow("TabBar") << QAccessible::PageTabList;
|
|
QTest::newRow("TabButton") << QAccessible::PageTab;
|
|
QTest::newRow("TextArea") << QAccessible::EditableText;
|
|
QTest::newRow("TextField") << QAccessible::EditableText;
|
|
QTest::newRow("ToolBar") << QAccessible::ToolBar;
|
|
QTest::newRow("ToolButton") << QAccessible::Button;
|
|
QTest::newRow("ToolTip") << QAccessible::ToolTip;
|
|
QTest::newRow("Tumbler") << QAccessible::NoRole;
|
|
}
|
|
|
|
void tst_accessibility::override()
|
|
{
|
|
QFETCH(QAccessible::Role, role);
|
|
|
|
const QString name = QTest::currentDataTag();
|
|
const QString fileBaseName = name.toLower();
|
|
|
|
QQmlComponent component(&engine);
|
|
component.loadUrl(testFileUrl("override/" + adjustFileBaseName(fileBaseName) + ".qml"));
|
|
|
|
QScopedPointer<QObject> object(component.create());
|
|
QVERIFY2(!object.isNull(), qPrintable(component.errorString()));
|
|
|
|
QQuickItem *item = findItem(object.data());
|
|
QVERIFY(item);
|
|
|
|
#if QT_CONFIG(accessibility)
|
|
QQuickAccessibleAttached *attached = QQuickAccessibleAttached::attachedProperties(item);
|
|
if (QAccessible::isActive()) {
|
|
QVERIFY(attached);
|
|
} else {
|
|
QPlatformAccessibility *accessibility = platformAccessibility();
|
|
if (!accessibility)
|
|
QSKIP("No QPlatformAccessibility available.");
|
|
accessibility->setActive(true);
|
|
if (!attached)
|
|
attached = QQuickAccessibleAttached::attachedProperties(item);
|
|
}
|
|
|
|
QVERIFY(attached);
|
|
QCOMPARE(attached->role(), role);
|
|
QCOMPARE(attached->name(), name + "Override");
|
|
#else
|
|
Q_UNUSED(role);
|
|
Q_UNUSED(text);
|
|
#endif
|
|
}
|
|
template <typename Predicate>
|
|
void a11yDescendants(QAccessibleInterface *iface, Predicate pred)
|
|
{
|
|
for (int i = 0; i < iface->childCount(); ++i) {
|
|
if (QAccessibleInterface *child = iface->child(i)) {
|
|
pred(child);
|
|
a11yDescendants(child, pred);
|
|
}
|
|
}
|
|
}
|
|
|
|
void tst_accessibility::ordering()
|
|
{
|
|
QQmlComponent component(&engine);
|
|
component.loadUrl(testFileUrl("ordering/page.qml"));
|
|
|
|
QScopedPointer<QObject> object(component.create());
|
|
QVERIFY2(!object.isNull(), qPrintable(component.errorString()));
|
|
|
|
#if QT_CONFIG(accessibility)
|
|
QQuickItem *item = findItem(object.data());
|
|
QVERIFY(item);
|
|
QAccessibleInterface *iface = QAccessible::queryAccessibleInterface(item);
|
|
QVERIFY(iface);
|
|
QStringList strings;
|
|
a11yDescendants(iface, [&](QAccessibleInterface *iface) {strings << iface->text(QAccessible::Name);});
|
|
QCOMPARE(strings.join(QLatin1String(", ")), "Header, Content item 1, Content item 2, Footer");
|
|
#endif
|
|
}
|
|
|
|
void tst_accessibility::actionAccessibility()
|
|
{
|
|
#if QT_CONFIG(accessibility)
|
|
QQmlComponent component(&engine);
|
|
component.loadUrl(testFileUrl("actionAccessibility/button.qml"));
|
|
|
|
QScopedPointer<QObject> object(component.create());
|
|
QVERIFY2(!object.isNull(), qPrintable(component.errorString()));
|
|
|
|
QQuickItem *item = qobject_cast<QQuickItem *>(object.data());
|
|
QVERIFY(item);
|
|
const QString description = "Show peaches some love";
|
|
QCOMPARE(item->property("text"), description);
|
|
QAccessibleInterface *iface = QAccessible::queryAccessibleInterface(item);
|
|
QVERIFY(iface);
|
|
QCOMPARE(iface->text(QAccessible::Name), "Peach");
|
|
QCOMPARE(iface->text(QAccessible::Description), description);
|
|
#endif
|
|
}
|
|
|
|
QTEST_MAIN(tst_accessibility)
|
|
|
|
#include "tst_accessibility.moc"
|