towerops/test/towerops_web/live/agent_live/show_test.exs
Graham McIntire aa9ed52bff
feat: add critical network switch sensor support (HP Comware, Dell PowerConnect, Dell SONiC)
Implemented top 3 critical network switch sensor gaps identified in Phase 3 analysis.
Restores fundamental temperature monitoring for common enterprise switch platforms.

Files Changed:
- priv/profiles/os_discovery/comware.yaml (enhanced)
  Added HP Comware chassis temperature monitoring via HH3C-ENTITY-EXT-MIB
  OID: 1.3.6.1.4.1.25506.2.6.1.1.1.1.12 (hh3cEntityExtTemperature)
  Uses entPhysicalName for sensor descriptions
  Gap: CRITICAL (broke fundamental monitoring) → RESOLVED
  Parity: 40% → 60%

- priv/profiles/os_discovery/powerconnect.yaml (enhanced)
  Added Dell PowerConnect/DNOS CPU temperature monitoring
  OID: 1.3.6.1.4.1.674.10895.5000.2.6132.1.1.43.1.8.1.5
  MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB
  Gap: CRITICAL (no sensors) → RESOLVED
  Parity: 0% → 80%

- priv/profiles/os_discovery/dell-sonic.yaml (new)
  Created comprehensive Dell SONiC sensor profile
  MIB: NETGEAR-BOXSERVICES-PRIVATE-MIB (Quanta-based)
  Sensors:
    - Temperature: boxServicesTempSensorState (OID .1.3.6.1.4.1.4413.1.1.43.1.8.1.4)
    - Fan Speed: boxServicesFanSpeed (OID .1.3.6.1.4.1.4413.1.1.43.1.6.1.4)
    - PSU State: boxServicesPowSupplyItemState (OID .1.3.6.1.4.1.4413.1.1.43.1.7.1.3)
      States: other, notpresent, operational, failed, powering, nopower,
              notpowering, incompatible
  Gap: CRITICAL (OS detected, no sensors) → RESOLVED
  Parity: 0% → 95%

- test/towerops_web/plugs/brute_force_protection_test.exs (fixed)
  Fixed Credo warning: replaced length/1 with empty list comparison

- CHANGELOG.txt (updated)
  Documented Phase 3 analysis completion and critical fix implementation

Impact:
- HP Comware: Enables overheating alerts (fundamental monitoring restored)
- Dell PowerConnect: First sensor support for common access switches
- Dell SONiC: Complete hardware monitoring for modern data center platform

Business Value:
- Resolves production blockers for customers with HP Comware switches
- Adds support for very common Dell enterprise access switches
- Enables monitoring for Dell's modern SONiC-based data center switches

Next Steps: Remaining Tier 1 switches (Dell Force10 FTOS), then Tier 2
(optical transceiver monitoring for ProCurve/Comware).

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-11 17:36:45 -06:00

233 lines
7.2 KiB
Elixir

