Skip to content
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

Conversation

AliSoftware
Copy link
Contributor

@AliSoftware AliSoftware commented Feb 11, 2025

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:

  • Refactors the prototype_build_details_comment action to rely on the data exposed from firebase_app_distribution action instead of the ones from the appcenter_upload upload
  • Simplifies the action's implementation
  • Updates the unit tests (with the help of Cursor + Claude)

Internal References

  • 175-gh-Automattic/apps-infra-plans
  • 25739-gh-bloom/DayOne-Apple
  • pdnsEh-1zD-p2

Checklist before requesting a review

  • 🚧 Proofread the unit tests updated by Claude
  • 🚧 Potentially continue to work with the AI to ask for more improvements on the implementation, if it has any
  • 🚧 Test the new implementation on DayOne-iOS POC PR (25739-gh-bloom/DayOne-Apple)
  • 🚧 Validate the new implementation can still cover cases of direct download URLs instead of FAD (e.g. Android project with apk uploaded to S3/CloudFront)
  • Run bundle exec rubocop to test for code style violations and recommendations.
  • Run bundle exec rspec to run the whole test suite and ensure all your tests pass.
  • Make sure you added an entry in the CHANGELOG.md file to describe your changes under the appropriate existing ### subsection of the existing ## Trunk section.
  • If applicable, add an entry in the 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.

Sorry, something went wrong.

…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
@AliSoftware AliSoftware self-assigned this Feb 11, 2025
@dangermattic
Copy link
Collaborator

dangermattic commented Feb 11, 2025

1 Warning
⚠️ This PR is larger than 500 lines of changes. Please consider splitting it into smaller PRs for easier and faster reviews.

Generated by 🚫 Danger

AliSoftware and others added 8 commits February 12, 2025 01:01
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.
@AliSoftware AliSoftware marked this pull request as ready for review February 13, 2025 00:48
@AliSoftware AliSoftware requested a review from a team February 13, 2025 00:48
@AliSoftware
Copy link
Contributor Author

AliSoftware commented Feb 13, 2025

Results of testing it in real projects

(After pointing the test repo's Gemfile to this PR's branch of release-toolkit)

On an iOS project using Firebase

  • Internal ref: 25739-gh-bloom/DayOne-Apple
  • That PR switched from using appcenter_upload to firebase_app_distribution
  • I just had to 🪛 adapt the call in the Fastfile to remove the app_center_org_name parameter from the call site
image

On an Android project which uploads its .apk to our CDN directly

  • Internal ref: 5547-gh-bloom/DayOne-Android
  • Like most Android projects, that project uploads the prototype's .apk to our CDN (and thus does not use AppCenter nor Firebase), and uses prototype_build_details_comment action by passing the corresponding CDN URL directly via the download_url parameter.
  • I didn't had to change anything in that PR, thus ✅ confirming that my refactor of this action did not break this use case of using a direct download_url URL without using/relying on FAD nor App Center
image

<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>
Copy link
Contributor

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
Copy link
Contributor

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)? 🤔

Copy link
Contributor Author

@AliSoftware AliSoftware Feb 14, 2025

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.

Copy link
Contributor Author

@AliSoftware AliSoftware Feb 14, 2025

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)

Copy link
Contributor

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 👍

Copy link
Contributor

@iangmaia iangmaia left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit: 🚀

@AliSoftware AliSoftware merged commit 9c1a377 into trunk Feb 14, 2025
6 checks passed
@AliSoftware AliSoftware deleted the prototype_build_details_comment/appcenter-to-firebase-app-distribution branch February 14, 2025 19:38
iangmaia added a commit that referenced this pull request Feb 19, 2025
…istribution (#630)"

This reverts commit 9c1a377, reversing
changes made to bcc522b.
iangmaia added a commit that referenced this pull request Feb 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants