RESOLVED FIXED 220810
[Apple Pay] use the first item in `shippingOptions` even when it's not `selected`
https://bugs.webkit.org/show_bug.cgi?id=220810
Summary [Apple Pay] use the first item in `shippingOptions` even when it's not `selec...
Devin Rousso
Reported 2021-01-21 10:42:09 PST
This matches what PassKit does with `PKShippingMethod`.
Attachments
Patch (10.34 KB, patch)
2021-01-21 12:53 PST, Devin Rousso
no flags
Patch (27.94 KB, patch)
2021-01-21 16:42 PST, Devin Rousso
no flags
Devin Rousso
Comment 1 2021-01-21 12:53:02 PST
Andy Estes
Comment 2 2021-01-21 13:55:02 PST
Comment on attachment 418072 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=418072&action=review > LayoutTests/http/tests/paymentrequest/updateWith-shippingOptions.https.html:102 > + // assert_equals(request.shippingOption, detailsUpdate.shippingOptions.find((shippingOption) => shippingOption.selected).id, "selected shipping option should change"); My preference would be to let this assertion fail and update the test expectation (rather than commenting it out).
Andy Estes
Comment 3 2021-01-21 13:58:09 PST
Do you think we should log to the console when a merchant sets `selected` to true on something other than the first shipping option, letting them know that the selection won't be honored in the Apple Pay UI?
Devin Rousso
Comment 4 2021-01-21 14:09:57 PST
Comment on attachment 418072 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=418072&action=review (In reply to Andy Estes from comment #3) > Do you think we should log to the console when a merchant sets `selected` to true on something other than the first shipping option, letting them know that the selection won't be honored in the Apple Pay UI? Good idea! >> LayoutTests/http/tests/paymentrequest/updateWith-shippingOptions.https.html:102 >> + // assert_equals(request.shippingOption, detailsUpdate.shippingOptions.find((shippingOption) => shippingOption.selected).id, "selected shipping option should change"); > > My preference would be to let this assertion fail and update the test expectation (rather than commenting it out). I would agree, but AFAIK `assert_equals` actually throws an error, meaning that any `assert_equals` after it won't execute. Do you know of any ways to deal with this (e.g. have each test log instead of silent-pass-and-throw-on-failure)?
Andy Estes
Comment 5 2021-01-21 14:30:07 PST
Comment on attachment 418072 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=418072&action=review >>> LayoutTests/http/tests/paymentrequest/updateWith-shippingOptions.https.html:102 >>> + // assert_equals(request.shippingOption, detailsUpdate.shippingOptions.find((shippingOption) => shippingOption.selected).id, "selected shipping option should change"); >> >> My preference would be to let this assertion fail and update the test expectation (rather than commenting it out). > > I would agree, but AFAIK `assert_equals` actually throws an error, meaning that any `assert_equals` after it won't execute. Do you know of any ways to deal with this (e.g. have each test log instead of silent-pass-and-throw-on-failure)? Good point. You could move this assert into a new `user_activation_test` to isolate it from the others.
Devin Rousso
Comment 6 2021-01-21 16:42:39 PST
EWS Watchlist
Comment 7 2021-01-21 16:43:32 PST
This patch modifies the inspector protocol. Please ensure that any frontend changes appropriately use feature checks for new protocol features.
EWS
Comment 8 2021-01-21 19:50:40 PST
Committed r271735: <https://trac.webkit.org/changeset/271735> All reviewed patches have been landed. Closing bug and clearing flags on attachment 418098 [details].
Radar WebKit Bug Importer
Comment 9 2021-01-21 19:51:14 PST
Note You need to log in before you can comment on or make changes to this bug.