RESOLVED FIXED 171748
[Cocoa] Converting from WebCore::Cookie to NSHTTPCookie always marks cookies as session cookies
https://bugs.webkit.org/show_bug.cgi?id=171748
Summary [Cocoa] Converting from WebCore::Cookie to NSHTTPCookie always marks cookies ...
Blaze Burg
Reported 2017-05-05 14:10:28 PDT
I'm going to temporarily make the assertion wrong so this can be investigated separately from the "secure" flag bug (https://bugs.webkit.org/show_bug.cgi?id=171700). The test fix for that exposed this unexpected failing test assertion.
Attachments
Patch (3.87 KB, patch)
2017-05-05 16:05 PDT, Blaze Burg
no flags
Blaze Burg
Comment 1 2017-05-05 14:15:57 PDT
Blaze Burg
Comment 2 2017-05-05 14:16:39 PDT
Un-closing, going to track the fix here too.
Blaze Burg
Comment 3 2017-05-05 14:23:24 PDT
Looks like another round tripping issue: (lldb) po cookie <NSHTTPCookie version:1 name:"OtherCookieName" value:"OtherCookieValue" expiresDate:(null) created:2017-05-05 21:18:10 +0000 sessionOnly:TRUE domain:".www.w3c.org" partition:"none" path:"/path" isSecure:TRUE> (lldb) po cookie2.get() <NSHTTPCookie version:0 name:"OtherCookieName" value:"OtherCookieValue" expiresDate:2017-05-06 00:04:50 +0000 created:2017-05-05 21:18:10 +0000 sessionOnly:FALSE domain:".www.w3c.org" partition:"none" path:"/path" isSecure:FALSE> Also note that the expires date is getting dropped, afaict. Is that something we are supposed to preserve?
Michael Catanzaro
Comment 4 2017-05-05 14:29:52 PDT
I think it's sessionOnly if it doesn't have an expiresDate... then the expiration date is when you close the browser.
Blaze Burg
Comment 5 2017-05-05 14:40:23 PDT
The NS equivalent here is NSHTTPCookieDiscard: https://developer.apple.com/reference/foundation/nshttpcookiediscard "String value must be either "TRUE" or "FALSE". This cookie attribute is optional. The default is "FALSE", unless this cookie is version 1 or greater and a value for NSHTTPCookieMaximumAge is not specified, in which case it is assumed to be "TRUE"."
Brady Eidson
Comment 6 2017-05-05 15:08:13 PDT
(In reply to Brian Burg from comment #5) > The NS equivalent here is NSHTTPCookieDiscard: > > https://developer.apple.com/reference/foundation/nshttpcookiediscard > > "String value must be either "TRUE" or "FALSE". This cookie attribute is > optional. The default is "FALSE", unless this cookie is version 1 or greater > and a value for NSHTTPCookieMaximumAge is not specified, in which case it is > assumed to be "TRUE"." Ignore the discard thing, I think.
Brady Eidson
Comment 7 2017-05-05 15:15:34 PDT
(In reply to Michael Catanzaro from comment #4) > I think it's sessionOnly if it doesn't have an expiresDate... then the > expiration date is when you close the browser. Michael is right. If it has an expires date, it's a persistent cookies. If it doesn't, it's session.
Brady Eidson
Comment 8 2017-05-05 15:17:26 PDT
Yah, the test does the discard thing, but in reality having an expires date is what defines session or not.
Brady Eidson
Comment 9 2017-05-05 15:17:57 PDT
Except the docs say: "A boolean value that indicates whether the receiver should be discarded at the end of the session (regardless of expiration date)." lol wut.
Radar WebKit Bug Importer
Comment 10 2017-05-05 15:42:54 PDT
Blaze Burg
Comment 11 2017-05-05 16:05:37 PDT
WebKit Commit Bot
Comment 12 2017-05-05 16:45:08 PDT
Comment on attachment 309232 [details] Patch Clearing flags on attachment: 309232 Committed r216292: <http://trac.webkit.org/changeset/216292>
WebKit Commit Bot
Comment 13 2017-05-05 16:45:09 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.