-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add unhandled exception scenarios (#249)
- Loading branch information
1 parent
c28a4ae
commit e47f902
Showing
4 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Feature: Android support | ||
|
||
Scenario: Test Unhandled Android Exception with Session | ||
When I run "UnhandledExceptionScenario" with the defaults | ||
Then I should receive a request | ||
And the request is a valid for the error reporting API | ||
And the "Bugsnag-API-Key" header equals "a35a2a72bd230ac0aa0f52715bbdc6aa" | ||
And the payload field "notifier.name" equals "Android Bugsnag Notifier" | ||
And the payload field "events" is an array with 1 element | ||
And the exception "errorClass" equals "java.lang.RuntimeException" | ||
And the exception "message" equals "UnhandledExceptionScenario" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Feature: Android support | ||
|
||
Scenario: Test Unhandled Android Exception with Session | ||
When I run "UnhandledExceptionJavaScenario" with the defaults | ||
Then I should receive a request | ||
And the request is a valid for the error reporting API | ||
And the "Bugsnag-API-Key" header equals "a35a2a72bd230ac0aa0f52715bbdc6aa" | ||
And the payload field "notifier.name" equals "Android Bugsnag Notifier" | ||
And the payload field "events" is an array with 1 element | ||
And the exception "errorClass" equals "java.lang.RuntimeException" | ||
And the exception "message" equals "UnhandledExceptionJavaScenario" |
13 changes: 13 additions & 0 deletions
13
...rc/main/java/com/bugsnag/android/mazerunner/scenarios/UnhandledExceptionJavaScenario.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.bugsnag.android.mazerunner.scenarios; | ||
|
||
/** | ||
* Sends an unhandled exception to Bugsnag. | ||
*/ | ||
public class UnhandledExceptionJavaScenario extends Scenario { | ||
|
||
@Override | ||
public void run() { | ||
throw new RuntimeException("UnhandledExceptionJavaScenario"); | ||
} | ||
|
||
} |
12 changes: 12 additions & 0 deletions
12
...nner/src/main/java/com/bugsnag/android/mazerunner/scenarios/UnhandledExceptionScenario.kt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.bugsnag.android.mazerunner.scenarios | ||
|
||
/** | ||
* Sends an unhandled exception to Bugsnag. | ||
*/ | ||
internal class UnhandledExceptionScenario : Scenario() { | ||
|
||
override fun run() { | ||
throw generateException() | ||
} | ||
|
||
} |