diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-04-14 15:20:57 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-04-16 11:31:32 (GMT) |
commit | 94119f30748e21440275535f3d681e45e28183e4 (patch) | |
tree | d300f896dd35b9d76feff17278045b9a08e5f9d2 /tests | |
parent | 515edc27b0f9738fb3a95f0bb61633b6091fdd5e (diff) | |
download | Qt-94119f30748e21440275535f3d681e45e28183e4.zip Qt-94119f30748e21440275535f3d681e45e28183e4.tar.gz Qt-94119f30748e21440275535f3d681e45e28183e4.tar.bz2 |
Add two more blocking tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qtcpsocket_stresstest/tst_qtcpsocket_stresstest.cpp | 99 |
1 files changed, 98 insertions, 1 deletions
diff --git a/tests/auto/qtcpsocket_stresstest/tst_qtcpsocket_stresstest.cpp b/tests/auto/qtcpsocket_stresstest/tst_qtcpsocket_stresstest.cpp index aeada4c..1763158 100644 --- a/tests/auto/qtcpsocket_stresstest/tst_qtcpsocket_stresstest.cpp +++ b/tests/auto/qtcpsocket_stresstest/tst_qtcpsocket_stresstest.cpp @@ -52,6 +52,7 @@ class tst_QTcpSocket_stresstest : public QObject { Q_OBJECT public: + enum { AttemptCount = 100 }; tst_QTcpSocket_stresstest(); MiniHttpServer server; @@ -60,6 +61,8 @@ public slots: private Q_SLOTS: void blockingConnectDisconnect(); + void blockingPipelined(); + void blockingMultipleRequests(); }; tst_QTcpSocket_stresstest::tst_QTcpSocket_stresstest() @@ -81,7 +84,7 @@ void tst_QTcpSocket_stresstest::blockingConnectDisconnect() QFETCH_GLOBAL(QString, hostname); QFETCH_GLOBAL(int, port); - for (int i = 0; i < 50; ++i) { + for (int i = 0; i < AttemptCount; ++i) { qDebug("Attempt %d", i); QTcpSocket socket; socket.connectToHost(hostname, port); @@ -104,6 +107,100 @@ void tst_QTcpSocket_stresstest::blockingConnectDisconnect() } } +void tst_QTcpSocket_stresstest::blockingPipelined() +{ + QFETCH_GLOBAL(QString, hostname); + QFETCH_GLOBAL(int, port); + + for (int i = 0; i < AttemptCount / 2; ++i) { + QTcpSocket socket; + socket.connectToHost(hostname, port); + QVERIFY2(socket.waitForConnected(), "Timeout"); + + for (int j = 0 ; j < 3; ++j) { + qDebug("Attempt %d%c", i, 'a' + j); + socket.write("GET /qtest/bigfile HTTP/1.1\r\n" + "Connection: " + QByteArray(j == 2 ? "close" : "keep-alive") + "\r\n" + "User-Agent: tst_QTcpSocket_stresstest/1.0\r\n" + "Host: " + hostname.toLatin1() + "\r\n" + "\r\n"); + while (socket.bytesToWrite()) + QVERIFY2(socket.waitForBytesWritten(), "Timeout"); + } + + QElapsedTimer timeout; + timeout.start(); + while (socket.state() == QAbstractSocket::ConnectedState && !timeout.hasExpired(10000)) { + socket.waitForReadyRead(); + socket.readAll(); // discard + } + } +} + +void tst_QTcpSocket_stresstest::blockingMultipleRequests() +{ + QFETCH_GLOBAL(QString, hostname); + QFETCH_GLOBAL(int, port); + + for (int i = 0; i < AttemptCount / 5; ++i) { + QTcpSocket socket; + socket.connectToHost(hostname, port); + QVERIFY2(socket.waitForConnected(), "Timeout"); + + for (int j = 0 ; j < 5; ++j) { + qDebug("Attempt %d", i * 5 + j); + + socket.write("GET /qtest/bigfile HTTP/1.1\r\n" + "Connection: keep-alive\r\n" + "User-Agent: tst_QTcpSocket_stresstest/1.0\r\n" + "Host: " + hostname.toLatin1() + "\r\n" + "\r\n"); + while (socket.bytesToWrite()) + QVERIFY2(socket.waitForBytesWritten(), "Timeout"); + + QElapsedTimer timeout; + timeout.start(); + + qint64 bytesRead = 0; + qint64 bytesExpected = -1; + QByteArray buffer; + while (socket.state() == QAbstractSocket::ConnectedState && !timeout.hasExpired(10000)) { + socket.waitForReadyRead(); + buffer += socket.readAll(); + int pos = buffer.indexOf("\r\n\r\n"); + if (pos == -1) + continue; + + bytesRead = buffer.length() - pos - 1; + + buffer.truncate(pos); + buffer = buffer.toLower(); + pos = buffer.indexOf("\r\ncontent-length: "); + if (pos == -1) + break; + pos += strlen("\r\ncontent-length: "); + + int eol = buffer.indexOf("\r\n", pos + 2); + if (eol == -1) + break; + + bytesExpected = buffer.mid(pos, eol - pos).toLongLong(); + break; + } + QVERIFY2(!timeout.hasExpired(10000), "Timeout"); + + while (socket.state() == QAbstractSocket::ConnectedState && !timeout.hasExpired(10000) && bytesExpected > bytesRead) { + socket.waitForReadyRead(); + bytesRead += socket.read(bytesExpected - bytesRead).length(); // discard + } + QVERIFY2(!timeout.hasExpired(10000), "Timeout"); + } + + socket.disconnectFromHost(); + QVERIFY(socket.state() == QAbstractSocket::UnconnectedState); + } +} + QTEST_MAIN(tst_QTcpSocket_stresstest); #include "tst_qtcpsocket_stresstest.moc" |