/**************************************************************************** ** ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the test suite of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #pragma once #include "corecompositor.h" #include "coreprotocol.h" #include "datadevice.h" #include "layershell.h" #include "outputorder.h" #include "xdgoutputv1.h" #include "xdgshell.h" #include namespace MockCompositor { class DefaultCompositor : public CoreCompositor { public: explicit DefaultCompositor(); // Convenience functions Output *output(int i = 0) { return getAll().value(i, nullptr); } Pointer *pointer() { auto *seat = get(); Q_ASSERT(seat); return seat->m_pointer; } Touch *touch() { auto *seat = get(); Q_ASSERT(seat); return seat->m_touch; } Surface *cursorSurface() { auto *p = pointer(); return p ? p->cursorSurface() : nullptr; } Keyboard *keyboard() { auto *seat = get(); Q_ASSERT(seat); return seat->m_keyboard; } Surface *surface(int i = 0) { return get()->m_surfaces.value(i, nullptr); } XdgSurface *xdgSurface(int i = 0) { return get()->m_xdgSurfaces.value(i, nullptr); } XdgToplevel *xdgToplevel(int i = 0) { return get()->toplevel(i); } XdgPopup *xdgPopup(int i = 0) { return get()->popup(i); } XdgOutputV1 *xdgOutput(Output *out) { return get()->getXdgOutput(out); } uint sendXdgShellPing(); void xdgPingAndWaitForPong(); OutputOrder *outputOrder() { auto *order = get(); Q_ASSERT(order); return order; } LayerShell *layerShell() { auto *shell = get(); Q_ASSERT(shell); return shell; } // Things that can be changed run-time without confusing the client (i.e. don't require separate tests) struct Config { bool autoEnter = true; bool autoRelease = true; bool autoConfigure = false; } m_config; void resetConfig() { exec([&] { m_config = Config{}; }); } }; // addOutput(OutputData) } // namespace MockCompositor #define QCOMPOSITOR_VERIFY(expr) \ QVERIFY(exec([&] { \ return expr; \ })) #define QCOMPOSITOR_TRY_VERIFY(expr) \ QTRY_VERIFY(exec([&] { \ return expr; \ })) #define QCOMPOSITOR_COMPARE(expr, expr2) \ QCOMPARE(exec([&] { \ return expr; \ }), \ expr2) #define QCOMPOSITOR_TRY_COMPARE(expr, expr2) \ QTRY_COMPARE(exec([&] { \ return expr; \ }), \ expr2) #define QCOMPOSITOR_TEST_MAIN(test) \ int main(int argc, char **argv) \ { \ QTemporaryDir tmpRuntimeDir; \ setenv("XDG_RUNTIME_DIR", tmpRuntimeDir.path().toLocal8Bit().constData(), 1); \ setenv("XDG_CURRENT_DESKTOP", "qtwaylandtests", 1); \ setenv("QT_QPA_PLATFORM", "wayland", 1); \ test tc; \ QApplication app(argc, argv); \ return QTest::qExec(&tc, argc, argv); \ }