Current section
Files
Jump to
Current section
Files
priv/templates/mandarin.gen.channel/channel_test.exs
defmodule <%= module %>ChannelTest do
use <%= web_module %>.ChannelCase
setup do
{:ok, _, socket} =
socket(<%= web_module %>.UserSocket, "user_id", %{some: :assign})
|> subscribe_and_join(<%= module %>Channel, "<%= singular %>:lobby")
{:ok, socket: socket}
end
test "ping replies with status ok", %{socket: socket} do
ref = push socket, "ping", %{"hello" => "there"}
assert_reply ref, :ok, %{"hello" => "there"}
end
test "shout broadcasts to <%= singular %>:lobby", %{socket: socket} do
push socket, "shout", %{"hello" => "all"}
assert_broadcast "shout", %{"hello" => "all"}
end
test "broadcasts are pushed to the client", %{socket: socket} do
broadcast_from! socket, "broadcast", %{"some" => "data"}
assert_push "broadcast", %{"some" => "data"}
end
end