add container live test for empty ammo groups
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
ca4b5b9822
commit
cb4de9a6ff
@ -6,7 +6,7 @@ defmodule CanneryWeb.ContainerLiveTest do
|
|||||||
use CanneryWeb.ConnCase
|
use CanneryWeb.ConnCase
|
||||||
import Phoenix.LiveViewTest
|
import Phoenix.LiveViewTest
|
||||||
import CanneryWeb.Gettext
|
import CanneryWeb.Gettext
|
||||||
alias Cannery.Containers
|
alias Cannery.{Containers, Repo}
|
||||||
|
|
||||||
@moduletag :container_live_test
|
@moduletag :container_live_test
|
||||||
|
|
||||||
@ -22,6 +22,22 @@ defmodule CanneryWeb.ContainerLiveTest do
|
|||||||
"name" => "some updated name",
|
"name" => "some updated name",
|
||||||
"type" => "some updated type"
|
"type" => "some updated type"
|
||||||
}
|
}
|
||||||
|
@ammo_type_attrs %{
|
||||||
|
"bullet_type" => "some bullet_type",
|
||||||
|
"case_material" => "some case_material",
|
||||||
|
"desc" => "some desc",
|
||||||
|
"manufacturer" => "some manufacturer",
|
||||||
|
"name" => "some name",
|
||||||
|
"grains" => 120
|
||||||
|
}
|
||||||
|
@ammo_group_attrs %{
|
||||||
|
"notes" => "some ammo group",
|
||||||
|
"count" => 20
|
||||||
|
}
|
||||||
|
@shot_group_attrs %{
|
||||||
|
"notes" => "some shot group",
|
||||||
|
"count" => 20
|
||||||
|
}
|
||||||
|
|
||||||
# @invalid_attrs %{desc: nil, location: nil, name: nil, type: nil}
|
# @invalid_attrs %{desc: nil, location: nil, name: nil, type: nil}
|
||||||
|
|
||||||
@ -30,6 +46,15 @@ defmodule CanneryWeb.ContainerLiveTest do
|
|||||||
%{container: container}
|
%{container: container}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
defp create_empty_ammo_group(%{container: container, current_user: current_user}) do
|
||||||
|
ammo_type = ammo_type_fixture(@ammo_type_attrs, current_user)
|
||||||
|
{1, [ammo_group]} = ammo_group_fixture(@ammo_group_attrs, ammo_type, container, current_user)
|
||||||
|
shot_group = shot_group_fixture(@shot_group_attrs, current_user, ammo_group)
|
||||||
|
ammo_group = ammo_group |> Repo.reload!()
|
||||||
|
|
||||||
|
%{ammo_group: ammo_group, shot_group: shot_group}
|
||||||
|
end
|
||||||
|
|
||||||
describe "Index" do
|
describe "Index" do
|
||||||
setup [:register_and_log_in_user, :create_container]
|
setup [:register_and_log_in_user, :create_container]
|
||||||
|
|
||||||
@ -134,4 +159,21 @@ defmodule CanneryWeb.ContainerLiveTest do
|
|||||||
assert html =~ "some updated location"
|
assert html =~ "some updated location"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe "Show with empty ammo group" do
|
||||||
|
setup [:register_and_log_in_user, :create_container, :create_empty_ammo_group]
|
||||||
|
|
||||||
|
test "hides empty ammo groups by default",
|
||||||
|
%{conn: conn, container: container} do
|
||||||
|
{:ok, show_live, html} = live(conn, Routes.container_show_path(conn, :show, container))
|
||||||
|
|
||||||
|
assert html =~ gettext("Show used")
|
||||||
|
refute html =~ "some ammo group"
|
||||||
|
|
||||||
|
html = show_live |> element("[data-qa=\"toggle_show_used\"]") |> render_click()
|
||||||
|
|
||||||
|
assert html =~ "some ammo group"
|
||||||
|
assert html =~ "Empty"
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user