From b6dc12bbb5059441363dcea3bcae94d17da482ec Mon Sep 17 00:00:00 2001 From: Szabolcs David Date: Tue, 14 Jul 2015 02:37:26 -0700 Subject: Move loadVisuallyCommitted signal to the test support API Change-Id: I877bbd8bc5c710370f135a27bcd7f0f7c95a7292 Reviewed-by: Joerg Bornemann --- .../tst_qquickwebengineviewgraphics.cpp | 13 +++++++++++-- tests/auto/quick/shared/util.h | 11 ++++++++++- tests/auto/quick/tests.pri | 4 ++++ 3 files changed, 25 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/quick/qquickwebengineviewgraphics/tst_qquickwebengineviewgraphics.cpp b/tests/auto/quick/qquickwebengineviewgraphics/tst_qquickwebengineviewgraphics.cpp index 6fd967d5a..bb09f890e 100644 --- a/tests/auto/quick/qquickwebengineviewgraphics/tst_qquickwebengineviewgraphics.cpp +++ b/tests/auto/quick/qquickwebengineviewgraphics/tst_qquickwebengineviewgraphics.cpp @@ -47,6 +47,7 @@ #include #include #include +#include #include class TestView : public QQuickView { @@ -91,6 +92,9 @@ private Q_SLOTS: private: void setHtml(const QString &html); QScopedPointer m_view; +#ifdef ENABLE_QML_TESTSUPPORT_API + QScopedPointer m_testSupport; +#endif }; static const QString greenSquare("
"); @@ -121,6 +125,9 @@ tst_QQuickWebEngineViewGraphics::~tst_QQuickWebEngineViewGraphics() void tst_QQuickWebEngineViewGraphics::initTestCase() { QtWebEngine::initialize(); +#ifdef ENABLE_QML_TESTSUPPORT_API + m_testSupport.reset(new QQuickWebEngineTestSupport); +#endif } void tst_QQuickWebEngineViewGraphics::init() @@ -196,9 +203,11 @@ void tst_QQuickWebEngineViewGraphics::setHtml(const QString &html) m_view->create(); QQuickWebEngineView *webEngineView = static_cast(m_view->rootObject()); - QSignalSpy spy(reinterpret_cast(webEngineView->experimental()), SIGNAL(loadVisuallyCommitted())); webEngineView->setProperty("url", QUrl(QStringLiteral("data:text/html,%1").arg(htmlData))); - QVERIFY(!spy.isEmpty() || spy.wait()); +#ifdef ENABLE_QML_TESTSUPPORT_API + webEngineView->setTestSupport(m_testSupport.data()); +#endif + QVERIFY(waitForViewportReady(webEngineView)); QCOMPARE(m_view->rootObject()->property("loading"), QVariant(false)); } diff --git a/tests/auto/quick/shared/util.h b/tests/auto/quick/shared/util.h index 8f7a85f68..66b42d010 100644 --- a/tests/auto/quick/shared/util.h +++ b/tests/auto/quick/shared/util.h @@ -119,7 +119,16 @@ inline bool waitForLoadFailed(QQuickWebEngineView *webEngineView, int timeout = inline bool waitForViewportReady(QQuickWebEngineView *webEngineView, int timeout = 10000) { - return waitForSignal(reinterpret_cast(webEngineView->experimental()), SIGNAL(loadVisuallyCommitted()), timeout); +#ifdef ENABLE_QML_TESTSUPPORT_API + return waitForSignal(reinterpret_cast(webEngineView->testSupport()), SIGNAL(loadVisuallyCommitted()), timeout); +#else + Q_UNUSED(webEngineView) + Q_UNUSED(timeout) + qFatal("Test Support API is disabled. The result is not reliable.\ + Use the following command to build Test Support module and rebuild WebEngineView API:\ + qmake -r WEBENGINE_CONFIG+=testsupport && make"); + return false; +#endif } #endif /* UTIL_H */ diff --git a/tests/auto/quick/tests.pri b/tests/auto/quick/tests.pri index 3c56aef97..efe9ff9d0 100644 --- a/tests/auto/quick/tests.pri +++ b/tests/auto/quick/tests.pri @@ -17,3 +17,7 @@ macx: CONFIG -= app_bundle # This define is used by some tests to look up resources in the source tree DEFINES += TESTS_SOURCE_DIR=\\\"$$PWD/\\\" + +isQMLTestSupportApiEnabled() { + DEFINES += ENABLE_QML_TESTSUPPORT_API +} -- cgit v1.2.3