chore(ui): hide Mesh, Fleet Secrets, and Host Console behind experimental discovery (#1624)

Gate Routing, Secrets, Host Console, and Mesh dashboard/settings surfaces on the existing useExperimental readiness flag so immature operator surfaces stay out of the default UI while paid and admin backend gates remain unchanged.
This commit is contained in:
Anso
2026-07-13 11:55:50 -04:00
committed by GitHub
parent 9b3f5c5a90
commit 0cd03c6f87
23 changed files with 578 additions and 62 deletions
@@ -0,0 +1,172 @@
import { describe, it, expect, vi, beforeEach } from 'vitest';
import { render, screen, waitFor } from '@testing-library/react';
import { FleetView } from '../FleetView';
const useExperimentalMock = vi.fn(() => ({ experimental: true, experimentalReady: true }));
vi.mock('@/hooks/useExperimental', () => ({
useExperimental: () => useExperimentalMock(),
}));
vi.mock('@/context/LicenseContext', () => ({
useLicense: () => ({ isPaid: true }),
}));
vi.mock('@/context/AuthContext', () => ({
useAuth: () => ({ isAdmin: true }),
}));
vi.mock('@/context/NodeContext', () => ({
useNodes: () => ({ hasCapability: () => false }),
}));
vi.mock('../FleetView/hooks/useFleetPreferences', () => ({
useFleetPreferences: () => ({ prefs: {}, updatePrefs: vi.fn() }),
}));
vi.mock('../FleetView/hooks/useFleetUpdateStatus', () => ({
useFleetUpdateStatus: () => ({
updateStatuses: [],
localUpdateConfirm: null,
setShowUpdateModal: vi.fn(),
fetchUpdateStatus: vi.fn(),
showUpdateModal: false,
checkingUpdates: false,
updatingNodeId: null,
reconnecting: false,
preUpdateStartedAt: null,
triggerNodeUpdate: vi.fn(),
retryNodeUpdate: vi.fn(),
dismissNodeUpdate: vi.fn(),
checkUpdates: vi.fn(),
confirmLocalUpdate: vi.fn(),
cancelLocalUpdate: vi.fn(),
}),
}));
vi.mock('../FleetView/hooks/useFleetOverview', () => ({
useFleetOverview: () => ({
nodes: [],
processedNodes: [],
allNodes: [],
topologyNodes: [],
viewMode: 'cards',
setViewMode: vi.fn(),
searchQuery: '',
setSearchQuery: vi.fn(),
fleetPalette: {},
labelFilters: {},
setLabelFilters: vi.fn(),
clearFilters: vi.fn(),
fleetStackLabelMap: {},
updateStatusMap: {},
mastheadStats: {
nodeCount: 0,
onlineCount: 0,
criticalCount: 0,
avgCpuNum: 0,
worstCpu: 0,
totalMemUsed: 0,
totalMemTotal: 0,
totalContainers: 0,
totalContainersAll: 0,
},
lastSyncAt: null,
loading: false,
refreshing: false,
fetchOverview: vi.fn(),
}),
}));
vi.mock('../FleetView/hooks/useFleetPolling', () => ({
useFleetPolling: () => {},
}));
vi.mock('../FleetView/hooks/useFleetDossierExport', () => ({
useFleetDossierExport: () => ({ exporting: false, exportDossier: vi.fn() }),
}));
vi.mock('@/hooks/useTopologyPreferences', () => ({
useTopologyPreferences: () => ({ prefs: { mode: 'hub', positions: {} }, setMode: vi.fn(), setPositions: vi.fn() }),
}));
vi.mock('../nodes/useNodeActions', () => ({
useNodeActions: () => ({ openEdit: vi.fn(), openDelete: vi.fn(), NodeActionModals: null }),
}));
vi.mock('../fleet/FleetMasthead', () => ({ FleetMasthead: () => <div data-testid="masthead" /> }));
vi.mock('../FleetView/OverviewTab', () => ({ OverviewTab: () => <div data-testid="overview-tab" /> }));
vi.mock('../FleetView/ReconnectingOverlay', () => ({ ReconnectingOverlay: () => null }));
vi.mock('../FleetView/NodeUpdatesSheet', () => ({ NodeUpdatesSheet: () => null }));
vi.mock('../FleetView/LocalUpdateConfirmDialog', () => ({ LocalUpdateConfirmDialog: () => null }));
vi.mock('../FleetSnapshots', () => ({ default: () => null }));
vi.mock('../fleet/FleetConfiguration', () => ({ FleetConfiguration: () => null }));
vi.mock('../fleet/RoutingTab', () => ({ RoutingTab: () => <div data-testid="routing-tab" /> }));
vi.mock('../fleet/FederationTab', () => ({ FederationTab: () => <div data-testid="federation-tab" /> }));
vi.mock('../blueprints/DeploymentsTab', () => ({ DeploymentsTab: () => <div data-testid="deployments-tab" /> }));
vi.mock('../fleet/FleetActions/FleetActionsTab', () => ({ FleetActionsTab: () => <div data-testid="actions-tab" /> }));
vi.mock('../fleet/secrets/SecretsTab', () => ({ SecretsTab: () => <div data-testid="secrets-tab" /> }));
vi.mock('../fleet/DependencyMapTab', () => ({ DependencyMapTab: () => null }));
vi.mock('../fleet/ContainerLabelsTab', () => ({ ContainerLabelsTab: () => null }));
vi.mock('../PaidGate', () => ({ PaidGate: ({ children }: { children: React.ReactNode }) => <>{children}</> }));
describe('FleetView experimental discovery', () => {
beforeEach(() => {
useExperimentalMock.mockReturnValue({ experimental: true, experimentalReady: true });
});
it('shows Routing and Secrets when experimental discovery is on for paid admin', () => {
render(<FleetView onNavigateToNode={vi.fn()} />);
expect(screen.getByRole('tab', { name: /routing/i })).toBeTruthy();
expect(screen.getByRole('tab', { name: /secrets/i })).toBeTruthy();
});
it('hides Routing and Secrets when experimental discovery is off', () => {
useExperimentalMock.mockReturnValue({ experimental: false, experimentalReady: true });
render(<FleetView onNavigateToNode={vi.fn()} />);
expect(screen.queryByRole('tab', { name: /routing/i })).toBeNull();
expect(screen.queryByRole('tab', { name: /secrets/i })).toBeNull();
expect(screen.getByRole('tab', { name: /deployments/i })).toBeTruthy();
expect(screen.getByRole('tab', { name: /federation/i })).toBeTruthy();
expect(screen.getByRole('tab', { name: /actions/i })).toBeTruthy();
});
it('delayed experimental true preserves controlled routing without Overview callback', async () => {
useExperimentalMock.mockReturnValue({ experimental: false, experimentalReady: false });
const onTab = vi.fn();
const { rerender } = render(
<FleetView
onNavigateToNode={vi.fn()}
fleetActiveTab="routing"
onFleetActiveTabChange={onTab}
/>,
);
expect(screen.queryByRole('tab', { name: /routing/i })).toBeNull();
expect(onTab).not.toHaveBeenCalled();
useExperimentalMock.mockReturnValue({ experimental: true, experimentalReady: true });
rerender(
<FleetView
onNavigateToNode={vi.fn()}
fleetActiveTab="routing"
onFleetActiveTabChange={onTab}
/>,
);
await waitFor(() => expect(screen.getByRole('tab', { name: /routing/i })).toBeTruthy());
expect(onTab).not.toHaveBeenCalled();
});
it('resolved experimental false falls back controlled routing to overview once', async () => {
useExperimentalMock.mockReturnValue({ experimental: false, experimentalReady: false });
const onTab = vi.fn();
const { rerender } = render(
<FleetView
onNavigateToNode={vi.fn()}
fleetActiveTab="routing"
onFleetActiveTabChange={onTab}
/>,
);
expect(onTab).not.toHaveBeenCalled();
useExperimentalMock.mockReturnValue({ experimental: false, experimentalReady: true });
rerender(
<FleetView
onNavigateToNode={vi.fn()}
fleetActiveTab="routing"
onFleetActiveTabChange={onTab}
/>,
);
await waitFor(() => expect(onTab).toHaveBeenCalledWith('overview'));
expect(onTab).toHaveBeenCalledTimes(1);
});
});