summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorDavid Faure <david.faure@kdab.com>2014-07-15 15:25:23 +0200
committerDavid Faure <david.faure@kdab.com>2014-07-22 11:01:52 +0200
commit6f3bb0aafab877c34dea3d9141a9931b5a7914a5 (patch)
treeae14d34bec502bc3829d67cd413f75ea2fd2afb2 /tests/auto
parentae99f83312e2785cae280d4d7474050e163b7328 (diff)
tst_qurl: add tests for mailto parsing and toString. No bug.
This was prompted by https://git.reviewboard.kde.org/r/119221 Change-Id: Ia148f07f6d711df533693918bbedfa5e7dc02cd5 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/corelib/io/qurl/tst_qurl.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/corelib/io/qurl/tst_qurl.cpp b/tests/auto/corelib/io/qurl/tst_qurl.cpp
index 92dbb96817..d5eab54363 100644
--- a/tests/auto/corelib/io/qurl/tst_qurl.cpp
+++ b/tests/auto/corelib/io/qurl/tst_qurl.cpp
@@ -1027,6 +1027,13 @@ void tst_QUrl::toString_data()
QTest::newRow("underscore") << QString::fromLatin1("http://foo_bar.host.com/rss.php")
<< uint(QUrl::None)
<< QString::fromLatin1("http://foo_bar.host.com/rss.php");
+
+ QTest::newRow("mailto-brackets") << QString::fromLatin1("mailto:test[at]gmail[dot]com")
+ << uint(QUrl::PrettyDecoded)
+ << QString::fromLatin1("mailto:test[at]gmail[dot]com");
+ QTest::newRow("mailto-query") << QString::fromLatin1("mailto:?to=test@example.com")
+ << uint(QUrl::PrettyDecoded)
+ << QString::fromLatin1("mailto:?to=test@example.com");
}
void tst_QUrl::toString()