File: webviewtest.cpp

package info (click to toggle)
falkon 25.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,344 kB
  • sloc: cpp: 66,939; javascript: 21,781; sh: 578; xml: 564; python: 496; sql: 75; makefile: 26
file content (103 lines) | stat: -rw-r--r-- 2,593 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/* ============================================================
* 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;
    auto *page1 = new WebPage;
    view.setPage(page1);

    QSignalSpy loadStartedSpy(&view, &WebView::loadStarted);
    QSignalSpy loadFinishedSpy(&view, &WebView::loadFinished);

    view.load(QUrl(QSL("qrc:autotests/data/basic_page.html")));

    QTRY_COMPARE(loadStartedSpy.count(), 1);
    loadStartedSpy.clear();

    auto *page2 = new WebPage;
    view.setPage(page2);

    QTRY_COMPARE(loadFinishedSpy.count(), 1);
    QCOMPARE(loadStartedSpy.count(), 0);
    loadFinishedSpy.clear();

    QWebEngineView view2;
    auto *page3 = new WebPage;
    view2.setPage(page3);

    QSignalSpy page3LoadStart(page3, &WebPage::loadStarted);
    page3->load(QUrl(QSL("qrc: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)