Don't crash when upgrading a gecko profile with an empty sample_groups#6160
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #6160 +/- ##
=======================================
Coverage 83.50% 83.50%
=======================================
Files 342 342
Lines 36522 36525 +3
Branches 10125 10224 +99
=======================================
+ Hits 30497 30502 +5
+ Misses 5597 5595 -2
Partials 428 428 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Main | Deploy preview
The version 29 gecko upgrader unwraps
counter.sample_groups[0].samplesintocounter.samples, guarding only against a missingsample_groups:But the version 18 upgrader deliberately produces an empty array for a counter that collected no data:
[]is truthy, so the!counter.sample_groupsguard doesn't skip it, and[][0].samplesthrowsTypeError: Cannot read properties of undefined (reading 'samples'), aborting the whole profile load. No upgrader between 19 and 28 touches counters, so the empty array reaches version 29 unchanged. Any gecko profile from version 17–28 that contains a data-less counter (e.g. an external power counter that recorded nothing) hits this.Fix: when there's no group to unwrap, fall back to an empty samples table. Downstream
_processCountersalready drops counters whosesamples.datais empty, so the counter is handled gracefully.Added a regression test that upgrades a version 17 profile with an empty
sample_groupsobject to the current version; it fails on the current code with the TypeError above and passes with the fix.