| 1 | /**************************************************************************** |
| 2 | ** |
| 3 | ** Copyright (C) 2020 The Qt Company Ltd. |
| 4 | ** Contact: https://www.qt.io/licensing/ |
| 5 | ** |
| 6 | ** This file is part of the test suite of the Qt Toolkit. |
| 7 | ** |
| 8 | ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ |
| 9 | ** Commercial License Usage |
| 10 | ** Licensees holding valid commercial Qt licenses may use this file in |
| 11 | ** accordance with the commercial license agreement provided with the |
| 12 | ** Software or, alternatively, in accordance with the terms contained in |
| 13 | ** a written agreement between you and The Qt Company. For licensing terms |
| 14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
| 15 | ** information use the contact form at https://www.qt.io/contact-us. |
| 16 | ** |
| 17 | ** GNU General Public License Usage |
| 18 | ** Alternatively, this file may be used under the terms of the GNU |
| 19 | ** General Public License version 3 as published by the Free Software |
| 20 | ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT |
| 21 | ** included in the packaging of this file. Please review the following |
| 22 | ** information to ensure the GNU General Public License requirements will |
| 23 | ** be met: https://www.gnu.org/licenses/gpl-3.0.html. |
| 24 | ** |
| 25 | ** $QT_END_LICENSE$ |
| 26 | ** |
| 27 | ****************************************************************************/ |
| 28 | |
| 29 | //QQmlDebugTest |
| 30 | #include <debugutil_p.h> |
| 31 | #include <qqmldebugprocess_p.h> |
| 32 | |
| 33 | #include <private/qqmldebugclient_p.h> |
| 34 | #include <private/qqmldebugtranslationclient_p.h> |
| 35 | #include <private/qqmldebugconnection_p.h> |
| 36 | #include <private/qpacket_p.h> |
| 37 | |
| 38 | #include <QtCore/qstring.h> |
| 39 | #include <QtCore/qlibraryinfo.h> |
| 40 | #include <QtTest/qtest.h> |
| 41 | |
| 42 | const char *QMLFILE = "test.qml" ; |
| 43 | |
| 44 | class tst_QQmlDebugTranslationService : public QQmlDebugTest |
| 45 | { |
| 46 | Q_OBJECT |
| 47 | |
| 48 | private slots: |
| 49 | void pluginConnection(); |
| 50 | |
| 51 | private: |
| 52 | QList<QQmlDebugClient *> createClients() override; |
| 53 | QPointer<QQmlDebugTranslationClient> m_client; |
| 54 | }; |
| 55 | |
| 56 | QList<QQmlDebugClient *> tst_QQmlDebugTranslationService::createClients() |
| 57 | { |
| 58 | m_client = new QQmlDebugTranslationClient(m_connection); |
| 59 | |
| 60 | QObject::connect(sender: m_client, signal: &QQmlDebugClient::stateChanged, context: m_client, slot: [this](QQmlDebugClient::State newState) { |
| 61 | QCOMPARE(newState, m_client->state()); |
| 62 | }); |
| 63 | |
| 64 | return {m_client}; |
| 65 | } |
| 66 | |
| 67 | void tst_QQmlDebugTranslationService::pluginConnection() |
| 68 | { |
| 69 | auto executable = QLibraryInfo::location(QLibraryInfo::BinariesPath) + "/qml" ; |
| 70 | auto services = "DebugTranslation" ; |
| 71 | auto = testFile(fileName: QMLFILE); |
| 72 | auto block = true; |
| 73 | |
| 74 | auto result = QQmlDebugTest::connectTo(executable, services, extraArgs, block); |
| 75 | QCOMPARE(result, ConnectSuccess); |
| 76 | } |
| 77 | |
| 78 | QTEST_MAIN(tst_QQmlDebugTranslationService) |
| 79 | |
| 80 | #include "tst_qqmldebugtranslationservice.moc" |
| 81 | |