summaryrefslogtreecommitdiffstats
path: root/tests/auto/qnetworkinterface
diff options
context:
space:
mode:
authorQt by Nokia <qt-info@nokia.com>2011-04-27 12:05:43 +0200
committeraxis <qt-info@nokia.com>2011-04-27 12:05:43 +0200
commit38be0d13830efd2d98281c645c3a60afe05ffece (patch)
tree6ea73f3ec77f7d153333779883e8120f82820abe /tests/auto/qnetworkinterface
Initial import from the monolithic Qt.
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
Diffstat (limited to 'tests/auto/qnetworkinterface')
-rw-r--r--tests/auto/qnetworkinterface/.gitignore1
-rw-r--r--tests/auto/qnetworkinterface/qnetworkinterface.pro7
-rw-r--r--tests/auto/qnetworkinterface/tst_qnetworkinterface.cpp241
3 files changed, 249 insertions, 0 deletions
diff --git a/tests/auto/qnetworkinterface/.gitignore b/tests/auto/qnetworkinterface/.gitignore
new file mode 100644
index 0000000000..237bc6d0db
--- /dev/null
+++ b/tests/auto/qnetworkinterface/.gitignore
@@ -0,0 +1 @@
+tst_qnetworkinterface
diff --git a/tests/auto/qnetworkinterface/qnetworkinterface.pro b/tests/auto/qnetworkinterface/qnetworkinterface.pro
new file mode 100644
index 0000000000..1c5feee3f2
--- /dev/null
+++ b/tests/auto/qnetworkinterface/qnetworkinterface.pro
@@ -0,0 +1,7 @@
+load(qttest_p4)
+SOURCES += tst_qnetworkinterface.cpp
+
+QT = core network
+
+symbian: TARGET.CAPABILITY = NetworkServices
+
diff --git a/tests/auto/qnetworkinterface/tst_qnetworkinterface.cpp b/tests/auto/qnetworkinterface/tst_qnetworkinterface.cpp
new file mode 100644
index 0000000000..c630ecab93
--- /dev/null
+++ b/tests/auto/qnetworkinterface/tst_qnetworkinterface.cpp
@@ -0,0 +1,241 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+
+#include <QtTest/QtTest>
+
+#include <qcoreapplication.h>
+#include <qnetworkinterface.h>
+#include <qtcpsocket.h>
+#include <QNetworkConfigurationManager>
+#include <QNetworkSession>
+#include "../network-settings.h"
+
+//TESTED_FILES=qnetworkinterface.cpp qnetworkinterface.h qnetworkinterface_unix.cpp qnetworkinterface_win.cpp
+
+class tst_QNetworkInterface : public QObject
+{
+ Q_OBJECT
+
+public:
+ tst_QNetworkInterface();
+ virtual ~tst_QNetworkInterface();
+
+private slots:
+ void initTestCase();
+ void cleanupTestCase();
+ void dump();
+ void loopbackIPv4();
+ void loopbackIPv6();
+ void localAddress();
+ void interfaceFromXXX();
+ void copyInvalidInterface();
+
+private:
+#ifndef QT_NO_BEARER_MANAGEMENT
+ QNetworkConfigurationManager *netConfMan;
+ QNetworkConfiguration networkConfiguration;
+ QScopedPointer<QNetworkSession> networkSession;
+#endif
+};
+
+tst_QNetworkInterface::tst_QNetworkInterface()
+{
+}
+
+tst_QNetworkInterface::~tst_QNetworkInterface()
+{
+}
+
+void tst_QNetworkInterface::initTestCase()
+{
+#ifndef QT_NO_BEARERMANAGEMENT
+ netConfMan = new QNetworkConfigurationManager(this);
+ networkConfiguration = netConfMan->defaultConfiguration();
+ networkSession.reset(new QNetworkSession(networkConfiguration));
+ if (!networkSession->isOpen()) {
+ networkSession->open();
+ QVERIFY(networkSession->waitForOpened(30000));
+ }
+#endif
+}
+
+void tst_QNetworkInterface::cleanupTestCase()
+{
+#ifndef QT_NO_BEARERMANAGEMENT
+ if (networkSession && networkSession->isOpen()) {
+ networkSession->close();
+ }
+#endif
+}
+
+void tst_QNetworkInterface::dump()
+{
+ // This is for manual testing:
+ QList<QNetworkInterface> allInterfaces = QNetworkInterface::allInterfaces();
+ foreach (const QNetworkInterface &i, allInterfaces) {
+ QString flags;
+ if (i.flags() & QNetworkInterface::IsUp) flags += "Up,";
+ if (i.flags() & QNetworkInterface::IsRunning) flags += "Running,";
+ if (i.flags() & QNetworkInterface::CanBroadcast) flags += "Broadcast,";
+ if (i.flags() & QNetworkInterface::IsLoopBack) flags += "Loopback,";
+ if (i.flags() & QNetworkInterface::IsPointToPoint) flags += "PointToPoint,";
+ if (i.flags() & QNetworkInterface::CanMulticast) flags += "Multicast,";
+ flags.chop(1); // drop last comma
+
+ QString friendlyName = i.humanReadableName();
+ if (friendlyName != i.name()) {
+ friendlyName.prepend('(');
+ friendlyName.append(')');
+ } else {
+ friendlyName.clear();
+ }
+ qDebug() << "Interface: " << i.name() << qPrintable(friendlyName);
+ QVERIFY(i.isValid());
+
+ qDebug() << " index: " << i.index();
+ qDebug() << " flags: " << qPrintable(flags);
+ qDebug() << " hw address:" << qPrintable(i.hardwareAddress());
+
+ int count = 0;
+ foreach (const QNetworkAddressEntry &e, i.addressEntries()) {
+ QDebug s = qDebug();
+ s.nospace() << " address "
+ << qSetFieldWidth(2) << count++ << qSetFieldWidth(0);
+ s.nospace() << ": " << qPrintable(e.ip().toString());
+ if (!e.netmask().isNull())
+ s.nospace() << '/' << e.prefixLength()
+ << " (" << qPrintable(e.netmask().toString()) << ")";
+ if (!e.broadcast().isNull())
+ s.nospace() << " broadcast " << qPrintable(e.broadcast().toString());
+ }
+ }
+}
+
+void tst_QNetworkInterface::loopbackIPv4()
+{
+ QList<QHostAddress> all = QNetworkInterface::allAddresses();
+ QVERIFY(all.contains(QHostAddress(QHostAddress::LocalHost)));
+}
+
+void tst_QNetworkInterface::loopbackIPv6()
+{
+ QList<QHostAddress> all = QNetworkInterface::allAddresses();
+
+ bool loopbackfound = false;
+ bool anyIPv6 = false;
+ foreach (QHostAddress addr, all)
+ if (addr == QHostAddress::LocalHostIPv6) {
+ loopbackfound = true;
+ anyIPv6 = true;
+ break;
+ } else if (addr.protocol() == QAbstractSocket::IPv6Protocol)
+ anyIPv6 = true;
+
+ QVERIFY(!anyIPv6 || loopbackfound);
+}
+
+void tst_QNetworkInterface::localAddress()
+{
+ QTcpSocket socket;
+ socket.connectToHost(QtNetworkSettings::serverName(), 80);
+ QVERIFY(socket.waitForConnected(5000));
+
+ QHostAddress local = socket.localAddress();
+
+ // make Apache happy on fluke
+ socket.write("GET / HTTP/1.0\r\n\r\n");
+ socket.waitForBytesWritten(1000);
+ socket.close();
+
+ // test that we can find the address that QTcpSocket reported
+ QList<QHostAddress> all = QNetworkInterface::allAddresses();
+ QVERIFY(all.contains(local));
+}
+
+void tst_QNetworkInterface::interfaceFromXXX()
+{
+ QList<QNetworkInterface> allInterfaces = QNetworkInterface::allInterfaces();
+
+ foreach (QNetworkInterface iface, allInterfaces) {
+ QVERIFY(QNetworkInterface::interfaceFromName(iface.name()).isValid());
+ foreach (QNetworkAddressEntry entry, iface.addressEntries()) {
+ QVERIFY(!entry.ip().isNull());
+
+ if (!entry.netmask().isNull()) {
+ QCOMPARE(entry.netmask().protocol(), entry.ip().protocol());
+
+ // if the netmask is known, the broadcast is known
+ // but only for IPv4 (there is no such thing as broadcast in IPv6)
+ if (entry.ip().protocol() == QAbstractSocket::IPv4Protocol) {
+ QVERIFY(!entry.broadcast().isNull());
+
+ // verify that the broadcast address is correct
+ quint32 ip = entry.ip().toIPv4Address();
+ quint32 mask = entry.netmask().toIPv4Address();
+ quint32 bcast = entry.broadcast().toIPv4Address();
+
+ QCOMPARE(bcast, ip | ~mask);
+ }
+ }
+
+ if (!entry.broadcast().isNull())
+ QCOMPARE(entry.broadcast().protocol(), entry.ip().protocol());
+ }
+ }
+}
+
+void tst_QNetworkInterface::copyInvalidInterface()
+{
+ // Force a copy of an interfaces that isn't likely to exist
+ QNetworkInterface i = QNetworkInterface::interfaceFromName("plopp");
+ QVERIFY(!i.isValid());
+
+ QCOMPARE(i.index(), 0);
+ QVERIFY(i.name().isEmpty());
+ QVERIFY(i.humanReadableName().isEmpty());
+ QVERIFY(i.hardwareAddress().isEmpty());
+ QCOMPARE(int(i.flags()), 0);
+ QVERIFY(i.addressEntries().isEmpty());
+}
+
+QTEST_MAIN(tst_QNetworkInterface)
+#include "tst_qnetworkinterface.moc"