-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change Verk.Supervisor to start new ManagerSupervisor
The ManagerSupervisor will guarantee that the Manager exists before the queues
- Loading branch information
Showing
4 changed files
with
99 additions
and
22 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,17 @@ | ||
defmodule Verk.Manager.Supervisor do | ||
@moduledoc false | ||
use Supervisor | ||
|
||
@doc false | ||
def start_link, do: Supervisor.start_link(__MODULE__, [], name: __MODULE__) | ||
|
||
@doc false | ||
def init(_) do | ||
queues = Confex.get_env(:verk, :queues, []) | ||
children = for {queue, size} <- queues, do: Verk.Queue.Supervisor.child_spec(queue, size) | ||
|
||
children = [worker(Verk.Manager, [queues], id: Verk.Manager) | children] | ||
|
||
supervise(children, strategy: :rest_for_one) | ||
end | ||
end |
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,14 @@ | ||
defmodule Verk.ManagerSupervisorTest do | ||
use ExUnit.Case | ||
import Verk.Manager.Supervisor | ||
|
||
describe "init/1" do | ||
test "defines tree" do | ||
{:ok, {_, children}} = init([]) | ||
[manager, default] = children | ||
|
||
assert {Verk.Manager, _, _, _, :worker, [Verk.Manager]} = manager | ||
assert {:"default.supervisor", _, _, _, :supervisor, [Verk.Queue.Supervisor]} = default | ||
end | ||
end | ||
end |
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 |
---|---|---|
@@ -1,16 +1,71 @@ | ||
defmodule Verk.SupervisorTest do | ||
use ExUnit.Case | ||
import :meck | ||
import Verk.Supervisor | ||
|
||
setup do | ||
new Supervisor | ||
on_exit fn -> unload() end | ||
:ok | ||
end | ||
|
||
describe "init/1" do | ||
test "defines tree" do | ||
{:ok, {_, children}} = Verk.Supervisor.init([]) | ||
[redix, producer, stats, schedule_manager, default] = children | ||
{:ok, {_, children}} = init([]) | ||
[redix, producer, stats, schedule_manager, manager_sup] = children | ||
|
||
assert {Verk.Redis, _, _, _, :worker, [Redix]} = redix | ||
assert {Verk.EventProducer, _, _, _, :worker, [Verk.EventProducer]} = producer | ||
assert {Verk.QueueStats, _, _, _, :worker, [Verk.QueueStats]} = stats | ||
assert {Verk.ScheduleManager, _, _, _, :worker, [Verk.ScheduleManager]} = schedule_manager | ||
assert {:"default.supervisor", _, _, _, :supervisor, [Verk.Queue.Supervisor]} = default | ||
assert {Verk.Manager.Supervisor, _, _, _, :supervisor, [Verk.Manager.Supervisor]} = manager_sup | ||
end | ||
end | ||
|
||
describe "start_child/2" do | ||
test "add a new queue" do | ||
queue = :test_queue | ||
|
||
child = { :"test_queue.supervisor", { Verk.Queue.Supervisor, :start_link, [:test_queue, 30] }, :permanent, :infinity, :supervisor, [ Verk.Queue.Supervisor ] } | ||
expect(Supervisor, :start_child, [Verk.Supervisor, child], :ok) | ||
|
||
assert start_child(queue, 30) == :ok | ||
|
||
assert validate Supervisor | ||
end | ||
end | ||
|
||
describe "stop_child/1" do | ||
test "a queue successfully" do | ||
queue = :test_queue | ||
|
||
expect(Supervisor, :terminate_child, [Verk.Supervisor, :"test_queue.supervisor"], :ok) | ||
expect(Supervisor, :delete_child, [Verk.Supervisor, :"test_queue.supervisor"], :ok) | ||
|
||
assert stop_child(queue) == :ok | ||
|
||
assert validate Supervisor | ||
end | ||
|
||
test "a queue unsuccessfully terminating child" do | ||
queue = :test_queue | ||
|
||
expect(Supervisor, :terminate_child, [Verk.Supervisor, :"test_queue.supervisor"], { :error, :not_found }) | ||
|
||
assert stop_child(queue) == { :error, :not_found } | ||
|
||
assert validate Supervisor | ||
end | ||
|
||
test "a queue unsuccessfully deleting child" do | ||
queue = :test_queue | ||
|
||
expect(Supervisor, :terminate_child, [Verk.Supervisor, :"test_queue.supervisor"], :ok) | ||
expect(Supervisor, :delete_child, [Verk.Supervisor, :"test_queue.supervisor"], { :error, :not_found }) | ||
|
||
assert stop_child(queue) == { :error, :not_found } | ||
|
||
assert validate Supervisor | ||
end | ||
end | ||
end |