2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2015-01-23 14:32:05 +00:00
|
|
|
|
2021-05-11 11:23:45 +00:00
|
|
|
#include <jni.h>
|
|
|
|
|
2020-11-26 16:31:50 +00:00
|
|
|
#include <QTest>
|
2021-05-11 11:23:45 +00:00
|
|
|
#include <QtCore/qnativeinterface.h>
|
|
|
|
#include <QtCore/qjniobject.h>
|
2015-01-23 14:32:05 +00:00
|
|
|
|
|
|
|
class tst_Android : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
|
|
void assetsRead();
|
|
|
|
void assetsNotWritable();
|
2021-05-11 11:23:45 +00:00
|
|
|
void testAndroidSdkVersion();
|
|
|
|
void testAndroidActivity();
|
2015-01-23 14:32:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void tst_Android::assetsRead()
|
|
|
|
{
|
|
|
|
{
|
2021-05-11 11:23:45 +00:00
|
|
|
QFile file(QStringLiteral("assets:/test.txt"));
|
2015-01-23 14:32:05 +00:00
|
|
|
QVERIFY(file.open(QIODevice::ReadOnly));
|
|
|
|
QCOMPARE(file.readAll(), QByteArray("FooBar"));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2021-05-11 11:23:45 +00:00
|
|
|
QFile file(QStringLiteral("assets:/test.txt"));
|
2015-01-23 14:32:05 +00:00
|
|
|
QVERIFY(file.open(QIODevice::ReadOnly | QIODevice::Text));
|
|
|
|
QCOMPARE(file.readAll(), QByteArray("FooBar"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void tst_Android::assetsNotWritable()
|
|
|
|
{
|
2021-05-11 11:23:45 +00:00
|
|
|
QFile file(QStringLiteral("assets:/test.txt"));
|
2015-01-23 14:32:05 +00:00
|
|
|
QVERIFY(!file.open(QIODevice::WriteOnly));
|
|
|
|
QVERIFY(!file.open(QIODevice::ReadWrite));
|
|
|
|
QVERIFY(!file.open(QIODevice::Append));
|
|
|
|
}
|
|
|
|
|
2021-05-11 11:23:45 +00:00
|
|
|
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"));
|
|
|
|
}
|
|
|
|
|
2015-01-23 14:32:05 +00:00
|
|
|
QTEST_MAIN(tst_Android)
|
|
|
|
#include "tst_android.moc"
|
|
|
|
|