summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/io/qurlinternal/tst_qurlinternal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/io/qurlinternal/tst_qurlinternal.cpp')
-rw-r--r--tests/auto/corelib/io/qurlinternal/tst_qurlinternal.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/auto/corelib/io/qurlinternal/tst_qurlinternal.cpp b/tests/auto/corelib/io/qurlinternal/tst_qurlinternal.cpp
index e008133d87..5e7fc2c7b6 100644
--- a/tests/auto/corelib/io/qurlinternal/tst_qurlinternal.cpp
+++ b/tests/auto/corelib/io/qurlinternal/tst_qurlinternal.cpp
@@ -95,6 +95,8 @@ private Q_SLOTS:
void encodingRecode();
void encodingRecodeInvalidUtf8_data();
void encodingRecodeInvalidUtf8();
+ void recodeByteArray_data();
+ void recodeByteArray();
};
#include "tst_qurlinternal.moc"
@@ -1006,4 +1008,34 @@ void tst_QUrlInternal::encodingRecodeInvalidUtf8()
QCOMPARE(output, QTest::currentDataTag() + input);
}
+void tst_QUrlInternal::recodeByteArray_data()
+{
+ QTest::addColumn<QByteArray>("input");
+ QTest::addColumn<QString>("expected");
+
+ QTest::newRow("null") << QByteArray() << QString();
+ QTest::newRow("empty") << QByteArray("") << QString("");
+ QTest::newRow("normal") << QByteArray("Hello") << "Hello";
+ QTest::newRow("valid-utf8") << QByteArray("\xc3\xa9") << "%C3%A9";
+ QTest::newRow("percent-encoded") << QByteArray("%C3%A9%00%C0%80") << "%C3%A9%00%C0%80";
+ QTest::newRow("invalid-utf8-1") << QByteArray("\xc3\xc3") << "%C3%C3";
+ QTest::newRow("invalid-utf8-2") << QByteArray("\xc0\x80") << "%C0%80";
+
+ // note: percent-encoding the control characters ("\0" -> "%00") would also
+ // be correct, but it's unnecessary for this function
+ QTest::newRow("binary") << QByteArray("\0\x1f", 2) << QString::fromLatin1("\0\x1f", 2);;
+ QTest::newRow("binary+percent-encoded") << QByteArray("\0%25", 4) << QString::fromLatin1("\0%25", 4);
+}
+
+void tst_QUrlInternal::recodeByteArray()
+{
+ QFETCH(QByteArray, input);
+ QFETCH(QString, expected);
+ QString output = qt_urlRecodeByteArray(input);
+
+ QCOMPARE(output.isNull(), input.isNull());
+ QCOMPARE(output.isEmpty(), input.isEmpty());
+ QCOMPARE(output, expected);
+}
+
QTEST_APPLESS_MAIN(tst_QUrlInternal)