mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
Juraj Oravec
eb5b015a5d
Update code to make it compile. Signed-off-by: Juraj Oravec <jurajoravec@mailo.com>
98 lines
3.5 KiB
C++
98 lines
3.5 KiB
C++
/* ============================================================
|
|
* Falkon - Qt web browser
|
|
* Copyright (C) 2018 Anmol Gautam <tarptaeya@gmail.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
* ============================================================ */
|
|
#include "qmluserscriptapitest.h"
|
|
#include "autotests.h"
|
|
#include "mainapplication.h"
|
|
#include <QWebEngineProfile>
|
|
#include <QWebEngineScript>
|
|
#include <QWebEngineScriptCollection>
|
|
#include "qml/api/userscript/qmluserscript.h"
|
|
#include "qml/api/userscript/qmluserscripts.h"
|
|
|
|
void QmlUserScriptApiTest::initTestCase()
|
|
{
|
|
}
|
|
|
|
void QmlUserScriptApiTest::cleanupTestCase()
|
|
{
|
|
}
|
|
|
|
void QmlUserScriptApiTest::testCount()
|
|
{
|
|
int count = m_testHelper.evaluate(QSL("Falkon.UserScripts.count")).toInt();
|
|
QCOMPARE(count, mApp->webProfile()->scripts()->count());
|
|
}
|
|
|
|
void QmlUserScriptApiTest::testSize()
|
|
{
|
|
int size = m_testHelper.evaluate(QSL("Falkon.UserScripts.size")).toInt();
|
|
QCOMPARE(size, mApp->webProfile()->scripts()->count());
|
|
}
|
|
|
|
void QmlUserScriptApiTest::testEmpty()
|
|
{
|
|
bool empty = m_testHelper.evaluate(QSL("Falkon.UserScripts.empty")).toBool();
|
|
QCOMPARE(empty, mApp->webProfile()->scripts()->isEmpty());
|
|
}
|
|
|
|
void QmlUserScriptApiTest::testContains()
|
|
{
|
|
QWebEngineScript script = mApp->webProfile()->scripts()->toList().at(0);
|
|
QObject *object = m_testHelper.evaluateQObject(QSL("Falkon.UserScripts"));
|
|
auto *userScripts = dynamic_cast<QmlUserScripts*>(object);
|
|
QVERIFY(userScripts);
|
|
auto *userScript = new QmlUserScript();
|
|
userScript->setWebEngineScript(script);
|
|
bool contains = userScripts->contains(userScript);
|
|
QCOMPARE(contains, true);
|
|
}
|
|
|
|
void QmlUserScriptApiTest::testFind()
|
|
{
|
|
QWebEngineScript script = mApp->webProfile()->scripts()->toList().at(0);
|
|
QObject *object = m_testHelper.evaluateQObject(QSL("Falkon.UserScripts"));
|
|
auto *userScripts = dynamic_cast<QmlUserScripts*>(object);
|
|
QVERIFY(userScripts);
|
|
QObject *scriptFound = userScripts->findScript(script.name());
|
|
QVERIFY(scriptFound);
|
|
QCOMPARE(scriptFound->property("name").toString(), script.name());
|
|
}
|
|
|
|
void QmlUserScriptApiTest::testInsertRemove()
|
|
{
|
|
int initialCount = m_testHelper.evaluate(QSL("Falkon.UserScripts.count")).toInt();
|
|
QObject *object = m_testHelper.evaluateQObject(QSL("Falkon.UserScripts"));
|
|
auto *userScripts = dynamic_cast<QmlUserScripts*>(object);
|
|
QVERIFY(userScripts);
|
|
auto *userScript = new QmlUserScript();
|
|
userScript->setProperty("name", QSL("Hello World"));
|
|
userScript->setProperty("sourceCode", QL1S("(function() {"
|
|
" alert('Hello World')"
|
|
"})()"));
|
|
userScripts->insert(userScript);
|
|
int finalCount = m_testHelper.evaluate(QSL("Falkon.UserScripts.count")).toInt();
|
|
QCOMPARE(finalCount, initialCount + 1);
|
|
|
|
userScripts->remove(userScript);
|
|
|
|
int ultimateCount = m_testHelper.evaluate(QSL("Falkon.UserScripts.count")).toInt();
|
|
QCOMPARE(ultimateCount, initialCount);
|
|
}
|
|
|
|
FALKONTEST_MAIN(QmlUserScriptApiTest)
|