101 lines
3.2 KiB
Elixir
101 lines
3.2 KiB
Elixir
defmodule ToweropsWeb.Admin.UserLiveTest do
|
|
use ToweropsWeb.ConnCase
|
|
|
|
import Phoenix.LiveViewTest
|
|
import Towerops.AccountsFixtures
|
|
import Towerops.DevicesFixtures
|
|
import Towerops.OrganizationsFixtures
|
|
|
|
describe "Index" do
|
|
setup do
|
|
superuser =
|
|
user_fixture()
|
|
|> Ecto.Changeset.change(%{is_superuser: true})
|
|
|> Towerops.Repo.update!()
|
|
|
|
%{superuser: superuser}
|
|
end
|
|
|
|
test "displays device count for users", %{conn: conn, superuser: superuser} do
|
|
# Create a regular user
|
|
user = user_fixture()
|
|
|
|
# Create organizations with user as owner
|
|
org1 = organization_fixture(user.id)
|
|
org2 = organization_fixture(user.id)
|
|
|
|
# Create devices in different organizations (device_fixture auto-creates sites)
|
|
device_fixture(%{organization_id: org1.id})
|
|
device_fixture(%{organization_id: org1.id})
|
|
device_fixture(%{organization_id: org2.id})
|
|
|
|
# Log in as superuser
|
|
conn = log_in_user(conn, superuser)
|
|
|
|
# Visit the admin users page
|
|
{:ok, view, html} = live(conn, ~p"/admin/users")
|
|
|
|
# Check that the device count column header is displayed
|
|
assert html =~ "Devices"
|
|
|
|
# Verify device count is in the assigns
|
|
users = :sys.get_state(view.pid).socket.assigns.users
|
|
test_user = Enum.find(users, &(&1.id == user.id))
|
|
assert test_user.device_count == 3
|
|
end
|
|
|
|
test "displays 0 devices for users with no organizations", %{conn: conn, superuser: superuser} do
|
|
# Create a user with no organizations
|
|
user = user_fixture()
|
|
|
|
# Log in as superuser
|
|
conn = log_in_user(conn, superuser)
|
|
|
|
# Visit the admin users page
|
|
{:ok, view, html} = live(conn, ~p"/admin/users")
|
|
|
|
# Check that the device count column header is displayed
|
|
assert html =~ "Devices"
|
|
|
|
# Verify device count is 0 in the assigns
|
|
users = :sys.get_state(view.pid).socket.assigns.users
|
|
test_user = Enum.find(users, &(&1.id == user.id))
|
|
assert test_user.device_count == 0
|
|
end
|
|
|
|
test "device count only includes devices from user's organizations", %{
|
|
conn: conn,
|
|
superuser: superuser
|
|
} do
|
|
# Create two users
|
|
user1 = user_fixture()
|
|
user2 = user_fixture()
|
|
|
|
# Create organizations (user1 belongs to org1, user2 to org2)
|
|
org1 = organization_fixture(user1.id)
|
|
org2 = organization_fixture(user2.id)
|
|
|
|
# Create devices (user1 should only see devices from org1)
|
|
device_fixture(%{organization_id: org1.id})
|
|
device_fixture(%{organization_id: org1.id})
|
|
device_fixture(%{organization_id: org2.id})
|
|
|
|
# Log in as superuser
|
|
conn = log_in_user(conn, superuser)
|
|
|
|
# Visit the admin users page
|
|
{:ok, view, _html} = live(conn, ~p"/admin/users")
|
|
|
|
# Get all users from the assigns
|
|
users = :sys.get_state(view.pid).socket.assigns.users
|
|
|
|
# Find user1 and verify device count
|
|
user1_with_count = Enum.find(users, &(&1.id == user1.id))
|
|
assert user1_with_count.device_count == 2
|
|
|
|
# Find user2 and verify device count
|
|
user2_with_count = Enum.find(users, &(&1.id == user2.id))
|
|
assert user2_with_count.device_count == 1
|
|
end
|
|
end
|
|
end
|