117 lines
3.9 KiB
Elixir
117 lines
3.9 KiB
Elixir
|
defmodule RealEstateWeb.PropertyLiveTest do
|
||
|
use RealEstateWeb.ConnCase
|
||
|
|
||
|
import Phoenix.LiveViewTest
|
||
|
|
||
|
alias RealEstate.Properties
|
||
|
|
||
|
@create_attrs %{description: "some description", name: "some name", price: "120.5"}
|
||
|
@update_attrs %{description: "some updated description", name: "some updated name", price: "456.7"}
|
||
|
@invalid_attrs %{description: nil, name: nil, price: nil}
|
||
|
|
||
|
defp fixture(:property) do
|
||
|
{:ok, property} = Properties.create_property(@create_attrs)
|
||
|
property
|
||
|
end
|
||
|
|
||
|
defp create_property(_) do
|
||
|
property = fixture(:property)
|
||
|
%{property: property}
|
||
|
end
|
||
|
|
||
|
describe "Index" do
|
||
|
setup [:create_property]
|
||
|
|
||
|
test "lists all properties", %{conn: conn, property: property} do
|
||
|
{:ok, _index_live, html} = live(conn, Routes.property_index_path(conn, :index))
|
||
|
|
||
|
assert html =~ "Listing Properties"
|
||
|
assert html =~ property.description
|
||
|
end
|
||
|
|
||
|
test "saves new property", %{conn: conn} do
|
||
|
{:ok, index_live, _html} = live(conn, Routes.property_index_path(conn, :index))
|
||
|
|
||
|
assert index_live |> element("a", "New Property") |> render_click() =~
|
||
|
"New Property"
|
||
|
|
||
|
assert_patch(index_live, Routes.property_index_path(conn, :new))
|
||
|
|
||
|
assert index_live
|
||
|
|> form("#property-form", property: @invalid_attrs)
|
||
|
|> render_change() =~ "can't be blank"
|
||
|
|
||
|
{:ok, _, html} =
|
||
|
index_live
|
||
|
|> form("#property-form", property: @create_attrs)
|
||
|
|> render_submit()
|
||
|
|> follow_redirect(conn, Routes.property_index_path(conn, :index))
|
||
|
|
||
|
assert html =~ "Property created successfully"
|
||
|
assert html =~ "some description"
|
||
|
end
|
||
|
|
||
|
test "updates property in listing", %{conn: conn, property: property} do
|
||
|
{:ok, index_live, _html} = live(conn, Routes.property_index_path(conn, :index))
|
||
|
|
||
|
assert index_live |> element("#property-#{property.id} a", "Edit") |> render_click() =~
|
||
|
"Edit Property"
|
||
|
|
||
|
assert_patch(index_live, Routes.property_index_path(conn, :edit, property))
|
||
|
|
||
|
assert index_live
|
||
|
|> form("#property-form", property: @invalid_attrs)
|
||
|
|> render_change() =~ "can't be blank"
|
||
|
|
||
|
{:ok, _, html} =
|
||
|
index_live
|
||
|
|> form("#property-form", property: @update_attrs)
|
||
|
|> render_submit()
|
||
|
|> follow_redirect(conn, Routes.property_index_path(conn, :index))
|
||
|
|
||
|
assert html =~ "Property updated successfully"
|
||
|
assert html =~ "some updated description"
|
||
|
end
|
||
|
|
||
|
test "deletes property in listing", %{conn: conn, property: property} do
|
||
|
{:ok, index_live, _html} = live(conn, Routes.property_index_path(conn, :index))
|
||
|
|
||
|
assert index_live |> element("#property-#{property.id} a", "Delete") |> render_click()
|
||
|
refute has_element?(index_live, "#property-#{property.id}")
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe "Show" do
|
||
|
setup [:create_property]
|
||
|
|
||
|
test "displays property", %{conn: conn, property: property} do
|
||
|
{:ok, _show_live, html} = live(conn, Routes.property_show_path(conn, :show, property))
|
||
|
|
||
|
assert html =~ "Show Property"
|
||
|
assert html =~ property.description
|
||
|
end
|
||
|
|
||
|
test "updates property within modal", %{conn: conn, property: property} do
|
||
|
{:ok, show_live, _html} = live(conn, Routes.property_show_path(conn, :show, property))
|
||
|
|
||
|
assert show_live |> element("a", "Edit") |> render_click() =~
|
||
|
"Edit Property"
|
||
|
|
||
|
assert_patch(show_live, Routes.property_show_path(conn, :edit, property))
|
||
|
|
||
|
assert show_live
|
||
|
|> form("#property-form", property: @invalid_attrs)
|
||
|
|> render_change() =~ "can't be blank"
|
||
|
|
||
|
{:ok, _, html} =
|
||
|
show_live
|
||
|
|> form("#property-form", property: @update_attrs)
|
||
|
|> render_submit()
|
||
|
|> follow_redirect(conn, Routes.property_show_path(conn, :show, property))
|
||
|
|
||
|
assert html =~ "Property updated successfully"
|
||
|
assert html =~ "some updated description"
|
||
|
end
|
||
|
end
|
||
|
end
|