diff options
author | Peter Hartmann <peter.hartmann@nokia.com> | 2011-04-27 09:48:53 (GMT) |
---|---|---|
committer | Qt Commercial Integration <QtCommercial@digia.com> | 2012-01-31 10:24:40 (GMT) |
commit | 9d3e97d11b512157da26b51f2a29b80d698db5c7 (patch) | |
tree | 6e0fc192c0047dc1dce42286ff7cde8c94b8349c /tests/auto | |
parent | 36bebe1ec73bd4df96df5eddafebfd5da18b34e7 (diff) | |
download | Qt-9d3e97d11b512157da26b51f2a29b80d698db5c7.zip Qt-9d3e97d11b512157da26b51f2a29b80d698db5c7.tar.gz Qt-9d3e97d11b512157da26b51f2a29b80d698db5c7.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 0071a24..68ca039 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; |