2023-03-29 22:54:55 -04:00
|
|
|
defmodule CanneryWeb.PackLiveTest do
|
2022-02-16 22:51:22 -05:00
|
|
|
@moduledoc """
|
2023-03-29 23:49:45 -04:00
|
|
|
Tests pack live pages
|
2022-02-16 22:51:22 -05:00
|
|
|
"""
|
|
|
|
|
2023-04-14 23:48:50 -04:00
|
|
|
use CanneryWeb.ConnCase, async: true
|
2021-09-02 23:31:14 -04:00
|
|
|
import Phoenix.LiveViewTest
|
2022-02-24 00:16:23 -05:00
|
|
|
alias Cannery.{Ammo, Repo}
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
@moduletag :pack_live_test
|
2023-03-28 21:57:29 -04:00
|
|
|
@create_attrs %{count: 42, notes: "some notes", price_paid: 120.5}
|
|
|
|
@update_attrs %{count: 43, notes: "some updated notes", price_paid: 456.7}
|
|
|
|
@invalid_attrs %{count: nil, notes: nil, price_paid: nil}
|
2023-03-29 22:54:55 -04:00
|
|
|
@pack_create_limit 10_000
|
2023-03-30 20:43:30 -04:00
|
|
|
@shot_record_create_attrs %{ammo_left: 5, notes: "some notes"}
|
|
|
|
@shot_record_update_attrs %{
|
2023-03-28 21:57:29 -04:00
|
|
|
count: 5,
|
|
|
|
date: ~N[2022-02-13 03:17:00],
|
|
|
|
notes: "some updated notes"
|
2022-11-08 21:35:17 -05:00
|
|
|
}
|
2023-03-30 20:43:30 -04:00
|
|
|
@shot_record_invalid_attrs %{ammo_left: nil, count: nil, notes: nil}
|
2022-11-10 18:21:29 -05:00
|
|
|
@empty_attrs %{
|
2023-03-28 21:57:29 -04:00
|
|
|
price_paid: 50,
|
|
|
|
count: 20
|
2022-11-08 21:35:17 -05:00
|
|
|
}
|
2023-03-30 20:43:30 -04:00
|
|
|
@shot_record_attrs %{
|
2023-03-28 21:57:29 -04:00
|
|
|
price_paid: 50,
|
|
|
|
count: 20
|
2022-11-08 21:35:17 -05:00
|
|
|
}
|
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
defp create_pack(%{current_user: current_user}) do
|
2023-03-30 21:53:52 -04:00
|
|
|
type = type_fixture(current_user)
|
2022-02-16 22:51:22 -05:00
|
|
|
container = container_fixture(current_user)
|
2023-03-30 21:53:52 -04:00
|
|
|
{1, [pack]} = pack_fixture(@create_attrs, type, container, current_user)
|
|
|
|
[type: type, pack: pack, container: container]
|
2022-11-08 21:35:17 -05:00
|
|
|
end
|
|
|
|
|
2023-03-30 20:43:30 -04:00
|
|
|
defp create_shot_record(%{current_user: current_user, pack: pack}) do
|
|
|
|
shot_record = shot_record_fixture(@shot_record_update_attrs, current_user, pack)
|
2023-03-29 22:54:55 -04:00
|
|
|
pack = pack |> Repo.reload!()
|
2023-03-30 20:43:30 -04:00
|
|
|
[pack: pack, shot_record: shot_record]
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
defp create_empty_pack(%{
|
2022-11-08 21:35:17 -05:00
|
|
|
current_user: current_user,
|
2023-03-30 21:53:52 -04:00
|
|
|
type: type,
|
2022-11-08 21:35:17 -05:00
|
|
|
container: container
|
|
|
|
}) do
|
2023-03-30 21:53:52 -04:00
|
|
|
{1, [pack]} = pack_fixture(@empty_attrs, type, container, current_user)
|
2023-03-30 20:43:30 -04:00
|
|
|
shot_record = shot_record_fixture(@shot_record_attrs, current_user, pack)
|
2023-03-29 22:54:55 -04:00
|
|
|
pack = pack |> Repo.reload!()
|
2023-03-30 20:43:30 -04:00
|
|
|
[empty_pack: pack, shot_record: shot_record]
|
2022-11-08 21:35:17 -05:00
|
|
|
end
|
|
|
|
|
2023-03-29 23:49:45 -04:00
|
|
|
describe "Index of pack" do
|
2023-03-29 22:54:55 -04:00
|
|
|
setup [:register_and_log_in_user, :create_pack]
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
test "lists all packs", %{conn: conn, pack: pack} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, _index_live, html} = live(conn, ~p"/ammo")
|
2023-03-30 21:53:52 -04:00
|
|
|
pack = pack |> Repo.preload(:type)
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "Ammo"
|
2023-03-30 21:53:52 -04:00
|
|
|
assert html =~ pack.type.name
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
2023-03-23 22:07:25 -04:00
|
|
|
test "can sort by type",
|
|
|
|
%{conn: conn, container: container, current_user: current_user} do
|
2023-03-30 21:53:52 -04:00
|
|
|
rifle_type = type_fixture(%{class: :rifle}, current_user)
|
2023-03-29 22:54:55 -04:00
|
|
|
{1, [rifle_pack]} = pack_fixture(rifle_type, container, current_user)
|
2023-03-30 21:53:52 -04:00
|
|
|
shotgun_type = type_fixture(%{class: :shotgun}, current_user)
|
2023-03-29 22:54:55 -04:00
|
|
|
{1, [shotgun_pack]} = pack_fixture(shotgun_type, container, current_user)
|
2023-03-30 21:53:52 -04:00
|
|
|
pistol_type = type_fixture(%{class: :pistol}, current_user)
|
2023-03-29 22:54:55 -04:00
|
|
|
{1, [pistol_pack]} = pack_fixture(pistol_type, container, current_user)
|
2023-03-23 22:07:25 -04:00
|
|
|
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, html} = live(conn, ~p"/ammo")
|
2023-03-23 22:07:25 -04:00
|
|
|
assert html =~ "All"
|
2023-03-30 21:53:52 -04:00
|
|
|
assert html =~ rifle_pack.type.name
|
|
|
|
assert html =~ shotgun_pack.type.name
|
|
|
|
assert html =~ pistol_pack.type.name
|
2023-03-23 22:07:25 -04:00
|
|
|
|
|
|
|
html =
|
|
|
|
index_live
|
2023-03-28 23:08:40 -04:00
|
|
|
|> form(~s/form[phx-change="change_class"]/)
|
2023-03-30 21:53:52 -04:00
|
|
|
|> render_change(type: %{class: :rifle})
|
2023-03-23 22:07:25 -04:00
|
|
|
|
2023-03-30 21:53:52 -04:00
|
|
|
assert html =~ rifle_pack.type.name
|
|
|
|
refute html =~ shotgun_pack.type.name
|
|
|
|
refute html =~ pistol_pack.type.name
|
2023-03-23 22:07:25 -04:00
|
|
|
|
|
|
|
html =
|
|
|
|
index_live
|
2023-03-28 23:08:40 -04:00
|
|
|
|> form(~s/form[phx-change="change_class"]/)
|
2023-03-30 21:53:52 -04:00
|
|
|
|> render_change(type: %{class: :shotgun})
|
2023-03-23 22:07:25 -04:00
|
|
|
|
2023-03-30 21:53:52 -04:00
|
|
|
refute html =~ rifle_pack.type.name
|
|
|
|
assert html =~ shotgun_pack.type.name
|
|
|
|
refute html =~ pistol_pack.type.name
|
2023-03-23 22:07:25 -04:00
|
|
|
|
|
|
|
html =
|
|
|
|
index_live
|
2023-03-28 23:08:40 -04:00
|
|
|
|> form(~s/form[phx-change="change_class"]/)
|
2023-03-30 21:53:52 -04:00
|
|
|
|> render_change(type: %{class: :pistol})
|
2023-03-23 22:07:25 -04:00
|
|
|
|
2023-03-30 21:53:52 -04:00
|
|
|
refute html =~ rifle_pack.type.name
|
|
|
|
refute html =~ shotgun_pack.type.name
|
|
|
|
assert html =~ pistol_pack.type.name
|
2023-03-23 22:07:25 -04:00
|
|
|
|
|
|
|
html =
|
|
|
|
index_live
|
2023-03-28 23:08:40 -04:00
|
|
|
|> form(~s/form[phx-change="change_class"]/)
|
2023-03-30 21:53:52 -04:00
|
|
|
|> render_change(type: %{class: :all})
|
2023-03-23 22:07:25 -04:00
|
|
|
|
2023-03-30 21:53:52 -04:00
|
|
|
assert html =~ rifle_pack.type.name
|
|
|
|
assert html =~ shotgun_pack.type.name
|
|
|
|
assert html =~ pistol_pack.type.name
|
2023-03-23 22:07:25 -04:00
|
|
|
end
|
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
test "can search for packs", %{conn: conn, pack: pack} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, html} = live(conn, ~p"/ammo")
|
2022-12-03 18:46:44 -05:00
|
|
|
|
2023-03-30 21:53:52 -04:00
|
|
|
pack = pack |> Repo.preload(:type)
|
|
|
|
assert html =~ pack.type.name
|
2022-12-03 18:46:44 -05:00
|
|
|
|
|
|
|
assert index_live
|
2023-03-28 21:57:29 -04:00
|
|
|
|> form(~s/form[phx-change="search"]/)
|
2023-03-30 21:53:52 -04:00
|
|
|
|> render_change(search: %{search_term: pack.type.name}) =~
|
|
|
|
pack.type.name
|
2022-12-03 18:46:44 -05:00
|
|
|
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(index_live, ~p"/ammo/search/#{pack.type.name}")
|
2022-12-03 18:46:44 -05:00
|
|
|
|
|
|
|
refute index_live
|
2023-03-28 21:57:29 -04:00
|
|
|
|> form(~s/form[phx-change="search"]/)
|
|
|
|
|> render_change(search: %{search_term: "something_else"}) =~
|
2023-03-30 21:53:52 -04:00
|
|
|
pack.type.name
|
2022-12-03 18:46:44 -05:00
|
|
|
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(index_live, ~p"/ammo/search/something_else")
|
2022-12-03 18:46:44 -05:00
|
|
|
|
|
|
|
assert index_live
|
2023-03-28 21:57:29 -04:00
|
|
|
|> form(~s/form[phx-change="search"]/)
|
2023-03-30 21:53:52 -04:00
|
|
|
|> render_change(search: %{search_term: ""}) =~ pack.type.name
|
2022-12-03 18:46:44 -05:00
|
|
|
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(index_live, ~p"/ammo")
|
2022-12-03 18:46:44 -05:00
|
|
|
end
|
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
test "saves a single new pack", %{conn: conn} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, _html} = live(conn, ~p"/ammo")
|
2023-03-28 21:57:29 -04:00
|
|
|
assert index_live |> element("a", "Add Ammo") |> render_click() =~ "Add Ammo"
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(index_live, ~p"/ammo/new")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert index_live
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_change(pack: @invalid_attrs) =~ "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
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_submit(pack: @create_attrs)
|
2023-04-14 23:34:11 -04:00
|
|
|
|> follow_redirect(conn, ~p"/ammo")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "Ammo added successfully"
|
2023-03-19 14:11:01 -04:00
|
|
|
assert html =~ "\n42\n"
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
test "saves multiple new packs", %{conn: conn, current_user: current_user} do
|
2022-02-24 00:16:23 -05:00
|
|
|
multiplier = 25
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, _html} = live(conn, ~p"/ammo")
|
2023-03-28 21:57:29 -04:00
|
|
|
assert index_live |> element("a", "Add Ammo") |> render_click() =~ "Add Ammo"
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(index_live, ~p"/ammo/new")
|
2022-02-24 00:16:23 -05:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert index_live
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_change(pack: @invalid_attrs) =~ "can't be blank"
|
2022-02-24 00:16:23 -05:00
|
|
|
|
2022-03-28 23:05:12 -04:00
|
|
|
{:ok, _view, html} =
|
2022-02-24 00:16:23 -05:00
|
|
|
index_live
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_submit(pack: @create_attrs |> Map.put(:multiplier, multiplier))
|
2023-04-14 23:34:11 -04:00
|
|
|
|> follow_redirect(conn, ~p"/ammo")
|
2022-02-24 00:16:23 -05:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "Ammo added successfully"
|
2023-06-04 00:00:51 -04:00
|
|
|
assert Ammo.list_packs(current_user) |> Enum.count() == multiplier + 1
|
2022-02-24 00:16:23 -05:00
|
|
|
end
|
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
test "does not save invalid number of new packs", %{conn: conn} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, _html} = live(conn, ~p"/ammo")
|
2023-03-28 21:57:29 -04:00
|
|
|
assert index_live |> element("a", "Add Ammo") |> render_click() =~ "Add Ammo"
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(index_live, ~p"/ammo/new")
|
2022-02-24 00:16:23 -05:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert index_live
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_change(pack: @invalid_attrs) =~ "can't be blank"
|
2022-02-24 00:16:23 -05:00
|
|
|
|
|
|
|
assert index_live
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_submit(pack: @create_attrs |> Map.put(:multiplier, "0")) =~
|
|
|
|
"Invalid number of copies, must be between 1 and #{@pack_create_limit}. Was 0"
|
2022-02-24 00:16:23 -05:00
|
|
|
|
|
|
|
assert index_live
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_submit(pack: @create_attrs |> Map.put(:multiplier, @pack_create_limit + 1)) =~
|
|
|
|
"Invalid number of copies, must be between 1 and #{@pack_create_limit}. Was #{@pack_create_limit + 1}"
|
2022-02-24 00:16:23 -05:00
|
|
|
end
|
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
test "updates pack in listing", %{conn: conn, pack: pack} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, _html} = live(conn, ~p"/ammo")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2022-02-16 22:51:22 -05:00
|
|
|
assert index_live
|
2023-03-29 23:49:45 -04:00
|
|
|
|> element(~s/a[aria-label="Edit pack of #{pack.count} bullets"]/)
|
2023-03-28 21:57:29 -04:00
|
|
|
|> render_click() =~ "Edit ammo"
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(index_live, ~p"/ammo/edit/#{pack}")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert index_live
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_change(pack: @invalid_attrs) =~ "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
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_submit(pack: @update_attrs)
|
2023-04-14 23:34:11 -04:00
|
|
|
|> follow_redirect(conn, ~p"/ammo")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "Ammo updated successfully"
|
2023-03-19 14:11:01 -04:00
|
|
|
assert html =~ "\n43\n"
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
2022-11-10 18:21:29 -05:00
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
test "clones pack in listing", %{conn: conn, pack: pack} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, _html} = live(conn, ~p"/ammo")
|
2022-11-10 18:21:29 -05:00
|
|
|
|
|
|
|
html =
|
|
|
|
index_live
|
2023-03-29 23:49:45 -04:00
|
|
|
|> element(~s/a[aria-label="Clone pack of #{pack.count} bullets"]/)
|
2022-11-10 18:21:29 -05:00
|
|
|
|> render_click()
|
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "Add Ammo"
|
|
|
|
assert html =~ "$#{display_currency(120.5)}"
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(index_live, ~p"/ammo/clone/#{pack}")
|
2022-11-10 18:21:29 -05:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
{:ok, _index_live, html} =
|
2022-11-10 18:21:29 -05:00
|
|
|
index_live
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
2022-11-10 18:21:29 -05:00
|
|
|
|> render_submit()
|
2023-04-14 23:34:11 -04:00
|
|
|
|> follow_redirect(conn, ~p"/ammo")
|
2022-11-10 18:21:29 -05:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "Ammo added successfully"
|
2023-03-19 14:11:01 -04:00
|
|
|
assert html =~ "\n42\n"
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "$#{display_currency(120.5)}"
|
2022-11-10 18:21:29 -05:00
|
|
|
end
|
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
test "checks validity when cloning", %{conn: conn, pack: pack} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, _html} = live(conn, ~p"/ammo")
|
2022-11-10 18:21:29 -05:00
|
|
|
|
|
|
|
html =
|
|
|
|
index_live
|
2023-03-29 23:49:45 -04:00
|
|
|
|> element(~s/a[aria-label="Clone pack of #{pack.count} bullets"]/)
|
2022-11-10 18:21:29 -05:00
|
|
|
|> render_click()
|
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "Add Ammo"
|
|
|
|
assert html =~ "$#{display_currency(120.5)}"
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(index_live, ~p"/ammo/clone/#{pack}")
|
2023-03-28 21:57:29 -04:00
|
|
|
|
|
|
|
assert index_live
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_change(pack: @invalid_attrs) =~ "can't be blank"
|
2023-03-28 21:57:29 -04:00
|
|
|
end
|
2022-11-10 18:21:29 -05:00
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
test "clones pack in listing with updates", %{conn: conn, pack: pack} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, _html} = live(conn, ~p"/ammo")
|
2023-03-28 21:57:29 -04:00
|
|
|
|
|
|
|
html =
|
|
|
|
index_live
|
2023-03-29 23:49:45 -04:00
|
|
|
|> element(~s/a[aria-label="Clone pack of #{pack.count} bullets"]/)
|
2023-03-28 21:57:29 -04:00
|
|
|
|> render_click()
|
|
|
|
|
|
|
|
assert html =~ "Add Ammo"
|
|
|
|
assert html =~ "$#{display_currency(120.5)}"
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(index_live, ~p"/ammo/clone/#{pack}")
|
2022-11-10 18:21:29 -05:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert index_live
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_change(pack: @invalid_attrs) =~ "can't be blank"
|
2022-11-10 18:21:29 -05:00
|
|
|
|
|
|
|
{:ok, _view, html} =
|
|
|
|
index_live
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_submit(pack: @create_attrs |> Map.put(:count, 43))
|
2023-04-14 23:34:11 -04:00
|
|
|
|> follow_redirect(conn, ~p"/ammo")
|
2022-11-10 18:21:29 -05:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "Ammo added successfully"
|
2023-03-19 14:11:01 -04:00
|
|
|
assert html =~ "\n43\n"
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "$#{display_currency(120.5)}"
|
2022-11-10 18:21:29 -05:00
|
|
|
end
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
test "deletes pack in listing", %{conn: conn, pack: pack} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, _html} = live(conn, ~p"/ammo")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2022-02-16 22:51:22 -05:00
|
|
|
assert index_live
|
2023-03-29 23:49:45 -04:00
|
|
|
|> element(~s/a[aria-label="Delete pack of #{pack.count} bullets"]/)
|
2022-02-16 22:51:22 -05:00
|
|
|
|> render_click()
|
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
refute has_element?(index_live, "#pack-#{pack.id}")
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
2022-11-08 21:35:17 -05:00
|
|
|
|
2023-03-30 20:43:30 -04:00
|
|
|
test "saves new shot_record", %{conn: conn, pack: pack} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, _html} = live(conn, ~p"/ammo")
|
2023-03-28 21:57:29 -04:00
|
|
|
assert index_live |> element("a", "Record shots") |> render_click() =~ "Record shots"
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(index_live, ~p"/ammo/add_shot_record/#{pack}")
|
2022-11-08 21:35:17 -05:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert index_live
|
2023-03-30 21:38:56 -04:00
|
|
|
|> form("#shot-record-form")
|
2023-03-30 20:43:30 -04:00
|
|
|
|> render_change(shot_record: @shot_record_invalid_attrs) =~ "can't be blank"
|
2022-11-08 21:35:17 -05:00
|
|
|
|
|
|
|
{:ok, _view, html} =
|
|
|
|
index_live
|
2023-03-30 21:38:56 -04:00
|
|
|
|> form("#shot-record-form")
|
2023-03-30 20:43:30 -04:00
|
|
|
|> render_submit(shot_record: @shot_record_create_attrs)
|
2023-04-14 23:34:11 -04:00
|
|
|
|> follow_redirect(conn, ~p"/ammo")
|
2022-11-08 21:35:17 -05:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "Shots recorded successfully"
|
2022-11-08 21:35:17 -05:00
|
|
|
end
|
2023-03-18 21:06:00 -04:00
|
|
|
|
|
|
|
@spec display_currency(float()) :: String.t()
|
|
|
|
defp display_currency(float), do: :erlang.float_to_binary(float, decimals: 2)
|
2022-11-08 21:35:17 -05:00
|
|
|
end
|
|
|
|
|
2023-03-29 23:49:45 -04:00
|
|
|
describe "Index of empty pack" do
|
2023-03-29 22:54:55 -04:00
|
|
|
setup [:register_and_log_in_user, :create_pack, :create_empty_pack]
|
2022-11-08 21:35:17 -05:00
|
|
|
|
2023-03-29 23:49:45 -04:00
|
|
|
test "hides empty packs by default", %{
|
2023-03-18 21:06:00 -04:00
|
|
|
conn: conn,
|
2023-03-29 22:54:55 -04:00
|
|
|
empty_pack: pack,
|
2023-03-18 21:06:00 -04:00
|
|
|
current_user: current_user
|
|
|
|
} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, show_live, html} = live(conn, ~p"/ammo")
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "Show used"
|
|
|
|
refute html =~ "$#{display_currency(50.00)}"
|
2023-03-29 22:54:55 -04:00
|
|
|
percentage = pack |> Ammo.get_percentage_remaining(current_user)
|
2023-03-28 21:57:29 -04:00
|
|
|
refute html =~ "\n#{"#{percentage}%"}\n"
|
2022-11-08 21:35:17 -05:00
|
|
|
|
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
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "$#{display_currency(50.00)}"
|
2023-03-29 22:54:55 -04:00
|
|
|
percentage = pack |> Ammo.get_percentage_remaining(current_user)
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "\n#{"#{percentage}%"}\n"
|
2022-11-08 21:35:17 -05:00
|
|
|
end
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
2023-03-29 23:49:45 -04:00
|
|
|
describe "Show pack" do
|
2023-03-29 22:54:55 -04:00
|
|
|
setup [:register_and_log_in_user, :create_pack]
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
test "displays pack", %{conn: conn, pack: pack} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, _show_live, html} = live(conn, ~p"/ammo/show/#{pack}")
|
2023-03-30 21:53:52 -04:00
|
|
|
pack = pack |> Repo.preload(:type)
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "Show Ammo"
|
2023-03-30 21:53:52 -04:00
|
|
|
assert html =~ pack.type.name
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
2023-03-29 22:54:55 -04:00
|
|
|
test "updates pack within modal", %{conn: conn, pack: pack} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, show_live, _html} = live(conn, ~p"/ammo/show/#{pack}")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2022-02-16 22:51:22 -05:00
|
|
|
assert show_live
|
2023-03-29 23:49:45 -04:00
|
|
|
|> element(~s/a[aria-label="Edit pack of #{pack.count} bullets"]/)
|
2023-03-28 21:57:29 -04:00
|
|
|
|> render_click() =~ "Edit Ammo"
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(show_live, ~p"/ammo/show/edit/#{pack}")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert show_live
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_change(pack: @invalid_attrs) =~ "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
|
2023-03-29 22:54:55 -04:00
|
|
|
|> form("#pack-form")
|
|
|
|
|> render_submit(pack: @update_attrs)
|
2023-04-14 23:34:11 -04:00
|
|
|
|> follow_redirect(conn, ~p"/ammo/show/#{pack}")
|
2021-09-02 23:31:14 -04:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "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
|
|
|
|
2023-03-30 20:43:30 -04:00
|
|
|
test "saves new shot_record", %{conn: conn, pack: pack} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, _html} = live(conn, ~p"/ammo/show/#{pack}")
|
2023-03-28 21:57:29 -04:00
|
|
|
assert index_live |> element("a", "Record shots") |> render_click() =~ "Record shots"
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(index_live, ~p"/ammo/show/add_shot_record/#{pack}")
|
2022-02-17 21:19:04 -05:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert index_live
|
2023-03-30 21:38:56 -04:00
|
|
|
|> form("#shot-record-form")
|
2023-03-30 20:43:30 -04:00
|
|
|
|> render_change(shot_record: @shot_record_invalid_attrs) =~ "can't be blank"
|
2022-02-17 21:19:04 -05:00
|
|
|
|
2022-03-28 23:05:12 -04:00
|
|
|
{:ok, _view, html} =
|
2022-02-17 21:19:04 -05:00
|
|
|
index_live
|
2023-03-30 21:38:56 -04:00
|
|
|
|> form("#shot-record-form")
|
2023-03-30 20:43:30 -04:00
|
|
|
|> render_submit(shot_record: @shot_record_create_attrs)
|
2023-04-14 23:34:11 -04:00
|
|
|
|> follow_redirect(conn, ~p"/ammo/show/#{pack}")
|
2022-02-17 21:19:04 -05:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "Shots recorded successfully"
|
2022-02-17 21:19:04 -05:00
|
|
|
end
|
2022-11-08 21:35:17 -05:00
|
|
|
end
|
|
|
|
|
2023-03-30 22:23:54 -04:00
|
|
|
describe "Show pack with shot record" do
|
2023-03-30 20:43:30 -04:00
|
|
|
setup [:register_and_log_in_user, :create_pack, :create_shot_record]
|
2022-02-23 20:45:58 -05:00
|
|
|
|
2023-03-30 20:43:30 -04:00
|
|
|
test "updates shot_record in listing",
|
|
|
|
%{conn: conn, pack: pack, shot_record: shot_record} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, _html} = live(conn, ~p"/ammo/show/edit/#{pack}")
|
2022-02-23 20:45:58 -05:00
|
|
|
|
2023-03-15 00:45:08 -04:00
|
|
|
assert index_live
|
2023-03-30 22:23:54 -04:00
|
|
|
|> element(~s/a[aria-label="Edit shot record of #{shot_record.count} shots"]/)
|
2023-03-30 21:38:56 -04:00
|
|
|
|> render_click() =~ "Edit Shot Record"
|
2022-02-23 20:45:58 -05:00
|
|
|
|
2023-04-14 23:34:11 -04:00
|
|
|
assert_patch(index_live, ~p"/ammo/show/#{pack}/edit/#{shot_record}")
|
2022-02-23 20:45:58 -05:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert index_live
|
2023-03-30 21:38:56 -04:00
|
|
|
|> form("#shot-record-form")
|
2023-03-30 20:43:30 -04:00
|
|
|
|> render_change(shot_record: @shot_record_invalid_attrs) =~ "can't be blank"
|
2022-02-23 20:45:58 -05:00
|
|
|
|
2022-03-28 23:05:12 -04:00
|
|
|
{:ok, _view, html} =
|
2022-02-23 20:45:58 -05:00
|
|
|
index_live
|
2023-03-30 21:38:56 -04:00
|
|
|
|> form("#shot-record-form")
|
2023-03-30 20:43:30 -04:00
|
|
|
|> render_submit(shot_record: @shot_record_update_attrs)
|
2023-04-14 23:34:11 -04:00
|
|
|
|> follow_redirect(conn, ~p"/ammo/show/#{pack}")
|
2022-02-23 20:45:58 -05:00
|
|
|
|
2023-03-28 21:57:29 -04:00
|
|
|
assert html =~ "Shot records updated successfully"
|
2022-02-23 20:45:58 -05:00
|
|
|
assert html =~ "some updated notes"
|
|
|
|
end
|
|
|
|
|
2023-03-30 20:43:30 -04:00
|
|
|
test "deletes shot_record in listing",
|
|
|
|
%{conn: conn, pack: pack, shot_record: shot_record} do
|
2023-04-14 23:34:11 -04:00
|
|
|
{:ok, index_live, _html} = live(conn, ~p"/ammo/show/#{pack}/edit/#{shot_record}")
|
2022-02-23 20:45:58 -05:00
|
|
|
|
2023-03-15 00:45:08 -04:00
|
|
|
assert index_live
|
2023-03-30 20:43:30 -04:00
|
|
|
|> element(~s/a[aria-label="Delete shot record of #{shot_record.count} shots"]/)
|
2023-03-15 00:45:08 -04:00
|
|
|
|> render_click()
|
|
|
|
|
2023-03-30 20:43:30 -04:00
|
|
|
refute has_element?(index_live, "#shot_record-#{shot_record.id}")
|
2022-02-23 20:45:58 -05:00
|
|
|
end
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
end
|