114 lines
3.4 KiB
Elixir
114 lines
3.4 KiB
Elixir
|
|
defmodule ZoeyscomputerWeb.ApiKeyLiveTest do
|
||
|
|
use ZoeyscomputerWeb.ConnCase
|
||
|
|
|
||
|
|
import Phoenix.LiveViewTest
|
||
|
|
import Zoeyscomputer.ApiKeysFixtures
|
||
|
|
|
||
|
|
@create_attrs %{name: "some name", token: "some token"}
|
||
|
|
@update_attrs %{name: "some updated name", token: "some updated token"}
|
||
|
|
@invalid_attrs %{name: nil, token: nil}
|
||
|
|
|
||
|
|
defp create_api_key(_) do
|
||
|
|
api_key = api_key_fixture()
|
||
|
|
%{api_key: api_key}
|
||
|
|
end
|
||
|
|
|
||
|
|
describe "Index" do
|
||
|
|
setup [:create_api_key]
|
||
|
|
|
||
|
|
test "lists all api_keys", %{conn: conn, api_key: api_key} do
|
||
|
|
{:ok, _index_live, html} = live(conn, ~p"/api_keys")
|
||
|
|
|
||
|
|
assert html =~ "Listing Api keys"
|
||
|
|
assert html =~ api_key.name
|
||
|
|
end
|
||
|
|
|
||
|
|
test "saves new api_key", %{conn: conn} do
|
||
|
|
{:ok, index_live, _html} = live(conn, ~p"/api_keys")
|
||
|
|
|
||
|
|
assert index_live |> element("a", "New Api key") |> render_click() =~
|
||
|
|
"New Api key"
|
||
|
|
|
||
|
|
assert_patch(index_live, ~p"/api_keys/new")
|
||
|
|
|
||
|
|
assert index_live
|
||
|
|
|> form("#api_key-form", api_key: @invalid_attrs)
|
||
|
|
|> render_change() =~ "can't be blank"
|
||
|
|
|
||
|
|
assert index_live
|
||
|
|
|> form("#api_key-form", api_key: @create_attrs)
|
||
|
|
|> render_submit()
|
||
|
|
|
||
|
|
assert_patch(index_live, ~p"/api_keys")
|
||
|
|
|
||
|
|
html = render(index_live)
|
||
|
|
assert html =~ "Api key created successfully"
|
||
|
|
assert html =~ "some name"
|
||
|
|
end
|
||
|
|
|
||
|
|
test "updates api_key in listing", %{conn: conn, api_key: api_key} do
|
||
|
|
{:ok, index_live, _html} = live(conn, ~p"/api_keys")
|
||
|
|
|
||
|
|
assert index_live |> element("#api_keys-#{api_key.id} a", "Edit") |> render_click() =~
|
||
|
|
"Edit Api key"
|
||
|
|
|
||
|
|
assert_patch(index_live, ~p"/api_keys/#{api_key}/edit")
|
||
|
|
|
||
|
|
assert index_live
|
||
|
|
|> form("#api_key-form", api_key: @invalid_attrs)
|
||
|
|
|> render_change() =~ "can't be blank"
|
||
|
|
|
||
|
|
assert index_live
|
||
|
|
|> form("#api_key-form", api_key: @update_attrs)
|
||
|
|
|> render_submit()
|
||
|
|
|
||
|
|
assert_patch(index_live, ~p"/api_keys")
|
||
|
|
|
||
|
|
html = render(index_live)
|
||
|
|
assert html =~ "Api key updated successfully"
|
||
|
|
assert html =~ "some updated name"
|
||
|
|
end
|
||
|
|
|
||
|
|
test "deletes api_key in listing", %{conn: conn, api_key: api_key} do
|
||
|
|
{:ok, index_live, _html} = live(conn, ~p"/api_keys")
|
||
|
|
|
||
|
|
assert index_live |> element("#api_keys-#{api_key.id} a", "Delete") |> render_click()
|
||
|
|
refute has_element?(index_live, "#api_keys-#{api_key.id}")
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
describe "Show" do
|
||
|
|
setup [:create_api_key]
|
||
|
|
|
||
|
|
test "displays api_key", %{conn: conn, api_key: api_key} do
|
||
|
|
{:ok, _show_live, html} = live(conn, ~p"/api_keys/#{api_key}")
|
||
|
|
|
||
|
|
assert html =~ "Show Api key"
|
||
|
|
assert html =~ api_key.name
|
||
|
|
end
|
||
|
|
|
||
|
|
test "updates api_key within modal", %{conn: conn, api_key: api_key} do
|
||
|
|
{:ok, show_live, _html} = live(conn, ~p"/api_keys/#{api_key}")
|
||
|
|
|
||
|
|
assert show_live |> element("a", "Edit") |> render_click() =~
|
||
|
|
"Edit Api key"
|
||
|
|
|
||
|
|
assert_patch(show_live, ~p"/api_keys/#{api_key}/show/edit")
|
||
|
|
|
||
|
|
assert show_live
|
||
|
|
|> form("#api_key-form", api_key: @invalid_attrs)
|
||
|
|
|> render_change() =~ "can't be blank"
|
||
|
|
|
||
|
|
assert show_live
|
||
|
|
|> form("#api_key-form", api_key: @update_attrs)
|
||
|
|
|> render_submit()
|
||
|
|
|
||
|
|
assert_patch(show_live, ~p"/api_keys/#{api_key}")
|
||
|
|
|
||
|
|
html = render(show_live)
|
||
|
|
assert html =~ "Api key updated successfully"
|
||
|
|
assert html =~ "some updated name"
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|