2021-09-02 23:31:14 -04:00
|
|
|
defmodule CanneryWeb.AmmoGroupLiveTest do
|
2022-02-16 22:51:22 -05:00
|
|
|
@moduledoc """
|
|
|
|
Tests ammo group live pages
|
|
|
|
"""
|
|
|
|
|
2021-09-02 23:31:14 -04:00
|
|
|
use CanneryWeb.ConnCase
|
|
|
|
import Phoenix.LiveViewTest
|
2022-02-08 23:58:54 -05:00
|
|
|
import CanneryWeb.Gettext
|
2022-02-24 00:16:23 -05:00
|
|
|
alias Cannery.{Ammo, Repo}
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2022-02-16 22:51:22 -05:00
|
|
|
@moduletag :ammo_group_live_test
|
2022-02-17 21:19:04 -05:00
|
|
|
@shot_group_create_attrs %{"ammo_left" => 5, "notes" => "some notes"}
|
2022-11-08 21:35:17 -05:00
|
|
|
@shot_group_update_attrs %{
|
|
|
|
"count" => 5,
|
|
|
|
"date" => ~N[2022-02-13 03:17:00],
|
|
|
|
"notes" => "some updated notes"
|
|
|
|
}
|
2022-02-24 00:16:23 -05:00
|
|
|
@create_attrs %{"count" => 42, "notes" => "some notes", "price_paid" => 120.5}
|
|
|
|
@update_attrs %{"count" => 43, "notes" => "some updated notes", "price_paid" => 456.7}
|
|
|
|
@ammo_group_create_limit 10_000
|
2022-11-10 18:21:29 -05:00
|
|
|
@empty_attrs %{
|
2022-11-08 21:35:17 -05:00
|
|
|
"price_paid" => 50,
|
|
|
|
"count" => 20
|
|
|
|
}
|
|
|
|
@shot_group_attrs %{
|
|
|
|
"price_paid" => 50,
|
|
|
|
"count" => 20
|
|
|
|
}
|
|
|
|
|
2022-02-17 20:01:14 -05:00
|
|
|
# @invalid_attrs %{count: -1, notes: nil, price_paid: nil}
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2022-02-16 22:51:22 -05:00
|
|
|
defp create_ammo_group(%{current_user: current_user}) do
|
|
|
|
ammo_type = ammo_type_fixture(current_user)
|
|
|
|
container = container_fixture(current_user)
|
2022-11-10 18:21:29 -05:00
|
|
|
{1, [ammo_group]} = ammo_group_fixture(@create_attrs, ammo_type, container, current_user)
|
2022-02-23 20:45:58 -05:00
|
|
|
|
2022-11-08 21:35:17 -05:00
|
|
|
%{ammo_type: ammo_type, ammo_group: ammo_group, container: container}
|
|
|
|
end
|
|
|
|
|
|
|
|
defp create_shot_group(%{current_user: current_user, ammo_group: ammo_group}) do
|
|
|
|
shot_group = shot_group_fixture(@shot_group_update_attrs, current_user, ammo_group)
|
|
|
|
ammo_group = ammo_group |> Repo.reload!()
|
2022-02-23 20:45:58 -05:00
|
|
|
|
|
|
|
%{ammo_group: ammo_group, shot_group: shot_group}
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
2022-11-08 21:35:17 -05:00
|
|
|
defp create_empty_ammo_group(%{
|
|
|
|
current_user: current_user,
|
|
|
|
ammo_type: ammo_type,
|
|
|
|
container: container
|
|
|
|
}) do
|
2022-11-10 18:21:29 -05:00
|
|
|
{1, [ammo_group]} = ammo_group_fixture(@empty_attrs, ammo_type, container, current_user)
|
2022-11-08 21:35:17 -05:00
|
|
|
shot_group = shot_group_fixture(@shot_group_attrs, current_user, ammo_group)
|
|
|
|
ammo_group = ammo_group |> Repo.reload!()
|
|
|
|
%{empty_ammo_group: ammo_group, shot_group: shot_group}
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Index of ammo group" do
|
2022-02-16 22:51:22 -05:00
|
|
|
setup [:register_and_log_in_user, :create_ammo_group]
|
2021-09-02 23:31:14 -04:00
|
|
|
|
|
|
|
test "lists all ammo_groups", %{conn: conn, ammo_group: ammo_group} do
|
|
|
|
{:ok, _index_live, html} = live(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
2022-02-16 22:51:22 -05:00
|
|
|
ammo_group = ammo_group |> Repo.preload(:ammo_type)
|
2022-07-01 00:23:04 -04:00
|
|
|
assert html =~ gettext("Ammo")
|
2022-02-16 22:51:22 -05:00
|
|
|
assert html =~ ammo_group.ammo_type.name
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
2022-12-03 18:46:44 -05:00
|
|
|
test "can search for ammo_groups", %{conn: conn, ammo_group: ammo_group} do
|
|
|
|
{:ok, index_live, html} = live(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
|
|
|
ammo_group = ammo_group |> Repo.preload(:ammo_type)
|
|
|
|
|
|
|
|
assert html =~ ammo_group.ammo_type.name
|
|
|
|
|
|
|
|
assert index_live
|
2023-03-15 00:45:08 -04:00
|
|
|
|> form(~s/form[phx-change="search"]/,
|
2022-12-03 18:46:44 -05:00
|
|
|
search: %{search_term: ammo_group.ammo_type.name}
|
|
|
|
)
|
|
|
|
|> render_change() =~ ammo_group.ammo_type.name
|
|
|
|
|
|
|
|
assert_patch(
|
|
|
|
index_live,
|
|
|
|
Routes.ammo_group_index_path(conn, :search, ammo_group.ammo_type.name)
|
|
|
|
)
|
|
|
|
|
|
|
|
refute index_live
|
2023-03-15 00:45:08 -04:00
|
|
|
|> form(~s/form[phx-change="search"]/, search: %{search_term: "something_else"})
|
2022-12-03 18:46:44 -05:00
|
|
|
|> render_change() =~ ammo_group.ammo_type.name
|
|
|
|
|
|
|
|
assert_patch(index_live, Routes.ammo_group_index_path(conn, :search, "something_else"))
|
|
|
|
|
|
|
|
assert index_live
|
2023-03-15 00:45:08 -04:00
|
|
|
|> form(~s/form[phx-change="search"]/, search: %{search_term: ""})
|
2022-12-03 18:46:44 -05:00
|
|
|
|> render_change() =~ ammo_group.ammo_type.name
|
|
|
|
|
|
|
|
assert_patch(index_live, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
end
|
|
|
|
|
2022-02-24 00:16:23 -05:00
|
|
|
test "saves a single new ammo_group", %{conn: conn} do
|
2021-09-02 23:31:14 -04:00
|
|
|
{:ok, index_live, _html} = live(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
2022-07-01 00:23:04 -04:00
|
|
|
assert index_live |> element("a", dgettext("actions", "Add Ammo")) |> render_click() =~
|
2022-11-10 18:21:29 -05:00
|
|
|
dgettext("actions", "Add Ammo")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
|
|
|
assert_patch(index_live, Routes.ammo_group_index_path(conn, :new))
|
|
|
|
|
2022-02-16 22:51:22 -05:00
|
|
|
# assert index_live
|
|
|
|
# |> form("#ammo_group-form", ammo_group: @invalid_attrs)
|
|
|
|
# |> render_change() =~ dgettext("errors", "can't be blank")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2022-03-28 23:05:12 -04:00
|
|
|
{:ok, _view, html} =
|
2021-09-02 23:31:14 -04:00
|
|
|
index_live
|
|
|
|
|> form("#ammo_group-form", ammo_group: @create_attrs)
|
|
|
|
|> render_submit()
|
|
|
|
|> follow_redirect(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
2022-07-01 00:23:04 -04:00
|
|
|
assert html =~ dgettext("prompts", "Ammo added successfully")
|
2022-02-19 00:31:17 -05:00
|
|
|
assert html =~ "42"
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
2022-02-24 00:16:23 -05:00
|
|
|
test "saves multiple new ammo_groups", %{conn: conn, current_user: current_user} do
|
|
|
|
multiplier = 25
|
|
|
|
|
|
|
|
{:ok, index_live, _html} = live(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
2022-07-01 00:23:04 -04:00
|
|
|
assert index_live |> element("a", dgettext("actions", "Add Ammo")) |> render_click() =~
|
2022-11-10 18:21:29 -05:00
|
|
|
dgettext("actions", "Add Ammo")
|
2022-02-24 00:16:23 -05:00
|
|
|
|
|
|
|
assert_patch(index_live, Routes.ammo_group_index_path(conn, :new))
|
|
|
|
|
|
|
|
# assert index_live
|
|
|
|
# |> form("#ammo_group-form", ammo_group: @invalid_attrs)
|
|
|
|
# |> render_change() =~ dgettext("errors", "can't be blank")
|
|
|
|
|
2022-03-28 23:05:12 -04:00
|
|
|
{:ok, _view, html} =
|
2022-02-24 00:16:23 -05:00
|
|
|
index_live
|
|
|
|
|> form("#ammo_group-form",
|
|
|
|
ammo_group: @create_attrs |> Map.put("multiplier", to_string(multiplier))
|
|
|
|
)
|
|
|
|
|> render_submit()
|
|
|
|
|> follow_redirect(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
2022-07-01 00:23:04 -04:00
|
|
|
assert html =~ dgettext("prompts", "Ammo added successfully")
|
2022-12-03 18:46:44 -05:00
|
|
|
assert Ammo.list_ammo_groups(nil, false, current_user) |> Enum.count() == multiplier + 1
|
2022-02-24 00:16:23 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test "does not save invalid number of new ammo_groups", %{conn: conn} do
|
|
|
|
{:ok, index_live, _html} = live(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
2022-07-01 00:23:04 -04:00
|
|
|
assert index_live |> element("a", dgettext("actions", "Add Ammo")) |> render_click() =~
|
2022-11-10 18:21:29 -05:00
|
|
|
dgettext("actions", "Add Ammo")
|
2022-02-24 00:16:23 -05:00
|
|
|
|
|
|
|
assert_patch(index_live, Routes.ammo_group_index_path(conn, :new))
|
|
|
|
|
|
|
|
# assert index_live
|
|
|
|
# |> form("#ammo_group-form", ammo_group: @invalid_attrs)
|
|
|
|
# |> render_change() =~ dgettext("errors", "can't be blank")
|
|
|
|
|
|
|
|
assert index_live
|
|
|
|
|> form("#ammo_group-form", ammo_group: @create_attrs |> Map.put("multiplier", "0"))
|
|
|
|
|> render_submit() =~
|
|
|
|
dgettext(
|
|
|
|
"errors",
|
|
|
|
"Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}",
|
|
|
|
multiplier: 0,
|
|
|
|
max: @ammo_group_create_limit
|
|
|
|
)
|
|
|
|
|
|
|
|
assert index_live
|
|
|
|
|> form("#ammo_group-form",
|
|
|
|
ammo_group:
|
|
|
|
@create_attrs |> Map.put("multiplier", to_string(@ammo_group_create_limit + 1))
|
|
|
|
)
|
|
|
|
|> render_submit() =~
|
|
|
|
dgettext(
|
|
|
|
"errors",
|
|
|
|
"Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}",
|
|
|
|
multiplier: @ammo_group_create_limit + 1,
|
|
|
|
max: @ammo_group_create_limit
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2021-09-02 23:31:14 -04:00
|
|
|
test "updates ammo_group in listing", %{conn: conn, ammo_group: ammo_group} do
|
|
|
|
{:ok, index_live, _html} = live(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
2022-02-16 22:51:22 -05:00
|
|
|
assert index_live
|
2023-03-15 00:45:08 -04:00
|
|
|
|> element(~s/a[aria-label="Edit ammo group of #{ammo_group.count} bullets"]/)
|
2022-02-16 22:51:22 -05:00
|
|
|
|> render_click() =~
|
2022-11-19 15:04:56 -05:00
|
|
|
gettext("Edit ammo")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
|
|
|
assert_patch(index_live, Routes.ammo_group_index_path(conn, :edit, ammo_group))
|
|
|
|
|
2022-02-16 22:51:22 -05:00
|
|
|
# assert index_live
|
|
|
|
# |> form("#ammo_group-form", ammo_group: @invalid_attrs)
|
|
|
|
# |> render_change() =~ dgettext("errors", "can't be blank")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2022-03-28 23:05:12 -04:00
|
|
|
{:ok, _view, html} =
|
2021-09-02 23:31:14 -04:00
|
|
|
index_live
|
|
|
|
|> form("#ammo_group-form", ammo_group: @update_attrs)
|
|
|
|
|> render_submit()
|
|
|
|
|> follow_redirect(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
2022-07-01 00:23:04 -04:00
|
|
|
assert html =~ dgettext("prompts", "Ammo updated successfully")
|
2022-02-19 00:31:17 -05:00
|
|
|
assert html =~ "43"
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
2022-11-10 18:21:29 -05:00
|
|
|
|
|
|
|
test "clones ammo_group in listing", %{conn: conn, ammo_group: ammo_group} do
|
|
|
|
{:ok, index_live, _html} = live(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
|
|
|
html =
|
|
|
|
index_live
|
2023-03-15 00:45:08 -04:00
|
|
|
|> element(~s/a[aria-label="Clone ammo group of #{ammo_group.count} bullets"]/)
|
2022-11-10 18:21:29 -05:00
|
|
|
|> render_click()
|
|
|
|
|
|
|
|
assert html =~ dgettext("actions", "Add Ammo")
|
|
|
|
assert html =~ gettext("$%{amount}", amount: 120.5 |> :erlang.float_to_binary(decimals: 2))
|
|
|
|
|
|
|
|
assert_patch(index_live, Routes.ammo_group_index_path(conn, :clone, ammo_group))
|
|
|
|
|
|
|
|
# assert index_live
|
|
|
|
# |> form("#ammo_group-form", ammo_group: @invalid_attrs)
|
|
|
|
# |> render_change() =~ dgettext("errors", "can't be blank")
|
|
|
|
|
|
|
|
{:ok, _view, html} =
|
|
|
|
index_live
|
|
|
|
|> form("#ammo_group-form")
|
|
|
|
|> render_submit()
|
|
|
|
|> follow_redirect(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
|
|
|
assert html =~ dgettext("prompts", "Ammo added successfully")
|
|
|
|
assert html =~ "42"
|
|
|
|
assert html =~ gettext("$%{amount}", amount: 120.5 |> :erlang.float_to_binary(decimals: 2))
|
|
|
|
end
|
|
|
|
|
|
|
|
test "clones ammo_group in listing with updates", %{conn: conn, ammo_group: ammo_group} do
|
|
|
|
{:ok, index_live, _html} = live(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
|
|
|
html =
|
|
|
|
index_live
|
2023-03-15 00:45:08 -04:00
|
|
|
|> element(~s/a[aria-label="Clone ammo group of #{ammo_group.count} bullets"]/)
|
2022-11-10 18:21:29 -05:00
|
|
|
|> render_click()
|
|
|
|
|
|
|
|
assert html =~ dgettext("actions", "Add Ammo")
|
|
|
|
assert html =~ gettext("$%{amount}", amount: 120.5 |> :erlang.float_to_binary(decimals: 2))
|
|
|
|
|
|
|
|
assert_patch(index_live, Routes.ammo_group_index_path(conn, :clone, ammo_group))
|
|
|
|
|
|
|
|
# assert index_live
|
|
|
|
# |> form("#ammo_group-form", ammo_group: @invalid_attrs)
|
|
|
|
# |> render_change() =~ dgettext("errors", "can't be blank")
|
|
|
|
|
|
|
|
{:ok, _view, html} =
|
|
|
|
index_live
|
|
|
|
|> form("#ammo_group-form", ammo_group: Map.merge(@create_attrs, %{"count" => 43}))
|
|
|
|
|> render_submit()
|
|
|
|
|> follow_redirect(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
|
|
|
assert html =~ dgettext("prompts", "Ammo added successfully")
|
|
|
|
assert html =~ "43"
|
|
|
|
assert html =~ gettext("$%{amount}", amount: 120.5 |> :erlang.float_to_binary(decimals: 2))
|
|
|
|
end
|
2021-09-02 23:31:14 -04:00
|
|
|
|
|
|
|
test "deletes ammo_group in listing", %{conn: conn, ammo_group: ammo_group} do
|
|
|
|
{:ok, index_live, _html} = live(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
2022-02-16 22:51:22 -05:00
|
|
|
assert index_live
|
2023-03-15 00:45:08 -04:00
|
|
|
|> element(~s/a[aria-label="Delete ammo group of #{ammo_group.count} bullets"]/)
|
2022-02-16 22:51:22 -05:00
|
|
|
|> render_click()
|
|
|
|
|
2021-09-02 23:31:14 -04:00
|
|
|
refute has_element?(index_live, "#ammo_group-#{ammo_group.id}")
|
|
|
|
end
|
2022-11-08 21:35:17 -05:00
|
|
|
|
|
|
|
test "saves new shot_group", %{conn: conn, ammo_group: ammo_group} do
|
|
|
|
{:ok, index_live, _html} = live(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
|
|
|
assert index_live |> element("a", dgettext("actions", "Record shots")) |> render_click() =~
|
|
|
|
gettext("Record shots")
|
|
|
|
|
|
|
|
assert_patch(index_live, Routes.ammo_group_index_path(conn, :add_shot_group, ammo_group))
|
|
|
|
|
|
|
|
# assert index_live
|
|
|
|
# |> form("#shot_group-form", shot_group: @invalid_attrs)
|
|
|
|
# |> render_change() =~ dgettext("errors", "is invalid")
|
|
|
|
|
|
|
|
{:ok, _view, html} =
|
|
|
|
index_live
|
|
|
|
|> form("#shot-group-form", shot_group: @shot_group_create_attrs)
|
|
|
|
|> render_submit()
|
|
|
|
|> follow_redirect(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
|
|
|
assert html =~ dgettext("prompts", "Shots recorded successfully")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Index of empty ammo group" do
|
|
|
|
setup [:register_and_log_in_user, :create_ammo_group, :create_empty_ammo_group]
|
|
|
|
|
|
|
|
test "hides empty ammo groups by default", %{conn: conn, empty_ammo_group: ammo_group} do
|
|
|
|
{:ok, show_live, html} = live(conn, Routes.ammo_group_index_path(conn, :index))
|
|
|
|
|
2022-11-09 18:45:28 -05:00
|
|
|
assert html =~ dgettext("actions", "Show used")
|
2022-11-08 21:35:17 -05:00
|
|
|
refute html =~ gettext("$%{amount}", amount: 50.00 |> :erlang.float_to_binary(decimals: 2))
|
|
|
|
|
|
|
|
refute html =~
|
|
|
|
"\n" <>
|
|
|
|
gettext("%{percentage}%",
|
|
|
|
percentage: ammo_group |> Ammo.get_percentage_remaining()
|
|
|
|
) <>
|
|
|
|
"\n"
|
|
|
|
|
2023-03-15 00:45:08 -04:00
|
|
|
html =
|
|
|
|
show_live
|
|
|
|
|> element(~s/input[type="checkbox"][aria-labelledby="toggle_show_used-label"}]/)
|
|
|
|
|> render_click()
|
2022-11-08 21:35:17 -05:00
|
|
|
|
|
|
|
assert html =~ gettext("$%{amount}", amount: 50.00 |> :erlang.float_to_binary(decimals: 2))
|
|
|
|
|
|
|
|
assert html =~
|
|
|
|
"\n" <>
|
|
|
|
gettext("%{percentage}%",
|
|
|
|
percentage: ammo_group |> Ammo.get_percentage_remaining()
|
|
|
|
) <>
|
|
|
|
"\n"
|
|
|
|
end
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
2022-11-08 21:35:17 -05:00
|
|
|
describe "Show ammo group" do
|
2022-02-16 22:51:22 -05:00
|
|
|
setup [:register_and_log_in_user, :create_ammo_group]
|
2021-09-02 23:31:14 -04:00
|
|
|
|
|
|
|
test "displays ammo_group", %{conn: conn, ammo_group: ammo_group} do
|
|
|
|
{:ok, _show_live, html} = live(conn, Routes.ammo_group_show_path(conn, :show, ammo_group))
|
|
|
|
|
2022-02-16 22:51:22 -05:00
|
|
|
ammo_group = ammo_group |> Repo.preload(:ammo_type)
|
2022-07-01 00:23:04 -04:00
|
|
|
assert html =~ gettext("Show Ammo")
|
2022-02-16 22:51:22 -05:00
|
|
|
assert html =~ ammo_group.ammo_type.name
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test "updates ammo_group within modal", %{conn: conn, ammo_group: ammo_group} do
|
|
|
|
{:ok, show_live, _html} = live(conn, Routes.ammo_group_show_path(conn, :show, ammo_group))
|
|
|
|
|
2022-02-16 22:51:22 -05:00
|
|
|
assert show_live
|
2023-03-15 00:45:08 -04:00
|
|
|
|> element(~s/a[aria-label="Edit ammo group of #{ammo_group.count} bullets"]/)
|
2022-02-16 22:51:22 -05:00
|
|
|
|> render_click() =~
|
2022-07-01 00:23:04 -04:00
|
|
|
gettext("Edit Ammo")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
|
|
|
assert_patch(show_live, Routes.ammo_group_show_path(conn, :edit, ammo_group))
|
|
|
|
|
2022-02-16 22:51:22 -05:00
|
|
|
# assert show_live
|
|
|
|
# |> form("#ammo_group-form", ammo_group: @invalid_attrs)
|
|
|
|
# |> render_change() =~ dgettext("errors", "can't be blank")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2022-03-28 23:05:12 -04:00
|
|
|
{:ok, _view, html} =
|
2021-09-02 23:31:14 -04:00
|
|
|
show_live
|
|
|
|
|> form("#ammo_group-form", ammo_group: @update_attrs)
|
|
|
|
|> render_submit()
|
|
|
|
|> follow_redirect(conn, Routes.ammo_group_show_path(conn, :show, ammo_group))
|
|
|
|
|
2022-07-01 00:23:04 -04:00
|
|
|
assert html =~ dgettext("prompts", "Ammo updated successfully")
|
2021-09-02 23:31:14 -04:00
|
|
|
assert html =~ "some updated notes"
|
|
|
|
end
|
2022-02-17 21:19:04 -05:00
|
|
|
|
|
|
|
test "saves new shot_group", %{conn: conn, ammo_group: ammo_group} do
|
|
|
|
{:ok, index_live, _html} = live(conn, Routes.ammo_group_show_path(conn, :show, ammo_group))
|
|
|
|
|
|
|
|
assert index_live |> element("a", dgettext("actions", "Record shots")) |> render_click() =~
|
|
|
|
gettext("Record shots")
|
|
|
|
|
|
|
|
assert_patch(index_live, Routes.ammo_group_show_path(conn, :add_shot_group, ammo_group))
|
|
|
|
|
|
|
|
# assert index_live
|
|
|
|
# |> form("#shot_group-form", shot_group: @invalid_attrs)
|
|
|
|
# |> render_change() =~ dgettext("errors", "is invalid")
|
|
|
|
|
2022-03-28 23:05:12 -04:00
|
|
|
{:ok, _view, html} =
|
2022-02-17 21:19:04 -05:00
|
|
|
index_live
|
|
|
|
|> form("#shot-group-form", shot_group: @shot_group_create_attrs)
|
|
|
|
|> render_submit()
|
|
|
|
|> follow_redirect(conn, Routes.ammo_group_show_path(conn, :show, ammo_group))
|
|
|
|
|
|
|
|
assert html =~ dgettext("prompts", "Shots recorded successfully")
|
|
|
|
end
|
2022-11-08 21:35:17 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Show ammo group with shot group" do
|
|
|
|
setup [:register_and_log_in_user, :create_ammo_group, :create_shot_group]
|
2022-02-23 20:45:58 -05:00
|
|
|
|
|
|
|
test "updates shot_group in listing",
|
|
|
|
%{conn: conn, ammo_group: ammo_group, shot_group: shot_group} do
|
|
|
|
{:ok, index_live, _html} = live(conn, Routes.ammo_group_show_path(conn, :edit, ammo_group))
|
|
|
|
|
2023-03-15 00:45:08 -04:00
|
|
|
assert index_live
|
|
|
|
|> element(~s/a[aria-label="Edit shot group of #{shot_group.count} shots"]/)
|
|
|
|
|> render_click() =~
|
2022-02-23 20:45:58 -05:00
|
|
|
gettext("Edit Shot Records")
|
|
|
|
|
|
|
|
assert_patch(
|
|
|
|
index_live,
|
|
|
|
Routes.ammo_group_show_path(conn, :edit_shot_group, ammo_group, shot_group)
|
|
|
|
)
|
|
|
|
|
|
|
|
# assert index_live
|
|
|
|
# |> form("#shot_group-form", shot_group: @invalid_attrs)
|
|
|
|
# |> render_change() =~ dgettext("errors", "is invalid")
|
|
|
|
|
2022-03-28 23:05:12 -04:00
|
|
|
{:ok, _view, html} =
|
2022-02-23 20:45:58 -05:00
|
|
|
index_live
|
|
|
|
|> form("#shot-group-form", shot_group: @shot_group_update_attrs)
|
|
|
|
|> render_submit()
|
|
|
|
|> follow_redirect(conn, Routes.ammo_group_show_path(conn, :show, ammo_group))
|
|
|
|
|
|
|
|
assert html =~ dgettext("actions", "Shot records updated successfully")
|
|
|
|
assert html =~ "some updated notes"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "deletes shot_group in listing",
|
|
|
|
%{conn: conn, ammo_group: ammo_group, shot_group: shot_group} do
|
|
|
|
{:ok, index_live, _html} =
|
|
|
|
live(conn, Routes.ammo_group_show_path(conn, :edit_shot_group, ammo_group, shot_group))
|
|
|
|
|
2023-03-15 00:45:08 -04:00
|
|
|
assert index_live
|
|
|
|
|> element(~s/a[aria-label="Delete shot record of #{shot_group.count} shots"]/)
|
|
|
|
|> render_click()
|
|
|
|
|
2022-02-23 20:45:58 -05:00
|
|
|
refute has_element?(index_live, "#shot_group-#{shot_group.id}")
|
|
|
|
end
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
end
|