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
|
/*
basequicktest.h
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2017 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Filipe Azevedo <filipe.azevedo@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#ifndef BASEQUICKTEST_H
#define BASEQUICKTEST_H
#include "baseprobetest.h"
#include <QQuickView>
#include <QSignalSpy>
#include <memory>
using namespace GammaRay;
class BaseQuickTest : public BaseProbeTest
{
Q_OBJECT
public:
explicit BaseQuickTest(QObject *parent = nullptr)
: BaseProbeTest(parent)
{
}
private:
std::unique_ptr<QQuickView> m_view;
bool m_exposed = false;
protected slots:
virtual void init()
{
createProbe();
m_exposed = false;
m_view.reset(new QQuickView);
m_view->setResizeMode(QQuickView::SizeViewToRootObject);
QTest::qWait(1); // event loop re-entry
}
virtual void cleanup()
{
m_exposed = false;
m_view.reset();
QTest::qWait(1);
}
protected:
virtual bool ignoreNonExposedView() const
{
return false;
}
bool isViewExposed() const
{
return m_exposed;
}
bool showSource(const QString &sourceFile)
{
QSignalSpy renderSpy(m_view.get(), &QQuickWindow::frameSwapped);
Q_ASSERT(renderSpy.isValid());
m_view->setSource(QUrl(sourceFile));
m_view->show();
m_exposed = QTest::qWaitForWindowExposed(m_view.get());
if (!m_exposed) {
qWarning() << "Unable to expose window, probably running tests on a headless system - ignoring all following render failures.";
if (!ignoreNonExposedView())
return false;
}
// wait at least two frames so we have the final window size with all render loop/driver combinations...
QTest::qWait(100);
if (!(!renderSpy.isEmpty() || renderSpy.wait())) {
qWarning() << Q_FUNC_INFO << "got no frameSwapped signal!";
}
renderSpy.clear();
m_view->update();
return (ignoreNonExposedView() && !m_exposed) || (renderSpy.wait() || !renderSpy.isEmpty());
}
QQuickView *view() const
{
return m_view.get();
}
};
#endif // BASEQUICKTEST_H
|