-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor prototype_build_details_comment
for Firebase App Distribution
#630
Refactor prototype_build_details_comment
for Firebase App Distribution
#630
Conversation
…stribution App Center will be discontinued and we are migrating to Firebase App Distribution, so this action needs to derive its metadata from the `lane_context` exposed by the `firebase_app_distribution` action instead of the `appcenter_upload` one now. Besides, less parameters are now needed, which allowed us to simplify the implementation and make it more readable.
With some help from Cursor's Composer and Claude
Generated by 🚫 Danger |
Co-authored-by: Claude <claude-3.5-sonnet@cursor.com>
Add extensive test coverage for the `prototype_build_details_comment` action, including: - Error handling for invalid URLs - HTML escaping for app names and metadata - Metadata handling for edge cases - App icon handling for different input types We also reverted the escaping of metadata keys and values that we introduced previously, because we want to allow the caller to use HTML for those after all. Co-authored-by: Claude <claude-3.5-sonnet@cursor.com>
In particular, don't default to `:firebase:` icon if no icon was provided but a non-FAD `download_url` was provided for direct download instead.
<table> | ||
<tr> | ||
<td rowspan='#{metadata_rows.count + 1}' width='260px'><img src='#{qr_code_url}' width='250' height='250' /></td> | ||
<td><b>App Name</b></td><td>#{icon_img_tag} #{app_display_name}</td> | ||
<td><b>App Name</b></td><td>#{CGI.escape_html(app_display_name)}</td> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
+ 'If you uploaded the build to App Center, we recommend leaving this nil (the comment will use the URL to the App Center build for the QR code)', | ||
description: <<~DESC, | ||
The URL to use to download/install the build. | ||
- If you used `firebase_app_distribution` to upload the build during the same `fastlane` run, you should leave this nil |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you think it would be worth it to validate whether there's only firebase_app_distribution
or download_url
(+ test for that scenario)? 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The way I've implemented it is to still purposely allow for both, not only because I think it shouldn't be an error and crash if there are both (eg a build we upload to FAD and S2 for some reason) but also because I can imagine actually wanting to have both an Installation URL (FAD lane_context
) and a Direct Download URL—e.g. imagine Tumblr Android build being sent both to FAB and to Closed Testing track with an invite link…
Realistically I don't think we will ever really have the need to ever pass both in any project we currently have in practice tbh. But I also don't see a reason why to forcibly forbid it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(That's also why I used "should" in this help doc and not "must", and why in install_links
I didn't use an elsif
but instead allowed for both if
paths (download_url
and FirebaseReleaseInfo
) to be taken, to not assume it'll always be one or the other)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it! Yes, makes sense 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
What does it do?
Given App Center's imminent deprecation and shutdown, we are migrating our Prototype Builds from App Center to Firebase App Distribution.
This PR:
prototype_build_details_comment
action to rely on the data exposed fromfirebase_app_distribution
action instead of the ones from theappcenter_upload
uploadInternal References
Checklist before requesting a review
bundle exec rubocop
to test for code style violations and recommendations.bundle exec rspec
to run the whole test suite and ensure all your tests pass.CHANGELOG.md
file to describe your changes under the appropriate existing###
subsection of the existing## Trunk
section.MIGRATION.md
file to describe how the changes will affect the migration from the previous major version and what the clients will need to change and consider.