Use qt-project.org in tst_hostinfo - qt.nokia.com changed IP address.
qt.nokia.com is also going to disapper in future, so I think it is better to use qt-project.org. Change-Id: Ice550fe657a33609472b8e4b8630d7649f9c9fb5 Reviewed-by: Shane Kearns <shane.kearns@accenture.com> Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>
This commit is contained in:
parent
03b9b423b0
commit
8c4d02f97a
@ -430,10 +430,10 @@ class LookupThread : public QThread
|
|||||||
protected:
|
protected:
|
||||||
inline void run()
|
inline void run()
|
||||||
{
|
{
|
||||||
QHostInfo info = QHostInfo::fromName("qt.nokia.com");
|
QHostInfo info = QHostInfo::fromName("qt-project.org");
|
||||||
QCOMPARE(info.error(), QHostInfo::NoError);
|
QCOMPARE(info.error(), QHostInfo::NoError);
|
||||||
QVERIFY(info.addresses().count() > 0);
|
QVERIFY(info.addresses().count() > 0);
|
||||||
QCOMPARE(info.addresses().at(0).toString(), QString("87.238.50.178"));
|
QCOMPARE(info.addresses().at(0).toString(), QString("87.238.53.172"));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -468,7 +468,7 @@ public:
|
|||||||
void LookupReceiver::start()
|
void LookupReceiver::start()
|
||||||
{
|
{
|
||||||
for (int i=0;i<numrequests;i++)
|
for (int i=0;i<numrequests;i++)
|
||||||
QHostInfo::lookupHost(QString("qt.nokia.com"), this, SLOT(resultsReady(QHostInfo)));
|
QHostInfo::lookupHost(QString("qt-project.org"), this, SLOT(resultsReady(QHostInfo)));
|
||||||
}
|
}
|
||||||
|
|
||||||
void LookupReceiver::resultsReady(const QHostInfo &info)
|
void LookupReceiver::resultsReady(const QHostInfo &info)
|
||||||
@ -499,7 +499,7 @@ void tst_QHostInfo::threadSafetyAsynchronousAPI()
|
|||||||
QVERIFY(threads.at(k)->wait(60000));
|
QVERIFY(threads.at(k)->wait(60000));
|
||||||
foreach (LookupReceiver* receiver, receivers) {
|
foreach (LookupReceiver* receiver, receivers) {
|
||||||
QCOMPARE(receiver->result.error(), QHostInfo::NoError);
|
QCOMPARE(receiver->result.error(), QHostInfo::NoError);
|
||||||
QCOMPARE(receiver->result.addresses().at(0).toString(), QString("87.238.50.178"));
|
QCOMPARE(receiver->result.addresses().at(0).toString(), QString("87.238.53.172"));
|
||||||
QCOMPARE(receiver->numrequests, 0);
|
QCOMPARE(receiver->numrequests, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -536,7 +536,7 @@ void tst_QHostInfo::multipleDifferentLookups_data()
|
|||||||
void tst_QHostInfo::multipleDifferentLookups()
|
void tst_QHostInfo::multipleDifferentLookups()
|
||||||
{
|
{
|
||||||
QStringList hostnameList;
|
QStringList hostnameList;
|
||||||
hostnameList << "www.ovi.com" << "www.nokia.com" << "qt.nokia.com" << "www.trolltech.com" << "troll.no"
|
hostnameList << "www.ovi.com" << "www.nokia.com" << "qt-project.org" << "www.trolltech.com" << "troll.no"
|
||||||
<< "www.qtcentre.org" << "forum.nokia.com" << "www.nokia.com" << "wiki.forum.nokia.com"
|
<< "www.qtcentre.org" << "forum.nokia.com" << "www.nokia.com" << "wiki.forum.nokia.com"
|
||||||
<< "www.nokia.com" << "nokia.de" << "127.0.0.1" << "----";
|
<< "www.nokia.com" << "nokia.de" << "127.0.0.1" << "----";
|
||||||
|
|
||||||
@ -610,7 +610,7 @@ void tst_QHostInfo::abortHostLookup()
|
|||||||
lookupsDoneCounter = 0;
|
lookupsDoneCounter = 0;
|
||||||
bool valid = false;
|
bool valid = false;
|
||||||
int id = -1;
|
int id = -1;
|
||||||
QHostInfo result = qt_qhostinfo_lookup("qt.nokia.com", this, SLOT(resultsReady(QHostInfo)), &valid, &id);
|
QHostInfo result = qt_qhostinfo_lookup("qt-project.org", this, SLOT(resultsReady(QHostInfo)), &valid, &id);
|
||||||
QVERIFY(!valid);
|
QVERIFY(!valid);
|
||||||
//it is assumed that the DNS request/response in the backend is slower than it takes to call abort
|
//it is assumed that the DNS request/response in the backend is slower than it takes to call abort
|
||||||
QHostInfo::abortHostLookup(id);
|
QHostInfo::abortHostLookup(id);
|
||||||
@ -637,7 +637,7 @@ void tst_QHostInfo::abortHostLookupInDifferentThread()
|
|||||||
lookupsDoneCounter = 0;
|
lookupsDoneCounter = 0;
|
||||||
bool valid = false;
|
bool valid = false;
|
||||||
int id = -1;
|
int id = -1;
|
||||||
QHostInfo result = qt_qhostinfo_lookup("qt.nokia.com", this, SLOT(resultsReady(QHostInfo)), &valid, &id);
|
QHostInfo result = qt_qhostinfo_lookup("qt-project.org", this, SLOT(resultsReady(QHostInfo)), &valid, &id);
|
||||||
QVERIFY(!valid);
|
QVERIFY(!valid);
|
||||||
QThread thread;
|
QThread thread;
|
||||||
LookupAborter aborter;
|
LookupAborter aborter;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user