126 lines
5.0 KiB
C++
126 lines
5.0 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright 2013 - 2023, nymea GmbH
|
|
* Contact: contact@nymea.io
|
|
*
|
|
* This file is part of nymea.
|
|
* This project including source code and documentation is protected by copyright law, and
|
|
* remains the property of nymea GmbH. All rights, including reproduction, publication,
|
|
* editing and translation, are reserved. The use of this project is subject to the terms of a
|
|
* license agreement to be concluded with nymea GmbH in accordance with the terms
|
|
* of use of nymea GmbH, available under https://nymea.io/license
|
|
*
|
|
* GNU General Public License Usage
|
|
* Alternatively, this project may be redistributed and/or modified under
|
|
* the terms of the GNU General Public License as published by the Free Software Foundation,
|
|
* GNU version 3. this project 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 project.
|
|
* If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* For any further details and any questions please contact us under contact@nymea.io
|
|
* or see our FAQ/Licensing Information on https://nymea.io/license/faq
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef BASETEST_H
|
|
#define BASETEST_H
|
|
|
|
#include <QObject>
|
|
#include <QtTest>
|
|
#include <QSslKey>
|
|
#include <QObject>
|
|
#include <QWebSocket>
|
|
#include <QHostAddress>
|
|
#include <QSslCertificate>
|
|
#include <QSslConfiguration>
|
|
|
|
#include "jsonrpc/jsontypes.h"
|
|
#include "proxyconfiguration.h"
|
|
|
|
using namespace remoteproxy;
|
|
|
|
class BaseTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit BaseTest(QObject *parent = nullptr);
|
|
|
|
protected:
|
|
ProxyConfiguration *m_configuration = nullptr;
|
|
|
|
QUrl m_serverUrlTunnelProxyWebSocket = QUrl("wss://127.0.0.1:2212");
|
|
QUrl m_serverUrlTunnelProxyTcp = QUrl("ssl://127.0.0.1:2213");
|
|
|
|
QSslConfiguration m_sslConfiguration;
|
|
|
|
QString m_testToken;
|
|
|
|
int m_commandCounter = 0;
|
|
|
|
void loadConfiguration(const QString &fileName);
|
|
|
|
void resetDebugCategories();
|
|
void addDebugCategory(const QString &debugCategory);
|
|
|
|
void cleanUpEngine();
|
|
void restartEngine();
|
|
void startEngine();
|
|
void startServer();
|
|
void stopServer();
|
|
|
|
QVariant invokeWebSocketTunnelProxyApiCall(const QString &method, const QVariantMap params = QVariantMap());
|
|
QVariant injectWebSocketTunnelProxyData(const QByteArray &data);
|
|
|
|
QVariant invokeTcpSocketTunnelProxyApiCall(const QString &method, const QVariantMap params = QVariantMap());
|
|
QVariant injectTcpSocketTunnelProxyData(const QByteArray &data);
|
|
|
|
QPair<QVariant, QSslSocket *> invokeTcpSocketTunnelProxyApiCallPersistant(const QString &method, const QVariantMap params = QVariantMap(), bool slipEnabled = false, QSslSocket *existingSocket = nullptr);
|
|
QPair<QVariant, QWebSocket *> invokeWebSocketTunnelProxyApiCallPersistant(const QString &method, const QVariantMap params = QVariantMap(), bool slipEnabled = false, QWebSocket *existingSocket = nullptr);
|
|
|
|
|
|
bool createRemoteConnection(const QString &token, const QString &nonce, QObject *parent);
|
|
|
|
protected slots:
|
|
void initTestCase();
|
|
void cleanupTestCase();
|
|
|
|
public slots:
|
|
inline void sslSocketSslErrors(const QList<QSslError> &) {
|
|
QSslSocket *socket = static_cast<QSslSocket *>(sender());
|
|
socket->ignoreSslErrors();
|
|
}
|
|
|
|
inline void sslErrors(const QList<QSslError> &) {
|
|
QWebSocket *socket = static_cast<QWebSocket *>(sender());
|
|
socket->ignoreSslErrors();
|
|
}
|
|
|
|
inline void verifyError(const QVariant &response, const QString &fieldName, const QString &error) {
|
|
QJsonDocument jsonDoc = QJsonDocument::fromVariant(response);
|
|
QVERIFY2(response.toMap().value("status").toString() == QString("success"),
|
|
QString("\nExpected status: \"success\"\nGot: %2\nFull message: %3")
|
|
.arg(response.toMap().value("status").toString())
|
|
.arg(jsonDoc.toJson().data())
|
|
.toLatin1().data());
|
|
QVERIFY2(response.toMap().value("params").toMap().value(fieldName).toString() == error,
|
|
QString("\nExpected: %1\nGot: %2\nFull message: %3\n")
|
|
.arg(error)
|
|
.arg(response.toMap().value("params").toMap().value(fieldName).toString())
|
|
.arg(jsonDoc.toJson().data())
|
|
.toLatin1().data());
|
|
}
|
|
|
|
inline void verifyTunnelProxyError(const QVariant &response, TunnelProxyServer::TunnelProxyError error = TunnelProxyServer::TunnelProxyErrorNoError) {
|
|
verifyError(response, "tunnelProxyError", JsonTypes::tunnelProxyErrorToString(error));
|
|
}
|
|
|
|
private:
|
|
QString m_defaultDebugCategories = "*.debug=false\ndefault.debug=true\nApplication.debug=true\n";
|
|
QString m_currentDebugCategories;
|
|
};
|
|
|
|
#endif // BASETEST_H
|