1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

Autotests: Add WebViewTest

This commit is contained in:
David Rosca 2018-01-29 00:20:28 +01:00
parent 056d5ec3aa
commit e45876c2a3
No known key found for this signature in database
GPG Key ID: EBC3FC294452C6D8
5 changed files with 153 additions and 0 deletions

View File

@ -2,6 +2,8 @@ include(ECMMarkAsTest)
set(falkon_autotests_SRCS ) set(falkon_autotests_SRCS )
qt5_add_resources(falkon_autotests_SRCS autotests.qrc)
macro(falkon_tests) macro(falkon_tests)
foreach(_testname ${ARGN}) foreach(_testname ${ARGN})
add_executable(${_testname} ${_testname}.cpp ${falkon_autotests_SRCS}) add_executable(${_testname} ${_testname}.cpp ${falkon_autotests_SRCS})
@ -18,6 +20,7 @@ falkon_tests(
adblocktest adblocktest
updatertest updatertest
locationbartest locationbartest
webviewtest
) )
set(falkon_autotests_SRCS passwordbackendtest.cpp) set(falkon_autotests_SRCS passwordbackendtest.cpp)

5
autotests/autotests.qrc Normal file
View File

@ -0,0 +1,5 @@
<RCC>
<qresource prefix="/autotests">
<file>data/basic_page.html</file>
</qresource>
</RCC>

View File

@ -0,0 +1,8 @@
<html>
<head>
<title> Basic Page </title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>

106
autotests/webviewtest.cpp Normal file
View File

@ -0,0 +1,106 @@
/* ============================================================
* Falkon - Qt web browser
* Copyright (C) 2018 David Rosca <nowrep@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 "autotests.h"
#include "webviewtest.h"
#include "webview.h"
#include "webpage.h"
class TestWebView : public WebView
{
public:
explicit TestWebView()
: WebView()
{
}
QWidget *overlayWidget() override
{
return this;
}
void closeView() override
{
}
void loadInNewTab(const LoadRequest &req, Qz::NewTabPositionFlags position) override
{
Q_UNUSED(req)
Q_UNUSED(position)
}
bool isFullScreen() override
{
return m_fullScreen;
}
void requestFullScreen(bool enable) override
{
m_fullScreen = enable;
}
bool m_fullScreen = false;
};
void WebViewTest::initTestCase()
{
}
void WebViewTest::cleanupTestCase()
{
}
void WebViewTest::loadSignalsChangePageTest()
{
TestWebView view;
WebPage *page1 = new WebPage;
view.setPage(page1);
QSignalSpy loadStartedSpy(&view, &WebView::loadStarted);
QSignalSpy loadFinishedSpy(&view, &WebView::loadFinished);
view.load(QUrl(":autotests/data/basic_page.html"));
QTRY_COMPARE(loadStartedSpy.count(), 1);
loadStartedSpy.clear();
WebPage *page2 = new WebPage;
view.setPage(page2);
// WebPage: Workaround for broken load started/finished signals in QtWebEngine 5.10
const int loadFinishedEmitCount = qstrcmp(qVersion(), "5.10.0") == 0 ? 2 : 1;
QTRY_COMPARE(loadFinishedSpy.count(), loadFinishedEmitCount);
QCOMPARE(loadStartedSpy.count(), 0);
loadFinishedSpy.clear();
QWebEngineView view2;
WebPage *page3 = new WebPage;
view2.setPage(page3);
QSignalSpy page3LoadStart(page3, &WebPage::loadStarted);
page3->load(QUrl(":autotests/data/basic_page.html"));
QVERIFY(page3LoadStart.wait());
view2.setPage(new QWebEnginePage(&view2));
view.setPage(page3);
QTRY_COMPARE(loadStartedSpy.count(), 1);
QCOMPARE(loadFinishedSpy.count(), 0);
}
FALKONTEST_MAIN(WebViewTest)

31
autotests/webviewtest.h Normal file
View File

@ -0,0 +1,31 @@
/* ============================================================
* Falkon - Qt web browser
* Copyright (C) 2018 David Rosca <nowrep@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/>.
* ============================================================ */
#pragma once
#include <QObject>
class WebViewTest : public QObject
{
Q_OBJECT
private slots:
void initTestCase();
void cleanupTestCase();
void loadSignalsChangePageTest();
};