summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/network/ssl/qsslsocket_onDemandCertificates_static/tst_qsslsocket_onDemandCertificates_static.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/auto/network/ssl/qsslsocket_onDemandCertificates_static/tst_qsslsocket_onDemandCertificates_static.cpp b/tests/auto/network/ssl/qsslsocket_onDemandCertificates_static/tst_qsslsocket_onDemandCertificates_static.cpp
index b4a41b57e6..b71f7cc27b 100644
--- a/tests/auto/network/ssl/qsslsocket_onDemandCertificates_static/tst_qsslsocket_onDemandCertificates_static.cpp
+++ b/tests/auto/network/ssl/qsslsocket_onDemandCertificates_static/tst_qsslsocket_onDemandCertificates_static.cpp
@@ -179,31 +179,6 @@ void tst_QSslSocket_onDemandCertificates_static::onDemandRootCertLoadingStaticMe
{
QString host("www.qt.io");
-#if QT_DEPRECATED_SINCE(5, 5)
- // not using any root certs -> should not work
- QSslSocket::setDefaultCaCertificates(QList<QSslCertificate>());
- QSslSocketPtr socket = newSocket();
- this->socket = socket.data();
- socket->connectToHostEncrypted(host, 443);
- QVERIFY(!socket->waitForEncrypted());
-
- // using system root certs -> should work
- QSslSocket::setDefaultCaCertificates(QSslSocket::systemCaCertificates());
- QSslSocketPtr socket2 = newSocket();
- this->socket = socket2.data();
- socket2->connectToHostEncrypted(host, 443);
- QVERIFY2(socket2->waitForEncrypted(), qPrintable(socket2->errorString()));
-
- // not using any root certs again -> should not work
- QSslSocket::setDefaultCaCertificates(QList<QSslCertificate>());
- QSslSocketPtr socket3 = newSocket();
- this->socket = socket3.data();
- socket3->connectToHostEncrypted(host, 443);
- QVERIFY(!socket3->waitForEncrypted());
-
- QSslSocket::setDefaultCaCertificates(QSslSocket::systemCaCertificates());
-#endif
-
// setting empty default configuration -> should not work
QSslConfiguration conf;
QSslConfiguration originalDefaultConf = QSslConfiguration::defaultConfiguration();