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

[PLAT-5450] Add missing app and device data to OOM events #908

Merged
merged 5 commits into from
Nov 26, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Check for new fields in OOM test
  • Loading branch information
nickdowell committed Nov 25, 2020
commit 228ce058d3531648c87663bce75459bf07e1f4c9
8 changes: 8 additions & 0 deletions features/out_of_memory.feature
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ Feature: Out of memory errors

# Ensure the basic data from OOMs are present
And the event "device.jailbroken" is false
And the event "metaData.device.batteryLevel" is not null
And the event "metaData.device.charging" is not null
And the event "metaData.device.orientation" is not null
And the event "metaData.device.timezone" is not null
And the event "metaData.device.simulator" is false
And the event "metaData.device.wordSize" is not null
Expand All @@ -32,7 +35,12 @@ Feature: Out of memory errors
And the event "app.inForeground" is true
And the event "app.type" equals "iOS"
And the event "app.bundleVersion" is not null
And the event "app.dsymUUIDs" is not null
And the event "app.version" is not null
And the event "device.manufacturer" equals "Apple"
And the event "device.orientation" is not null
And the event "device.runtimeVersions" is not null
And the event "device.totalMemory" is not null

# Ensure breadcrumbs are carried over
And the event has a "manual" breadcrumb named "OOMLoadScenarioBreadcrumb"
Expand Down