05fc3aef53
Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Task-number: QTBUG-67283 Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
58 lines
1.4 KiB
C++
58 lines
1.4 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include <jni.h>
|
|
|
|
#include <QTest>
|
|
#include <QtCore/qnativeinterface.h>
|
|
#include <QtCore/qjniobject.h>
|
|
|
|
class tst_Android : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void assetsRead();
|
|
void assetsNotWritable();
|
|
void testAndroidSdkVersion();
|
|
void testAndroidActivity();
|
|
};
|
|
|
|
void tst_Android::assetsRead()
|
|
{
|
|
{
|
|
QFile file(QStringLiteral("assets:/test.txt"));
|
|
QVERIFY(file.open(QIODevice::ReadOnly));
|
|
QCOMPARE(file.readAll(), QByteArray("FooBar"));
|
|
}
|
|
|
|
{
|
|
QFile file(QStringLiteral("assets:/test.txt"));
|
|
QVERIFY(file.open(QIODevice::ReadOnly | QIODevice::Text));
|
|
QCOMPARE(file.readAll(), QByteArray("FooBar"));
|
|
}
|
|
}
|
|
|
|
void tst_Android::assetsNotWritable()
|
|
{
|
|
QFile file(QStringLiteral("assets:/test.txt"));
|
|
QVERIFY(!file.open(QIODevice::WriteOnly));
|
|
QVERIFY(!file.open(QIODevice::ReadWrite));
|
|
QVERIFY(!file.open(QIODevice::Append));
|
|
}
|
|
|
|
void tst_Android::testAndroidSdkVersion()
|
|
{
|
|
QVERIFY(QNativeInterface::QAndroidApplication::sdkVersion() > 0);
|
|
}
|
|
|
|
void tst_Android::testAndroidActivity()
|
|
{
|
|
QJniObject activity = QNativeInterface::QAndroidApplication::context();
|
|
QVERIFY(activity.isValid());
|
|
QVERIFY(activity.callMethod<jboolean>("isTaskRoot"));
|
|
}
|
|
|
|
QTEST_MAIN(tst_Android)
|
|
#include "tst_android.moc"
|
|
|