RESOLVED FIXED 168394
webkitpy: Regular expression for parsing simctl device information is wrong for iPad Pro
https://bugs.webkit.org/show_bug.cgi?id=168394
Summary webkitpy: Regular expression for parsing simctl device information is wrong f...
Jonathan Bedard
Reported 2017-02-15 15:04:47 PST
Simulated iPad Pro look have parenthesis in their names when listed through xcrun simctl list. An example of an iPad Pro simulator name is bellow: iPad Pro (9.7 inch) (udid) (state) The regular expression which parses these lines does not consider devices with names which have parenthesis in them.
Attachments
Patch (1.35 KB, patch)
2017-02-15 15:07 PST, Jonathan Bedard
no flags
Patch (6.40 KB, patch)
2017-02-21 16:38 PST, Jonathan Bedard
no flags
Patch for landing (6.34 KB, patch)
2017-02-28 12:11 PST, Jonathan Bedard
no flags
Jonathan Bedard
Comment 1 2017-02-15 15:07:04 PST
Alexey Proskuryakov
Comment 2 2017-02-21 09:06:47 PST
Comment on attachment 301660 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=301660&action=review > Tools/Scripts/webkitpy/xcode/simulator.py:344 > - '\s*(?P<name>[^(]+ )\((?P<udid>[^)]+)\) \((?P<state>[^)]+)\)( \((?P<availability>[^)]+)\))?') > + '\s*(?P<name>.+) \((?P<udid>[^)]+)\) \((?P<state>[^)]+)\)( \((?P<availability>[^)]+)\))?') Is this testable?
Alexey Proskuryakov
Comment 3 2017-02-21 09:09:37 PST
Ideally, we should switch to JSON, not polish text output parsing.
Jonathan Bedard
Comment 4 2017-02-21 13:51:32 PST
(In reply to comment #3) > Ideally, we should switch to JSON, not polish text output parsing. I agree that the JSON would be preferable, but I also think that we should at least fix this regular expression temporarily. It will be a few more weeks before the JSON change gets made, and currently, many of the default iPad names do not fit into our regular expression.
Jonathan Bedard
Comment 5 2017-02-21 16:38:30 PST
Daniel Bates
Comment 6 2017-02-28 11:33:39 PST
Comment on attachment 302336 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=302336&action=review > Tools/ChangeLog:3 > + webkitpy: Regular expression for parsing simctl device information is wrong for iPad pros iPad pros => iPad Pro
Jonathan Bedard
Comment 7 2017-02-28 12:11:34 PST
Created attachment 302965 [details] Patch for landing
WebKit Commit Bot
Comment 8 2017-02-28 12:53:41 PST
Comment on attachment 302965 [details] Patch for landing Clearing flags on attachment: 302965 Committed r213164: <http://trac.webkit.org/changeset/213164>
WebKit Commit Bot
Comment 9 2017-02-28 12:53:46 PST
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.