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

Add tests for new build stats utilities #4971

Open
4 tasks
BenHenning opened this issue May 12, 2023 · 0 comments
Open
4 tasks

Add tests for new build stats utilities #4971

BenHenning opened this issue May 12, 2023 · 0 comments
Assignees
Labels
enhancement End user-perceivable enhancements. Impact: Medium Moderate perceived user impact (non-blocking bugs and general improvements). Work: High It's not clear what the solution is.

Comments

@BenHenning
Copy link
Member

BenHenning commented May 12, 2023

Is your feature request related to a problem? Please describe.
#4092 introduced several new utilities and a new script to help report build stats for PRs. These require unit tests for behavior regression verification.

Describe the solution you'd like
Each of the new, untested classes in the PR need tests to cover their main behaviors. Below are the new classes and minimum tests to add (more are likely needed, these are just a first pass):

  • Add tests for Aapt2Client (suggest using the command locally to get an idea on the sort of output that the class will encounter)
    1. testDumpPermissions_nonExistentApk_failsWithError
    2. testDumpPermissions_invalidApk_failsWithError
    3. testDumpPermissions_apkWithNoPermissions_returnsEmptyList
    4. testDumpPermissions_apkWithSomePermissions_returnsListOfQualifiedPermissionNames
    5. testDumpResources_nonExistentApk_failsWithError
    6. testDumpResources_invalidApk_failsWithError
    7. testDumpResources_apkWithNoResources_returnsEmptyList
    8. testDumpResources_apkWithOnlyStrings_returnsListWithResourcesWithTypesAndIds
    9. testDumpResources_apkWithOnlyDrawables_returnsListWithResourcesWithTypesAndIds
    10. testDumpResources_apkWithOnlyLayouts_returnsListWithResourcesWithTypesAndIds
    11. testDumpResources_apkWithManyResources_returnsListWithResourcesWithTypesAndIds
    12. testDumpBadging_nonExistentApk_failsWithError
    13. testDumpBadging_invalidApk_failsWithError
    14. testDumpBadging_apkWithNoExtraBadgingInfo_returnsPackageAndGenericInfo
    15. testDumpBadging_apkWithOnlyUsesFeatures_returnsBadgingInfo
    16. testDumpBadging_apkWithOnlyUsesImpliedFeatures_returnsBadgingInfo
    17. testDumpBadging_apkWithOnlyUsesFeaturesNotRequired_returnsBadgingInfo
    18. testDumpBadging_apkWithOnlyUsesPermission_returnsBadgingInfo
    19. testDumpBadging_apkWithAllOppiaLikeBadgingInfo_returnsBadgingInfo
  • Add tests for ApkAnalyzerClient (suggest using the apkanalyzer command locally to get an idea on the sort of output that the class will encounter since this utility interacts with apkanalyzer through its internal library)
    1. testComputeFileSize_nonExistentApk_failsWithError
    2. testComputeFileSize_invalidApk_failsWithError
    3. testComputeFileSize_apkWithSomeClassesAndResources_returnsCorrectRawApkSize
    4. testComputeFileSize_apkWithMoreClassesAndResources_returnsCorrectRawApkSize
    5. testComputeDownloadSize_nonExistentApk_failsWithError
    6. testComputeDownloadSize_invalidApk_failsWithError
    7. testComputeDownloadSize_apkWithSomeClassesResources_returnsEstDownloadSize
    8. testComputeDownloadSize_apkWithMoreSomeClassesResources_returnsEstDownloadSize
    9. testComputeFeatures_nonExistentApk_failsWithError
    10. testComputeFeatures_invalidApk_failsWithError
    11. testComputeFeatures_apkWithNoFeatures_returnsEmptyList
    12. testComputeFeatures_apkWithSomeFeatures_returnsListOfFeatures
    13. testCompare_firstApk_isNonExistent_failsWithError
    14. testCompare_secondApk_isNonExistent_failsWithError
    15. testCompare_firstApk_isInvalid_failsWithError
    16. testCompare_secondApk_isInvalid_failsWithError
    17. testCompare_complexApks_firstSecondAreSame_returnsEmptyList
    18. testCompare_twoDifferentComplexApks_returnsListOfDifferences
    19. testComputeDexReferencesList_nonExistentApk_failsWithError
    20. testComputeDexReferencesList_invalidApk_failsWithError
    21. testComputeDexReferencesList_apkWithoutDexFiles_returnsEmptyMap
    22. testComputeDexReferencesList_apkWithOneSmallDexFile_returnsMapWithRefCount
    23. testComputeDexReferencesList_apkWithOneLargeDexFile_returnsMapWithRefCount
    24. testComputeDexReferencesList_apkWithMultipleDexFiles_returnsMapWithRefCounts
  • Add tests for BundleToolClient (suggest using the bundletool utility locally to get an idea on the sort of output that the class will encounter--you can download it using the instructions at: https://developer.android.com/tools/bundletool)
    1. testBuildApks_nonExistentInputAab_failsWithError
    2. testBuildApks_invalidInputAab_failsWithError
    3. testBuildApks_aabWithOneConfiguration_returnsListWithSingleApkFile
    4. testBuildApks_aabWithMultipleConfigurations_returnsListWithAllApkFiles
    5. testBuildUniversalApk_nonExistentInputAab_failsWithError
    6. testBuildUniversalApk_invalidInputAab_failsWithError
    7. testBuildUniversalApk_aabWithOneConfiguration_returnsValidUniversalApkFile
    8. testBuildUniversalApk_aabWithMultipleConfigurations_returnsValidUniversalApkFile
  • Add tests for ComputeAabDifferences (suggest running the script locally on Oppia AABs to get an idea of the kinds of output it can produce in different circumstances)
    1. testMain_noArguments_failsWithError
    2. testMain_oneArgument_failsWithError
    3. testMain_twoArguments_failsWithError
    4. testMain_threeArguments_failsWithError
    5. testMain_fourArguments_failsWithError
    6. testMain_sixArguments_failsWithError
    7. testMain_sevenArguments_failsWithError
    8. testMain_fiveArguments_invalidBeforeAab_failsWithError
    9. testMain_fiveArguments_invalidAfterAab_failsWithError
    10. testMain_eightArguments_invalidBeforeAabForConfig2_failsWithError
    11. testMain_eightArguments_invalidAfterAabForConfig2_failsWithError
    12. testMain_fiveArguments_validAabs_generatesShortAndLongSummariesForOneConfig
    13. testMain_eightArguments_validAabs_generatesShortAndLongSummariesForTwoConfigs
    14. testComputeBuildStats_zeroProfiles_returnsEmptyBuildStats
    15. testComputeBuildStats_oneProfile_invalidBeforeAab_throwsException
    16. testComputeBuildStats_oneProfile_invalidAfterAab_throwsException
    17. testComputeBuildStats_oneProfile_sameAab_returnsCorrectAabStatsWithNoDiffs
    18. testComputeBuildStats_oneProfile_diffAabs_returnsCorrectConfigAndDiffStats
    19. testComputeBuildStats_twoProfiles_sameAabs_returnsCorrectAabStatsWithNoDiffsForEach
    20. testComputeBuildStats_twoProfiles_diffAabs_returnsCorrectConfigAndDiffStatsForEach
    21. testAabStats_writeSummaryTo_emptyStats_printsMinimalOutput
    22. testAabStats_writeSummaryTo_statsAndDiffs_lowItemLimit_reducesOutput
    23. testAabStats_writeSummaryTo_statsAndDiffs_longSummaryOff_reducesOutput
    24. testAabStats_writeSummaryTo_statsAndDiffs_longSummaryOn_withItemLimit_printsLimitedDetails
    25. testAabStats_writeSummaryTo_statsAndDiffs_longSummaryOn_withLimit_printsExtensiveDetails
    26. testEntireScript_usingMain_forOneProfile_generatesCorrectShortSummary
    27. testEntireScript_usingMain_forOneProfile_generatesCorrectLongSummary
    28. testEntireScript_usingMain_forTwoProfiles_generatesCorrectShortSummary
    29. testEntireScript_usingMain_forTwoProfiles_generatesCorrectLongSummary

Describe alternatives you've considered
N/A -- All utilities require tests.

Additional context
Each of the utilities above already have existing placeholder test suites that are ready for new tests to be added, and should already build, run, and pass.

All other script & script utility tests are good to reference when building these. Note that these tests can only be run with Bazel and syntax highlighting/auto completion won't work in Android Studio unless using the Bazel plugin.

Note also that these tests often require creating real test data (such as APKs) to verify their functionality. This should be done without needing to permanently check in any binary files to the repository (prefer generating the files at runtime during the test run, instead).

BenHenning added a commit that referenced this issue May 12, 2023
Also, fix some oddities in the API contract for functions returning
sizes as strings rather than longs.

Issue #4971 is tracking the long-term effort to add tests for the new
utilities being introduced by this branch's PR.
@MohitGupta121 MohitGupta121 added Impact: Medium Moderate perceived user impact (non-blocking bugs and general improvements). enhancement End user-perceivable enhancements. Work: Medium The means to find the solution is clear, but it isn't at good-first-issue level yet. labels Jun 16, 2023
@MohitGupta121 MohitGupta121 added Work: High It's not clear what the solution is. and removed Work: Medium The means to find the solution is clear, but it isn't at good-first-issue level yet. labels Jun 27, 2023
BenHenning added a commit that referenced this issue Jun 12, 2024
## Explanation
Fixes part of #1719 and #3709

This PR introduces a new script & CI workflow for computing build stats
to compare both AABs and universal APKs between develop and the changes
in a given PR, as part of fixing #1719 (though this PR doesn't cover
everything outlined in that PR). This information is then detailed and
uploaded as a CI build artifact, and summarized & posted as a comment in
the PR. Some details included in the summary report:
- APK file/download size differences
- Method count differences
- Feature/permission differences
- New/removed resources & assets

