Return to eventloop after emitting encrypted

When the connection has been encrypted we will,
in QHttpNetworkConnectionChannel::_q_encrypted, emit 'reply->encrypted'
in which user slots can be called.

In the event that the user calls abort it will, however, not abort until
the next time it goes back to the event loop (which might not happen
until after the request has already been sent).

Task-number: QTBUG-65960
Change-Id: I96865f83c47f89deb9f644c86a71948dbb0ec0d0
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
This commit is contained in:
Mårten Nordheim 2018-07-30 17:16:01 +02:00
parent f43e947dc4
commit 2dfa41e0ea
3 changed files with 48 additions and 1 deletions

View File

@ -251,6 +251,20 @@ bool QHttpNetworkConnectionChannel::sendRequest()
return protocolHandler->sendRequest();
}
/*
* Invoke "protocolHandler->sendRequest" using a queued connection.
* It's used to return to the event loop before invoking sendRequest when
* there's a very real chance that the request could have been aborted
* (i.e. after having emitted 'encrypted').
*/
void QHttpNetworkConnectionChannel::sendRequestDelayed()
{
QMetaObject::invokeMethod(this, [this] {
Q_ASSERT(!protocolHandler.isNull());
if (reply)
protocolHandler->sendRequest();
}, Qt::ConnectionType::QueuedConnection);
}
void QHttpNetworkConnectionChannel::_q_receiveReply()
{
@ -1234,7 +1248,7 @@ void QHttpNetworkConnectionChannel::_q_encrypted()
emit reply->encrypted();
}
if (reply)
sendRequest();
sendRequestDelayed();
}
}

View File

@ -174,6 +174,7 @@ public:
void abort();
bool sendRequest();
void sendRequestDelayed();
bool ensureConnection();

View File

@ -392,6 +392,7 @@ private Q_SLOTS:
void ignoreSslErrorsListWithSlot_data();
void ignoreSslErrorsListWithSlot();
void encrypted();
void abortOnEncrypted();
void sslConfiguration_data();
void sslConfiguration();
#ifdef QT_BUILD_INTERNAL
@ -6244,6 +6245,37 @@ void tst_QNetworkReply::encrypted()
reply->deleteLater();
}
void tst_QNetworkReply::abortOnEncrypted()
{
SslServer server;
server.listen();
if (!server.isListening())
QSKIP("Server fails to listen. Skipping since QTcpServer is covered in another test.");
server.connect(&server, &SslServer::newEncryptedConnection, [&server]() {
connect(server.socket, &QTcpSocket::readyRead, server.socket, []() {
// This slot must not be invoked!
QVERIFY(false);
});
});
QNetworkAccessManager nm;
QNetworkReply *reply = nm.get(QNetworkRequest(QUrl(QString("https://localhost:%1").arg(server.serverPort()))));
reply->ignoreSslErrors();
connect(reply, &QNetworkReply::encrypted, [reply, &nm]() {
reply->abort();
nm.clearConnectionCache();
});
QSignalSpy spyEncrypted(reply, &QNetworkReply::encrypted);
QTRY_COMPARE(spyEncrypted.count(), 1);
// Wait for the socket to be closed again in order to be sure QTcpSocket::readyRead would have been emitted.
QTRY_VERIFY(server.socket != nullptr);
QTRY_COMPARE(server.socket->state(), QAbstractSocket::UnconnectedState);
}
void tst_QNetworkReply::sslConfiguration()
{
QNetworkRequest request(QUrl("https://" + QtNetworkSettings::serverName() + "/index.html"));