diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2009-03-23 09:18:55 (GMT) |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2009-03-23 09:18:55 (GMT) |
commit | e5fcad302d86d316390c6b0f62759a067313e8a9 (patch) | |
tree | c2afbf6f1066b6ce261f14341cf6d310e5595bc1 /tests/auto/q3socket | |
download | Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.zip Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.gz Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.bz2 |
Long live Qt 4.5!
Diffstat (limited to 'tests/auto/q3socket')
-rw-r--r-- | tests/auto/q3socket/.gitignore | 1 | ||||
-rw-r--r-- | tests/auto/q3socket/q3socket.pro | 6 | ||||
-rw-r--r-- | tests/auto/q3socket/tst_qsocket.cpp | 286 |
3 files changed, 293 insertions, 0 deletions
diff --git a/tests/auto/q3socket/.gitignore b/tests/auto/q3socket/.gitignore new file mode 100644 index 0000000..5f850b4 --- /dev/null +++ b/tests/auto/q3socket/.gitignore @@ -0,0 +1 @@ +tst_qsocket diff --git a/tests/auto/q3socket/q3socket.pro b/tests/auto/q3socket/q3socket.pro new file mode 100644 index 0000000..a9bf0c0 --- /dev/null +++ b/tests/auto/q3socket/q3socket.pro @@ -0,0 +1,6 @@ +load(qttest_p4) +SOURCES += tst_qsocket.cpp + +QT += network qt3support + + diff --git a/tests/auto/q3socket/tst_qsocket.cpp b/tests/auto/q3socket/tst_qsocket.cpp new file mode 100644 index 0000000..3d16471 --- /dev/null +++ b/tests/auto/q3socket/tst_qsocket.cpp @@ -0,0 +1,286 @@ +/**************************************************************************** +** +** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). +** Contact: Qt Software Information (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 either Technology Preview License Agreement or the +** Beta Release License Agreement. +** +** 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.0, included in the file LGPL_EXCEPTION.txt in this +** package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** If you are unsure which license is appropriate for your use, please +** contact the sales department at qt-sales@nokia.com. +** $QT_END_LICENSE$ +** +****************************************************************************/ + + +#include <QtTest/QtTest> + + +#include <qapplication.h> + + + + +#include <q3socket.h> +#include "../network-settings.h" +//TESTED_CLASS= +//TESTED_FILES=network/q3socket.h network/q3socket.cpp + +class tst_Q3Socket : public QObject +{ + Q_OBJECT + +public: + tst_Q3Socket(); + virtual ~tst_Q3Socket(); + + +public slots: + void initTestCase(); + void cleanupTestCase(); + void init(); + void cleanup(); +private slots: + void peerAddress_data(); + void peerAddress(); + void emitConnectionRefused(); + void readBufferSize(); + void connectionAttempts_data(); + void connectionAttempts(); + void canReadLine(); + +protected slots: + void peerAddress_connected(); + void peerAddress_connectionClosed(); + void emitConnectionRefused_error(int); + void connectionAttempts_connected(); + void connectionAttempts_error(int); + +private: + Q3Socket *socket; + + QHostAddress *peerAddress_addrConnected; + uint peerAddress_portConnected; + QHostAddress *peerAddress_addrClosed; + uint peerAddress_portClosed; + bool emitConnectionRefused_errorReceived; +}; + +tst_Q3Socket::tst_Q3Socket() +{ +} + +tst_Q3Socket::~tst_Q3Socket() +{ +} + +void tst_Q3Socket::initTestCase() +{ +} + +void tst_Q3Socket::cleanupTestCase() +{ +} + +void tst_Q3Socket::init() +{ +} + +void tst_Q3Socket::cleanup() +{ +} + +void tst_Q3Socket::peerAddress_data() +{ + QTest::addColumn<QString>("host"); + QTest::addColumn<uint>("port"); + QTest::addColumn<bool>("peerClosesConnection"); + QTest::addColumn<QString>("peerAddr"); + + QTest::newRow( "echo" ) << QString("qt-test-server.troll.no") << (uint)7 << false << QString("10.3.3.69"); + QTest::newRow( "daytime" ) << QString("qt-test-server.troll.no") << (uint)13 << true << QString("10.3.3.69"); +} + +void tst_Q3Socket::peerAddress() +{ + // init + QFETCH( QString, host ); + QFETCH( uint, port ); + QFETCH( QString, peerAddr ); + QFETCH( bool, peerClosesConnection ); + + socket = new Q3Socket; + connect( socket, SIGNAL(connected()), SLOT(peerAddress_connected()) ); + connect( socket, SIGNAL(connectionClosed()), SLOT(peerAddress_connectionClosed()) ); + + peerAddress_addrConnected = 0; + peerAddress_addrClosed = 0; + + // connect to host + socket->connectToHost( host, port ); + QTestEventLoop::instance().enterLoop( 30 ); + if ( QTestEventLoop::instance().timeout() && peerAddress_addrConnected==0 ) + QFAIL( "Connection timed out" ); + + // test + QHostAddress pa; + QVERIFY( pa.setAddress(peerAddr) ); + + QTEST( peerAddress_addrConnected->toString(), "peerAddr" ); // results in nicer output than the test below + QVERIFY( *peerAddress_addrConnected == pa ); + QCOMPARE( peerAddress_portConnected, port ); + + if ( peerClosesConnection ) { + QVERIFY( peerAddress_addrClosed != 0 ); + + QCOMPARE( peerAddress_addrClosed->toString(), QString() ); // results in nicer output than the test below + QVERIFY( *peerAddress_addrClosed == QHostAddress::Null ); + QCOMPARE( peerAddress_portClosed, (uint)0 ); + } else { + QVERIFY( peerAddress_addrClosed == 0 ); + } + + // cleanup + delete peerAddress_addrConnected; + delete peerAddress_addrClosed; + delete socket; +} + +void tst_Q3Socket::peerAddress_connected() +{ + peerAddress_addrConnected = new QHostAddress( socket->peerAddress() ); + peerAddress_portConnected = socket->peerPort(); + QTestEventLoop::instance().changeInterval( 5 ); // enough time to get the closed +} + +void tst_Q3Socket::peerAddress_connectionClosed() +{ + peerAddress_addrClosed = new QHostAddress( socket->peerAddress() ); + peerAddress_portClosed = socket->peerPort(); + QTestEventLoop::instance().exitLoop(); +} + +void tst_Q3Socket::emitConnectionRefused() +{ + Q3Socket sock; + connect( &sock, SIGNAL(error(int)), SLOT(emitConnectionRefused_error(int)) ); + sock.connectToHost( "ares.troll.no", 12331 ); + + emitConnectionRefused_errorReceived = false; + QTestEventLoop::instance().enterLoop( 30 ); + QVERIFY(emitConnectionRefused_errorReceived); +} + +void tst_Q3Socket::emitConnectionRefused_error( int signum ) +{ + if ( signum == Q3Socket::ErrConnectionRefused ) + emitConnectionRefused_errorReceived = true; + + QTestEventLoop::instance().exitLoop(); +} + +void tst_Q3Socket::readBufferSize() +{ + const int bufferSize = 1024; + + Q3Socket sock; + sock.setReadBufferSize(bufferSize); + QCOMPARE((int)sock.readBufferSize(), bufferSize); + + sock.connectToHost("localhost", 0); + + QCOMPARE((int)sock.readBufferSize(), bufferSize); +} + +void tst_Q3Socket::connectionAttempts_data() +{ + QTest::addColumn<QString>("host"); + QTest::addColumn<int>("port"); + QTest::addColumn<bool>("expectedResult"); + + QTest::newRow("fluke port 80") << QString("qt-test-server.troll.no") << 80 << true; + QTest::newRow("fluke port 79") << QString("qt-test-server.troll.no") << 79 << false; +} + +void tst_Q3Socket::connectionAttempts() +{ + QFETCH(QString, host); + QFETCH(int, port); + QFETCH(bool, expectedResult); + + Q3Socket sock; + sock.connectToHost(host, port); + connect(&sock, SIGNAL(connected()), SLOT(connectionAttempts_connected())); + connect(&sock, SIGNAL(error(int)), SLOT(connectionAttempts_error(int))); + QTestEventLoop::instance().enterLoop(10); + + if (QTestEventLoop::instance().timeout()) + return; + + QCOMPARE(sock.state() == Q3Socket::Connected, expectedResult); +} + +void tst_Q3Socket::connectionAttempts_connected() +{ + QTestEventLoop::instance().exitLoop(); +} + +void tst_Q3Socket::connectionAttempts_error(int) +{ + QTestEventLoop::instance().exitLoop(); +} + +void tst_Q3Socket::canReadLine() +{ + QEventLoop loop; + + Q3Socket socket; + QVERIFY(!socket.canReadLine()); + connect(&socket, SIGNAL(connected()), &loop, SLOT(quit())); + // timeout error will fail in #238 + connect(&socket, SIGNAL(error(int)), &loop, SLOT(quit())); + socket.connectToHost("qt-test-server.troll.no", 143); + + loop.exec(); + + QCOMPARE(socket.state(), Q3Socket::Connected); + + while (!socket.canReadLine()) + QVERIFY(socket.waitForMore(5000) > 0); + + QVERIFY(socket.canReadLine()); + socket.readLine(); + QVERIFY(!socket.canReadLine()); + socket.ungetChar('\n'); + QVERIFY(socket.canReadLine()); +} + +QTEST_MAIN(tst_Q3Socket) +#include "tst_qsocket.moc" |