89 lines
3.9 KiB
C++
89 lines
3.9 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2018 Simon Stürz <simon.stuerz@guh.io> *
|
|
* *
|
|
* This file is part of nymea-remoteproxy. *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation, either version 3 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* This program 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 program. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "engine.h"
|
|
#include "loggingcategories.h"
|
|
#include "remoteproxyconnection.h"
|
|
#include "nymea-remoteproxy-tests-online.h"
|
|
|
|
#include <QMetaType>
|
|
#include <QSignalSpy>
|
|
#include <QWebSocket>
|
|
#include <QJsonDocument>
|
|
#include <QWebSocketServer>
|
|
|
|
RemoteProxyOnlineTests::RemoteProxyOnlineTests(QObject *parent) :
|
|
BaseTest(parent)
|
|
{
|
|
m_authenticator = qobject_cast<Authenticator *>(m_awsAuthenticator);
|
|
}
|
|
|
|
void RemoteProxyOnlineTests::awsStaticCredentials()
|
|
{
|
|
startServer();
|
|
|
|
// Connect to the server (insecure disabled)
|
|
RemoteProxyConnection *connection = new RemoteProxyConnection(QUuid::createUuid(), "Test client one", this);
|
|
connect(connection, &RemoteProxyConnection::sslErrors, this, &BaseTest::ignoreConnectionSslError);
|
|
|
|
// Connect to server (insecue enabled for testing)
|
|
QSignalSpy readySpy(connection, &RemoteProxyConnection::ready);
|
|
QVERIFY(connection->connectServer(m_serverUrl));
|
|
readySpy.wait();
|
|
QVERIFY(readySpy.count() == 1);
|
|
QVERIFY(connection->isConnected());
|
|
QVERIFY(!connection->isRemoteConnected());
|
|
QVERIFY(connection->state() == RemoteProxyConnection::StateReady);
|
|
QVERIFY(connection->serverUrl() == m_serverUrl);
|
|
QVERIFY(connection->connectionType() == RemoteProxyConnection::ConnectionTypeWebSocket);
|
|
QVERIFY(connection->serverName() == SERVER_NAME_STRING);
|
|
QVERIFY(connection->proxyServerName() == Engine::instance()->serverName());
|
|
QVERIFY(connection->proxyServerVersion() == SERVER_VERSION_STRING);
|
|
QVERIFY(connection->proxyServerApiVersion() == API_VERSION_STRING);
|
|
|
|
QSignalSpy errorSpy(connection, &RemoteProxyConnection::errorOccured);
|
|
QSignalSpy spyDisconnected(connection, &RemoteProxyConnection::disconnected);
|
|
|
|
QVERIFY(connection->authenticate("foobar"));
|
|
errorSpy.wait();
|
|
QVERIFY(errorSpy.count() == 1);
|
|
QVERIFY(connection->error() == QAbstractSocket::ProxyAuthenticationRequiredError);
|
|
|
|
// Disconnect and clean up
|
|
connection->disconnectServer();
|
|
// FIXME: check why it waits the full time here
|
|
spyDisconnected.wait(100);
|
|
QVERIFY(spyDisconnected.count() == 1);
|
|
QVERIFY(!connection->isConnected());
|
|
|
|
connection->deleteLater();
|
|
|
|
stopServer();
|
|
}
|
|
|
|
void RemoteProxyOnlineTests::awsDynamicCredentials()
|
|
{
|
|
|
|
|
|
}
|
|
|
|
QTEST_MAIN(RemoteProxyOnlineTests)
|