defmodule ToweropsWeb.AgentLive.ShowTest do
use ToweropsWeb.ConnCase
import Phoenix.LiveViewTest
alias Towerops.AgentsFixtures
setup %{conn: conn} do
user = Towerops.AccountsFixtures.user_fixture()
{:ok, organization} = Towerops.Organizations.create_organization(%{name: "Test Org"}, user.id)
conn =
conn
|> log_in_user(user)
|> put_session(:current_organization_id, organization.id)
%{conn: conn, user: user, organization: organization}
end
defp create_agent(organization_id, name \\ nil) do
{:ok, agent_token, _raw_token} = AgentsFixtures.agent_token_fixture(organization_id, name)
agent_token
end
describe "mount and display" do
test "renders agent details page with agent name", %{conn: conn, organization: org} do
agent = create_agent(org.id, "My Test Agent")
{:ok, _view, html} = live(conn, ~p"/agents/#{agent.id}")
assert html =~ "My Test Agent"
assert html =~ "Agent Details"
end
test "displays status information", %{conn: conn, organization: org} do
agent = create_agent(org.id)
{:ok, _view, html} = live(conn, ~p"/agents/#{agent.id}")
assert html =~ "Status"
# Agent has nil last_seen_at, so should show "Never connected"
assert html =~ "Never connected"
end
test "displays device count section", %{conn: conn, organization: org} do
agent = create_agent(org.id)
{:ok, _view, html} = live(conn, ~p"/agents/#{agent.id}")
assert html =~ "Device"
# No direct assignments by default
assert html =~ "0 direct"
end
test "displays polling targets section with no devices message", %{conn: conn, organization: org} do
agent = create_agent(org.id)
{:ok, _view, html} = live(conn, ~p"/agents/#{agent.id}")
assert html =~ "Polling Targets"
assert html =~ "No devices assigned"
end
test "displays edit link", %{conn: conn, organization: org} do
agent = create_agent(org.id)
{:ok, _view, html} = live(conn, ~p"/agents/#{agent.id}")
assert html =~ "Edit Agent"
assert html =~ ~p"/agents/#{agent.id}/edit"
end
test "displays back to agents link", %{conn: conn, organization: org} do
agent = create_agent(org.id)
{:ok, _view, html} = live(conn, ~p"/agents/#{agent.id}")
assert html =~ "Back to Agents"
end
test "displays timestamps section", %{conn: conn, organization: org} do
agent = create_agent(org.id)
{:ok, _view, html} = live(conn, ~p"/agents/#{agent.id}")
assert html =~ "Timestamps"
assert html =~ "Created"
assert html =~ "Last Updated"
end
end
describe "tab switching" do
test "switches to debug tab for superuser", %{conn: _conn, organization: _org} do
user = Towerops.AccountsFixtures.user_fixture()
user
|> Ecto.Changeset.change(%{is_superuser: true})
|> Towerops.Repo.update!()
{:ok, super_org} = Towerops.Organizations.create_organization(%{name: "Super Org"}, user.id)
super_agent = create_agent(super_org.id)
super_conn =
build_conn()
|> log_in_user(user)
|> put_session(:current_organization_id, super_org.id)
{:ok, view, html} = live(super_conn, ~p"/agents/#{super_agent.id}")
# Default tab should be overview
assert html =~ "Overview"
assert html =~ "Debug Logs"
# Switch to debug tab
html = view |> element("button", "Debug Logs") |> render_click()
assert html =~ "Debug Status"
assert html =~ "View Debug Logs"
end
test "switches back to overview tab", %{conn: _conn, organization: _org} do
user = Towerops.AccountsFixtures.user_fixture()
user
|> Ecto.Changeset.change(%{is_superuser: true})
|> Towerops.Repo.update!()
{:ok, super_org} = Towerops.Organizations.create_organization(%{name: "Super Org"}, user.id)
super_agent = create_agent(super_org.id)
super_conn =
build_conn()
|> log_in_user(user)
|> put_session(:current_organization_id, super_org.id)
{:ok, view, _html} = live(super_conn, ~p"/agents/#{super_agent.id}")
# Switch to debug tab then back to overview
view |> element("button", "Debug Logs") |> render_click()
html = view |> element("button", "Overview") |> render_click()
assert html =~ "Polling Targets"
end
test "non-superuser does not see tab navigation", %{conn: conn, organization: org} do
agent = create_agent(org.id)
{:ok, _view, html} = live(conn, ~p"/agents/#{agent.id}")
refute html =~ "Debug Logs"
end
end
describe "authentication" do
test "redirects to login when not authenticated" do
conn = build_conn()
assert {:error, {:redirect, %{to: to}}} = live(conn, ~p"/agents/#{Ecto.UUID.generate()}")
assert to =~ "/users/log-in"
end
end
describe "authorization" do
test "raises when accessing agent from another organization", %{conn: conn} do
# Create a second user with their own org and agent
other_user = Towerops.AccountsFixtures.user_fixture()
{:ok, other_org} = Towerops.Organizations.create_organization(%{name: "Other Org"}, other_user.id)
other_agent = create_agent(other_org.id, "Other Org Agent")
# The current user should not be able to access this agent
assert_raise Ecto.NoResultsError, fn ->
live(conn, ~p"/agents/#{other_agent.id}")
end
end
test "superuser can access agent from any organization" do
superuser = Towerops.AccountsFixtures.user_fixture()
superuser
|> Ecto.Changeset.change(%{is_superuser: true})
|> Towerops.Repo.update!()
{:ok, super_org} = Towerops.Organizations.create_organization(%{name: "Super Org"}, superuser.id)
# Create agent in a different org
other_user = Towerops.AccountsFixtures.user_fixture()
{:ok, other_org} = Towerops.Organizations.create_organization(%{name: "Other Org"}, other_user.id)
other_agent = create_agent(other_org.id, "Cross-Org Agent")
super_conn =
build_conn()
|> log_in_user(superuser)
|> put_session(:current_organization_id, super_org.id)
{:ok, _view, html} = live(super_conn, ~p"/agents/#{other_agent.id}")
assert html =~ "Cross-Org Agent"
end
end
describe "superuser actions" do
test "restart button is visible for superuser" do
superuser = Towerops.AccountsFixtures.user_fixture()
superuser
|> Ecto.Changeset.change(%{is_superuser: true})
|> Towerops.Repo.update!()
{:ok, super_org} = Towerops.Organizations.create_organization(%{name: "Super Org"}, superuser.id)
agent = create_agent(super_org.id)
super_conn =
build_conn()
|> log_in_user(superuser)
|> put_session(:current_organization_id, super_org.id)
{:ok, _view, html} = live(super_conn, ~p"/agents/#{agent.id}")
assert html =~ "Restart"
assert html =~ "Update"
end
test "restart and update buttons are not visible for regular user", %{conn: conn, organization: org} do
agent = create_agent(org.id)
{:ok, _view, html} = live(conn, ~p"/agents/#{agent.id}")
refute html =~ "restart_agent"
refute html =~ "update_agent"
end
end
end