diff options
author | Peter Hartmann <peter.hartmann@nokia.com> | 2011-04-27 09:48:53 (GMT) |
---|---|---|
committer | Peter Hartmann <peter.hartmann@nokia.com> | 2011-04-29 08:15:46 (GMT) |
commit | c85c1ea36cd9ebe6a9ff970d7ba0ce8d08d5b27b (patch) | |
tree | fcb2a06415802263bae5b7a236605c1a660fb045 /tests/auto | |
parent | 2fe1f118a791383de68d33a76f72d260f8bda2eb (diff) | |
download | Qt-c85c1ea36cd9ebe6a9ff970d7ba0ce8d08d5b27b.zip Qt-c85c1ea36cd9ebe6a9ff970d7ba0ce8d08d5b27b.tar.gz Qt-c85c1ea36cd9ebe6a9ff970d7ba0ce8d08d5b27b.tar.bz2 |
QNetworkCookie: allow spaces in unquoted values
We should follow
http://tools.ietf.org/html/draft-ietf-httpstate-cookie-23 , which says
parse the value until reaching the next ';' or the end of the line.
Other cookie implementations allow spaces in unquoted values as well.
Reviewed-by: Martin Petersson
Task-number: QTBUG-18876
Diffstat (limited to 'tests/auto')
-rw-r--r-- | tests/auto/qnetworkcookie/tst_qnetworkcookie.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/qnetworkcookie/tst_qnetworkcookie.cpp b/tests/auto/qnetworkcookie/tst_qnetworkcookie.cpp index e0c477b..9a58482 100644 --- a/tests/auto/qnetworkcookie/tst_qnetworkcookie.cpp +++ b/tests/auto/qnetworkcookie/tst_qnetworkcookie.cpp @@ -182,6 +182,14 @@ void tst_QNetworkCookie::parseSingleCookie_data() cookie.setValue("\"\\\"a, b; c\\\"\""); QTest::newRow("with-value-with-special5") << "a = \"\\\"a, b; c\\\"\"" << cookie; + cookie.setValue("b c"); + QTest::newRow("with-value-with-whitespace") << "a = b c" << cookie; + + cookie.setValue("\"b\""); + QTest::newRow("quoted-value") << "a = \"b\"" << cookie; + cookie.setValue("\"b c\""); + QTest::newRow("quoted-value-with-whitespace") << "a = \"b c\"" << cookie; + cookie.setValue("b"); cookie.setSecure(true); QTest::newRow("secure") << "a=b;secure" << cookie; |