2018-11-05 05:25:31 +08:00
|
|
|
/*
|
2019-06-24 22:01:18 +08:00
|
|
|
Copyright © 2018-2019 by The qTox Project Contributors
|
2018-11-05 05:25:31 +08:00
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
qTox is libre 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.
|
|
|
|
|
|
|
|
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "src/net/bootstrapnodeupdater.h"
|
2020-05-02 13:05:43 +08:00
|
|
|
#include "src/persistence/paths.h"
|
2018-11-05 05:25:31 +08:00
|
|
|
|
|
|
|
#include <QNetworkProxy>
|
|
|
|
#include <QSignalSpy>
|
|
|
|
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
|
|
|
|
// Needed to make this type known to Qt
|
2020-04-13 16:06:30 +08:00
|
|
|
Q_DECLARE_METATYPE(QList<DhtServer>)
|
2018-11-05 05:25:31 +08:00
|
|
|
|
|
|
|
class TestBootstrapNodesUpdater : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
TestBootstrapNodesUpdater();
|
|
|
|
private slots:
|
|
|
|
void testOnline();
|
2019-02-25 04:41:15 +08:00
|
|
|
void testLocal();
|
2018-11-05 05:25:31 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
TestBootstrapNodesUpdater::TestBootstrapNodesUpdater()
|
|
|
|
{
|
|
|
|
qRegisterMetaType<QList<DhtServer>>("QList<DhtServer>");
|
2019-02-25 04:41:15 +08:00
|
|
|
// Contains the builtin nodes list
|
|
|
|
Q_INIT_RESOURCE(res);
|
2018-11-05 05:25:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestBootstrapNodesUpdater::testOnline()
|
|
|
|
{
|
|
|
|
QNetworkProxy proxy{QNetworkProxy::ProxyType::NoProxy};
|
2022-02-10 12:19:29 +08:00
|
|
|
Paths paths{Paths::Portable::NonPortable};
|
2020-05-02 13:06:03 +08:00
|
|
|
|
2022-02-10 12:19:29 +08:00
|
|
|
BootstrapNodeUpdater updater{proxy, paths};
|
2018-11-05 05:25:31 +08:00
|
|
|
QSignalSpy spy(&updater, &BootstrapNodeUpdater::availableBootstrapNodes);
|
|
|
|
|
|
|
|
updater.requestBootstrapNodes();
|
|
|
|
|
2019-06-27 15:32:27 +08:00
|
|
|
spy.wait(10000); // increase wait time for speradic CI failures with slow nodes server
|
2018-11-05 05:25:31 +08:00
|
|
|
QCOMPARE(spy.count(), 1); // make sure the signal was emitted exactly one time
|
|
|
|
QList<DhtServer> result = qvariant_cast<QList<DhtServer>>(spy.at(0).at(0));
|
|
|
|
QVERIFY(result.size() > 0); // some data should be returned
|
|
|
|
}
|
|
|
|
|
2019-02-25 04:41:15 +08:00
|
|
|
void TestBootstrapNodesUpdater::testLocal()
|
|
|
|
{
|
|
|
|
QList<DhtServer> defaultNodes = BootstrapNodeUpdater::loadDefaultBootstrapNodes();
|
|
|
|
QVERIFY(defaultNodes.size() > 0);
|
|
|
|
}
|
|
|
|
|
2018-11-05 05:25:31 +08:00
|
|
|
QTEST_GUILESS_MAIN(TestBootstrapNodesUpdater)
|
|
|
|
#include "bsu_test.moc"
|