-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
57 additions
and
2 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
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,54 @@ | ||
defmodule TowerRollbar.Rollbar.ItemTest do | ||
use ExUnit.Case | ||
doctest TowerRollbar.Rollbar.Item | ||
|
||
alias TowerRollbar.Rollbar | ||
|
||
test "from_exception" do | ||
Application.put_env(:tower_rollbar, :environment, "test") | ||
|
||
item = | ||
try do | ||
raise "a test" | ||
rescue | ||
exception in RuntimeError -> | ||
Rollbar.Item.from_exception(exception, __STACKTRACE__) | ||
end | ||
|
||
assert %{ | ||
"data" => %{ | ||
"environment" => "test", | ||
"timestamp" => _, | ||
"level" => "error", | ||
"body" => %{ | ||
"trace" => %{ | ||
"frames" => [], | ||
"exception" => %{ | ||
"class" => "RuntimeError", | ||
"message" => "a test" | ||
} | ||
} | ||
} | ||
} | ||
} = item | ||
end | ||
|
||
test "from_message" do | ||
Application.put_env(:tower_rollbar, :environment, "test") | ||
|
||
item = Rollbar.Item.from_message("something interesting happened") | ||
|
||
assert %{ | ||
"data" => %{ | ||
"environment" => "test", | ||
"timestamp" => _, | ||
"level" => "info", | ||
"body" => %{ | ||
"message" => %{ | ||
"body" => "something interesting happened" | ||
} | ||
} | ||
} | ||
} = item | ||
end | ||
end |