improvement: more granular & more broad testing helpers

This commit is contained in:
Zach Daniel 2023-10-04 14:53:57 -04:00
parent 2b1d6288a7
commit 427b5bf044

View file

@ -1,6 +1,63 @@
defmodule AshOban.Test do defmodule AshOban.Test do
@moduledoc "Helpers for testing ash_oban triggers" @moduledoc "Helpers for testing ash_oban triggers"
@type triggerable :: Ash.Resource.t() | {Ash.Resource.t(), atom()} | Ash.Api.t() | atom()
@doc """
Runs the schedulers for the given resource, api, or otp_app, or list of resources, apis, or otp_apps.
If the input is:
* a list - each item is passed into `schedule_and_run_triggers/1`, and the results are merged together.
* an otp_app - each api configured in the `ash_apis` of that otp_app is passed into `schedule_and_run_triggers/1`, and the results are merged together.
* an api - each reosurce configured in that api is passed into `schedule_and_run_triggers/1`, and the results are merged together.
* a tuple of {resource, :trigger_name} - that trigger is scheduled, and the results are merged together.
* a resource - each trigger configured in that resource is scheduled, and the results are merged together.
"""
@spec schedule_and_run_triggers(triggerable | list(triggerable)) :: %{
discard: non_neg_integer(),
cancelled: non_neg_integer(),
success: non_neg_integer(),
failure: non_neg_integer(),
snoozed: non_neg_integer()
}
def schedule_and_run_triggers(resources_or_apis_or_otp_apps)
when is_list(resources_or_apis_or_otp_apps) do
Enum.reduce(resources_or_apis_or_otp_apps, %{}, fn item, acc ->
item
|> schedule_and_run_triggers()
|> Map.merge(acc, fn _key, left, right ->
left + right
end)
end)
end
def schedule_and_run_triggers({resource, trigger_name}) do
triggers =
resource
|> AshOban.Info.oban_triggers()
|> Enum.filter(fn trigger ->
trigger.scheduler && trigger.name == trigger_name
end)
Enum.each(triggers, fn trigger ->
AshOban.schedule(resource, trigger)
end)
queues =
triggers
|> Enum.map(& &1.queue)
|> Enum.uniq()
# we drain each queue twice to do schedulers and then workers
Enum.reduce(queues ++ queues, %{}, fn queue, acc ->
[queue: queue]
|> Oban.drain_queue()
|> Map.merge(acc, fn _key, left, right ->
left + right
end)
end)
end
def schedule_and_run_triggers(resource_or_api_or_otp_app) do def schedule_and_run_triggers(resource_or_api_or_otp_app) do
cond do cond do
Spark.Dsl.is?(resource_or_api_or_otp_app, Ash.Api) -> Spark.Dsl.is?(resource_or_api_or_otp_app, Ash.Api) ->