mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 03:04:43 +03:00
423f72a0ad
* safe telemetry * use try/catch instead * add some tests * cleanup tests --------- Co-authored-by: hq1 <hq@mtod.org>
44 lines
1.1 KiB
Elixir
44 lines
1.1 KiB
Elixir
defmodule ObanErrorReporterTest do
|
|
use ExUnit.Case, async: true
|
|
|
|
describe "handle_event/4" do
|
|
setup do
|
|
:telemetry.attach_many(
|
|
"oban-errors-test",
|
|
[[:oban, :job, :exception], [:oban, :notifier, :exception], [:oban, :plugin, :exception]],
|
|
&ObanErrorReporter.handle_event/4,
|
|
%{}
|
|
)
|
|
|
|
on_exit(fn -> :ok = :telemetry.detach("oban-errors-test") end)
|
|
end
|
|
|
|
@tag :capture_log
|
|
test "doesn't detach on failure" do
|
|
:ok =
|
|
:telemetry.execute(
|
|
[:oban, :job, :exception],
|
|
_bad_measurements = %{},
|
|
_bad_metadata = %{job: :bad_job}
|
|
)
|
|
|
|
handlers = :telemetry.list_handlers([:oban, :job, :exception])
|
|
assert Enum.any?(handlers, &(&1.id == "oban-errors-test"))
|
|
end
|
|
|
|
test "logs an error on failure" do
|
|
log =
|
|
ExUnit.CaptureLog.capture_log(fn ->
|
|
:ok =
|
|
:telemetry.execute(
|
|
[:oban, :job, :exception],
|
|
_bad_measurements = %{},
|
|
_bad_metadata = %{job: :bad_job}
|
|
)
|
|
end)
|
|
|
|
assert log =~ "[error] ** (BadMapError) expected a map, got: :bad_job"
|
|
end
|
|
end
|
|
end
|