The script supports computing differences for multiple "profiles" at the
same time, and the CI workflow has been set up to compute four:
1. dev
2. alpha
3. beta
4. GA

This workflow will be optional since it's very expensive to run (it has
to assemble 8 builds, 6 of which are Proguarded). It also doesn't really
need to be run in order to approve a PR, though reviewers may insist on
waiting for large or suspicious changes
(such as PRs introducing new dependencies) to ensure the actual affected
changes are as expected.

In order to mitigate this expense, the CI workflow runs on a scheduled
cron job off of develop across all open PRs and checks them in a group.
It runs at most once per day (based on
https://github.com/orgs/community/discussions/55768#discussioncomment-5941720)
so multiple changes to a PR will be picked up with a single check in the
next cron run. Currently, it will run even for a PR that hasn't changed
since the last run (but this is something that can be improved in the
future if it needs to be). It's being scheduled for 2:30am (02:30) UTC
which seems to have a few specific benefits:
- Per GitHub documentation, initiating the workflow outside the start of
the hour should reduce likelihood of cancellation (since the start of
the hour tends to use the most resources):
https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule.
- This corresponds to 7:30pm PT, 2:30am GMT, 8:00am IST, 5:30am EAT, and
12:30pm AEST (just as a basis for a different part of the world). It's
actually a very nice time that shouldn't overlap with almost any
development in main locations around the world, so it hopefully won't
impact Oppia organization GitHub CI resources.

The example output from these workflows can be observed in a few places:
- Later in this PR (for back when the PR was configured to run the new
workflow per PR change).
- In #4261 which demonstrates the large math PRs and how they changed
the builds back before those were merged.
-
https://github.com/BenHenning/oppia-android/actions/workflows/stats.yml
and https://github.com/BenHenning/oppia-android/pulls (specifically:
BenHenning#14,
BenHenning#13,
BenHenning#12) which demonstrates
the workflow running correctly from a scheduled cron
(https://github.com/BenHenning/oppia-android/actions/runs/9232187176)
and posting the updates to open PRs.

Beyond that, implementing this utility involved several significant
changes to various systems, including the build graph:
- Three new utilities were added for the script: Aapt2Client,
ApkAnalyzerClient, and BundleToolClient. Each of these correspond to
Android CLI utilities, but each required special considerations:
- Aapt2Client requires direct access to the Android SDK, but fortunately
android_sdk_repository exposes this as a target so it's trivial to pass
it in & call it. Some build information is needed, too (see next outer
point).
- ApkAnalyzerClient couldn't use the apkanalyzer CLI contained within
the SDK since it's not exported by android_sdk_repository. Instead, we
needed to depend on the CLI's internal implementation library (which I
suspect is what Android Studio probably uses for its own APK Analyzer
tool). This required some new implementation.
- BundleToolClient fortunately can call right into the bundle tool
library that we use when building AABs, but unfortunately that tool
appears to not be designed to be called multiple times in the same
process. Because Java doesn't support forking, we actually needed to
fake a fork function by starting a new Java process using the current
process's classpath in order to re-run bundle tool for each needed
routine. Additionally, bundle tool required
https://github.com/oppia/archive-patcher (which needed new BUILD files
since it only supported Gradle building previously) and a non-Android
version of Guava (see below for the changes this has caused).
- A new build_vars.bzl was introduced to define the build SDK & build
tools versions (this is done in a way where they can actually be passed
to the new script's utilities since it needs to access aapt2).
- rules_kotlin had a bug where resources wouldn't be pulled in properly
for kt_jvm_library (see
bazelbuild/rules_kotlin#281), but this was
mitigated in a previous PR by upgrading rules_kotlin past alpha 2.
- The new functionality required the JRE-compatible version of Guava
(over the Android-constrained library used in the codebase today), but
this introduces a one-version issue. The solution ended up being
isolating the JRE-compatible Guava library to its own library with a
slightly hacky direct reference to it in BundleToolClient. Some of the
other attempts at solving this resulted in some Maven reference cleanups
in existing script documentation. This functionality will be improved in
downstream PRs, but other attempts that were originally made to isolate
this cleanly were:
- Introduce multiple maven_install files and isolate dependencies into:
production, tests, scripts. This has a number of nice benefits (more
correct licenses and faster Maven dependency fetches for production),
but it results in very tricky one-version violations for test targets
that cross dependencies between production and tests.
- Isolated maven_install just for scripts. This is closer to the
solution we'll want long-term, but it was too much complexity to fully
introduce in this PR so it's been reworked into a downstream PR that can
focus on cleaning up third-party dependency management across the whole
codebase.

This PR is introducing a few new dependencies that, in turn, pull in a
*bunch* of transitive dependencies. These are all due to the new
``apkanalyzer`` dependency. While it will affect licenses for this
specific PR, once third-party dependencies for scripts are cleaned up in
a downstream PR they will be moved out (since they are script-only
dependencies).

Separately, also note that the AAPT2 utility requires stdout to be
processed continuously in order for the process to finish. This was one
of the primary reasons CommandExecutorImpl was reworked in #4929.

For testing: most of the changes in this PR have been extensively
manually tested. However, the new utilities are lacking significant
automated tests. Since this utility is a nice-to-have for the rest of
the Bazel PR chain, it's being prioritized to be merged in spite of
lacking code coverage. #4971 has been filed to track adding these
missing tests in the long-term.

## Essential Checklist
- [x] The PR title and explanation each start with "Fix #bugnum: " (If
this PR fixes part of an issue, prefix the title with "Fix part of
#bugnum: ...".)
- [x] Any changes to
[scripts/assets](https://github.com/oppia/oppia-android/tree/develop/scripts/assets)
files have their rationale included in the PR explanation.
- [x] The PR follows the [style
guide](https://github.com/oppia/oppia-android/wiki/Coding-style-guide).
- [x] The PR does not contain any unnecessary code changes from Android
Studio
([reference](https://github.com/oppia/oppia-android/wiki/Guidance-on-submitting-a-PR#undo-unnecessary-changes)).
- [x] The PR is made from a branch that's **not** called "develop" and
is up-to-date with "develop".
- [x] The PR is **assigned** to the appropriate reviewers
([reference](https://github.com/oppia/oppia-android/wiki/Guidance-on-submitting-a-PR#clarification-regarding-assignees-and-reviewers-section)).

## For UI-specific PRs only
N/A -- This only affects CI workflows & the build system. Technically,
some dependency changes in the build system could have UI effects, but
there should be no such changes in this PR.

---------

Co-authored-by: Adhiambo Peres <[email protected]>
Co-authored-by: Sean Lip <[email protected]>
@theMr17 theMr17 self-assigned this Jan 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement End user-perceivable enhancements. Impact: Medium Moderate perceived user impact (non-blocking bugs and general improvements). Work: High It's not clear what the solution is.
Development

No branches or pull requests

4 participants