summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Faure <faure@kde.org>2012-07-13 22:39:18 (GMT)
committerQt by Nokia <qt-info@nokia.com>2012-08-23 21:43:15 (GMT)
commitc3fe37fe18961d3ddb050fc788281eb79bc61d7a (patch)
treec5cb867c5f86b79f8fce7085110f5abd0f6b4736 /tests
parent98ed9ba14a91c941d48cc5c946c4df1d7ed47945 (diff)
downloadQt-c3fe37fe18961d3ddb050fc788281eb79bc61d7a.zip
Qt-c3fe37fe18961d3ddb050fc788281eb79bc61d7a.tar.gz
Qt-c3fe37fe18961d3ddb050fc788281eb79bc61d7a.tar.bz2
QUrl: fix thread safety.
Developers expect const methods on the same QUrl instance to be usable from multiple threads (including copying and modifying the copy). The delayed parsing and internal cache of encoded strings break this, however (and the implicit sharing, for the case of copying). Protection with a mutex fixes this. Qt-5.0 doesn't have this issue, since QUrl doesn't do delayed parsing anymore. Change-Id: Ie2674e46eb7416b0e753323b673c10f9d3457f6d Reviewed-by: Marc Mutz <marc.mutz@kdab.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qurl/tst_qurl.cpp83
1 files changed, 83 insertions, 0 deletions
diff --git a/tests/auto/qurl/tst_qurl.cpp b/tests/auto/qurl/tst_qurl.cpp
index 348ce44..38311c3 100644
--- a/tests/auto/qurl/tst_qurl.cpp
+++ b/tests/auto/qurl/tst_qurl.cpp
@@ -203,7 +203,11 @@ private slots:
void taskQTBUG_8701();
void removeAllEncodedQueryItems_data();
void removeAllEncodedQueryItems();
+ void detach();
+ void testThreading();
+private:
+ void testThreadingHelper();
};
// Testing get/set functions
@@ -271,6 +275,8 @@ void tst_QUrl::constructing()
QVERIFY(url.isEmpty());
QCOMPARE(url.port(), -1);
QCOMPARE(url.toString(), QString());
+ QVERIFY(url == url);
+ QVERIFY(!(url < url));
QList<QPair<QString, QString> > query;
query += qMakePair(QString("type"), QString("login"));
@@ -348,6 +354,8 @@ void tst_QUrl::comparison()
QVERIFY(url2.isValid());
QVERIFY(url1 == url2);
+ QVERIFY(!(url1 < url2));
+ QVERIFY(!(url2 < url1));
// 6.2.2 Syntax-based Normalization
QUrl url3 = QUrl::fromEncoded("example://a/b/c/%7Bfoo%7D");
@@ -368,6 +376,7 @@ void tst_QUrl::comparison()
QUrl url8;
url8.setEncodedQuery("a=c");
QVERIFY(url7 != url8);
+ QVERIFY(url7 < url8);
}
void tst_QUrl::copying()
@@ -4061,5 +4070,79 @@ void tst_QUrl::removeAllEncodedQueryItems()
QCOMPARE(url, result);
}
+void tst_QUrl::detach()
+{
+ QUrl empty;
+ empty.detach();
+
+ QUrl foo("http://www.kde.org");
+ QUrl foo2 = foo;
+ foo2.detach(); // not that it's needed, given that setHost detaches, of course. But this increases coverage :)
+ foo2.setHost("www.gnome.org");
+ QCOMPARE(foo2.host(), QString("www.gnome.org"));
+ QCOMPARE(foo.host(), QString("www.kde.org"));
+}
+
+// Test accessing the same QUrl from multiple threads concurrently
+// To maximize the chances of a race (and of a report from helgrind), we actually use
+// 10 urls rather than one.
+class UrlStorage
+{
+public:
+ UrlStorage() {
+ m_urls.resize(10);
+ for (int i = 0 ; i < m_urls.size(); ++i)
+ m_urls[i] = QUrl::fromEncoded("http://www.kde.org", QUrl::StrictMode);
+ }
+ QVector<QUrl> m_urls;
+};
+
+static const UrlStorage * s_urlStorage = 0;
+
+void tst_QUrl::testThreadingHelper()
+{
+ const UrlStorage* storage = s_urlStorage;
+ for (int i = 0 ; i < storage->m_urls.size(); ++i ) {
+ const QUrl& u = storage->m_urls.at(i);
+ // QVERIFY/QCOMPARE trigger race conditions in helgrind
+ if (!u.isValid())
+ qFatal("invalid url");
+ if (u.scheme() != QLatin1String("http"))
+ qFatal("invalid scheme");
+ if (!u.toString().startsWith('h'))
+ qFatal("invalid toString");
+ QUrl copy(u);
+ copy.setHost("www.new-host.com");
+ QUrl copy2(u);
+ copy2.setUserName("dfaure");
+ QUrl copy3(u);
+ copy3.setUrl("http://www.new-host.com");
+ QUrl copy4(u);
+ copy4.detach();
+ QUrl copy5(u);
+ QUrl resolved1 = u.resolved(QUrl("index.html"));
+ Q_UNUSED(resolved1);
+ QUrl resolved2 = QUrl("http://www.kde.org").resolved(u);
+ Q_UNUSED(resolved2);
+ QString local = u.toLocalFile();
+ Q_UNUSED(local);
+ QTest::qWait(10); // give time for the other threads to start
+ }
+}
+
+#include <QThreadPool>
+
+void tst_QUrl::testThreading()
+{
+ s_urlStorage = new UrlStorage;
+ QThreadPool::globalInstance()->setMaxThreadCount(100);
+ QFutureSynchronizer<void> sync;
+ for (int i = 0; i < 100; ++i)
+ sync.addFuture(QtConcurrent::run(this, &tst_QUrl::testThreadingHelper));
+ sync.waitForFinished();
+ delete s_urlStorage;
+}
+
QTEST_MAIN(tst_QUrl)
+
#include "tst_qurl.moc"