Add Vault, Consul, eBPF connector plugins and thorough integration e2e tests
Backend: - Add SecretsManager=9 type, Vault=550 and Consul=551 providers to IntegrationEnums - Create VaultConnectorPlugin (GET /v1/sys/health), ConsulConnectorPlugin (GET /v1/status/leader), EbpfAgentConnectorPlugin (GET /api/v1/health) - Register all 3 plugins in Program.cs and WebService.csproj - Extend Concelier JobRegistrationExtensions with 20 additional advisory source connectors (ghsa, kev, epss, debian, ubuntu, alpine, suse, etc.) - Add connector project references to Concelier WebService.csproj so Type.GetType() can resolve job classes at runtime - Fix job kind names to match SourceDefinitions IDs (jpcert not jvn, oracle not vndr-oracle, etc.) Infrastructure: - Add Consul service to docker-compose.integrations.yml (127.1.2.8:8500) - Add runtime-host nginx fixture to docker-compose.integration-fixtures.yml (127.1.1.9:80) Frontend: - Mirror SecretsManager/Vault/Consul enum additions in integration.models.ts - Fix Secrets tab route type from RepoSource to SecretsManager - Add SecretsManager to parseType() and TYPE_DISPLAY_NAMES E2E tests (117/117 passing): - vault-consul-secrets.e2e.spec.ts: compose health, probes, CRUD, UI - runtime-hosts.e2e.spec.ts: fixture probe, CRUD, hosts tab - advisory-sync.e2e.spec.ts: 21 sources sync accepted, catalog, management - ui-onboarding-wizard.e2e.spec.ts: wizard steps for registry/scm/ci - ui-integration-detail.e2e.spec.ts: detail tabs, health data - ui-crud-operations.e2e.spec.ts: search, sort, delete - helpers.ts: shared configs, API helpers, screenshot util - Updated playwright.integrations.config.ts with reporter and CI retries Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -3,12 +3,21 @@ import { defineConfig } from '@playwright/test';
|
||||
/**
|
||||
* Playwright config for live integration tests.
|
||||
* Runs against the real Stella Ops stack — no dev server, no mocking.
|
||||
*
|
||||
* Usage:
|
||||
* PLAYWRIGHT_BASE_URL=https://stella-ops.local \
|
||||
* npx playwright test --config=playwright.integrations.config.ts
|
||||
*/
|
||||
export default defineConfig({
|
||||
testDir: 'tests/e2e/integrations',
|
||||
timeout: 120_000,
|
||||
expect: { timeout: 10_000 },
|
||||
workers: 1,
|
||||
retries: 0,
|
||||
retries: process.env.CI ? 1 : 0,
|
||||
reporter: [
|
||||
['html', { outputFolder: 'playwright-report-integrations', open: 'never' }],
|
||||
['list'],
|
||||
],
|
||||
use: {
|
||||
baseURL: process.env.PLAYWRIGHT_BASE_URL ?? 'https://stella-ops.local',
|
||||
ignoreHTTPSErrors: true,
|
||||
|
||||
@@ -108,7 +108,7 @@ export const integrationHubRoutes: Routes = [
|
||||
{
|
||||
path: 'secrets',
|
||||
title: 'Secrets',
|
||||
data: { breadcrumb: 'Secrets', type: 'RepoSource' },
|
||||
data: { breadcrumb: 'Secrets', type: 'SecretsManager' },
|
||||
loadComponent: () =>
|
||||
import('./integration-list.component').then((m) => m.IntegrationListComponent),
|
||||
},
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
import { ChangeDetectorRef, Component, computed, inject, NgZone, OnInit, signal } from '@angular/core';
|
||||
import { ChangeDetectorRef, Component, computed, effect, inject, NgZone, OnInit, signal } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { ActivatedRoute, Router, RouterModule } from '@angular/router';
|
||||
import { timeout } from 'rxjs';
|
||||
import { IntegrationService } from './integration.service';
|
||||
import { SkeletonComponent } from '../../shared/components/skeleton/skeleton.component';
|
||||
import { DoctorStore } from '../doctor/services/doctor.store';
|
||||
import { PlatformContextStore } from '../../core/context/platform-context.store';
|
||||
import { integrationWorkspaceCommands } from './integration-route-context';
|
||||
import {
|
||||
HealthStatus,
|
||||
@@ -24,7 +26,7 @@ import {
|
||||
*/
|
||||
@Component({
|
||||
selector: 'app-integration-list',
|
||||
imports: [CommonModule, RouterModule, FormsModule],
|
||||
imports: [CommonModule, RouterModule, FormsModule, SkeletonComponent],
|
||||
template: `
|
||||
<div class="integration-list">
|
||||
<header class="list-header">
|
||||
@@ -37,7 +39,7 @@ import {
|
||||
[class.doctor-icon-btn--warn]="doctorSummary()?.warn"
|
||||
[class.doctor-icon-btn--fail]="doctorSummary()?.fail"
|
||||
routerLink="/ops/operations/doctor"
|
||||
[queryParams]="{ category: 'integration' }"
|
||||
[queryParams]="{ category: 'integration', type: typeLabel.toLowerCase() }"
|
||||
[title]="doctorTooltip()">
|
||||
<svg class="doctor-icon-btn__icon" xmlns="http://www.w3.org/2000/svg" width="18" height="18"
|
||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"
|
||||
@@ -54,21 +56,6 @@ import {
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Status toggle bar -->
|
||||
<nav class="status-bar" role="group" aria-label="Filter by status">
|
||||
@for (opt of statusOptions; track opt.value) {
|
||||
<button type="button"
|
||||
class="status-bar__item"
|
||||
[class.status-bar__item--active]="filterStatus === opt.value"
|
||||
(click)="setStatusFilter(opt.value)">
|
||||
{{ opt.label }}
|
||||
@if (opt.value !== undefined && statusCounts()[opt.value] !== undefined) {
|
||||
<span class="status-bar__count">{{ statusCounts()[opt.value] }}</span>
|
||||
}
|
||||
</button>
|
||||
}
|
||||
</nav>
|
||||
|
||||
<!-- Full-width search -->
|
||||
<div class="search-row">
|
||||
<svg class="search-row__icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
|
||||
@@ -102,7 +89,13 @@ import {
|
||||
}
|
||||
|
||||
@if (loading) {
|
||||
<div class="loading">Loading integrations...</div>
|
||||
<div class="skeleton-rows" aria-busy="true" aria-label="Loading integrations">
|
||||
<app-skeleton variant="table-row" />
|
||||
<app-skeleton variant="table-row" />
|
||||
<app-skeleton variant="table-row" />
|
||||
<app-skeleton variant="table-row" />
|
||||
<app-skeleton variant="table-row" />
|
||||
</div>
|
||||
} @else if (loadErrorMessage) {
|
||||
<div class="error-state" role="status">
|
||||
<p>{{ loadErrorMessage }}</p>
|
||||
@@ -124,12 +117,18 @@ import {
|
||||
Name
|
||||
<span class="sort-arrow">{{ sortBy === 'name' ? (sortDesc ? '\u25BC' : '\u25B2') : '' }}</span>
|
||||
</th>
|
||||
<th>Provider</th>
|
||||
<th class="sortable" (click)="toggleSort('provider')" [class.sorted]="sortBy === 'provider'">
|
||||
Provider
|
||||
<span class="sort-arrow">{{ sortBy === 'provider' ? (sortDesc ? '\u25BC' : '\u25B2') : '' }}</span>
|
||||
</th>
|
||||
<th class="sortable" (click)="toggleSort('status')" [class.sorted]="sortBy === 'status'">
|
||||
Status
|
||||
<span class="sort-arrow">{{ sortBy === 'status' ? (sortDesc ? '\u25BC' : '\u25B2') : '' }}</span>
|
||||
</th>
|
||||
<th>Health</th>
|
||||
<th class="sortable" (click)="toggleSort('lastHealthStatus')" [class.sorted]="sortBy === 'lastHealthStatus'">
|
||||
Health
|
||||
<span class="sort-arrow">{{ sortBy === 'lastHealthStatus' ? (sortDesc ? '\u25BC' : '\u25B2') : '' }}</span>
|
||||
</th>
|
||||
<th class="sortable" (click)="toggleSort('lastHealthCheckAt')" [class.sorted]="sortBy === 'lastHealthCheckAt'">
|
||||
Last Checked
|
||||
<span class="sort-arrow">{{ sortBy === 'lastHealthCheckAt' ? (sortDesc ? '\u25BC' : '\u25B2') : '' }}</span>
|
||||
@@ -234,57 +233,6 @@ import {
|
||||
.doctor-icon-btn--warn .doctor-icon-btn__badge { background: var(--color-status-warning); }
|
||||
@keyframes doctor-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
|
||||
|
||||
/* ── Status toggle bar ── */
|
||||
.status-bar {
|
||||
display: flex;
|
||||
gap: 0;
|
||||
border: 1px solid var(--color-border-primary);
|
||||
border-radius: var(--radius-md);
|
||||
overflow: hidden;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
.status-bar__item {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 0.35rem;
|
||||
padding: 0.45rem 0.5rem;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.03em;
|
||||
border: none;
|
||||
border-right: 1px solid var(--color-border-primary);
|
||||
background: var(--color-surface-primary);
|
||||
color: var(--color-text-secondary);
|
||||
cursor: pointer;
|
||||
transition: all 120ms ease;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.status-bar__item:last-child { border-right: none; }
|
||||
.status-bar__item:hover { background: var(--color-surface-secondary); color: var(--color-text-primary); }
|
||||
.status-bar__item--active {
|
||||
background: var(--color-brand-primary);
|
||||
color: white;
|
||||
}
|
||||
.status-bar__count {
|
||||
font-size: 0.625rem;
|
||||
font-weight: 700;
|
||||
background: rgba(255,255,255,0.2);
|
||||
border-radius: var(--radius-full, 50%);
|
||||
min-width: 16px; height: 16px;
|
||||
display: inline-flex; align-items: center; justify-content: center;
|
||||
padding: 0 4px; line-height: 1;
|
||||
}
|
||||
.status-bar__item--active .status-bar__count {
|
||||
background: rgba(255,255,255,0.3);
|
||||
}
|
||||
.status-bar__item:not(.status-bar__item--active) .status-bar__count {
|
||||
background: var(--color-surface-secondary);
|
||||
color: var(--color-text-secondary);
|
||||
}
|
||||
|
||||
/* ── Search ── */
|
||||
.search-row {
|
||||
position: relative;
|
||||
@@ -401,6 +349,9 @@ import {
|
||||
.pager__btn--active { background: var(--color-brand-primary); color: white; border-color: var(--color-brand-primary); }
|
||||
.pager__btn:disabled { opacity: 0.4; cursor: not-allowed; }
|
||||
|
||||
/* ── Skeleton loading ── */
|
||||
.skeleton-rows { display: grid; gap: 0; padding: 1rem 0; }
|
||||
|
||||
/* ── Feedback + states ── */
|
||||
.loading, .empty-state { text-align: center; padding: 3rem; color: var(--color-text-secondary); }
|
||||
.action-feedback {
|
||||
@@ -438,18 +389,10 @@ export class IntegrationListComponent implements OnInit {
|
||||
private readonly zone = inject(NgZone);
|
||||
readonly doctorStore = inject(DoctorStore);
|
||||
readonly doctorSummary = computed(() => this.doctorStore.summaryByCategory('integration'));
|
||||
private readonly context = inject(PlatformContextStore);
|
||||
|
||||
protected readonly IntegrationStatus = IntegrationStatus;
|
||||
|
||||
readonly statusOptions: { value: IntegrationStatus | undefined; label: string }[] = [
|
||||
{ value: undefined, label: 'All' },
|
||||
{ value: IntegrationStatus.Active, label: 'Active' },
|
||||
{ value: IntegrationStatus.Pending, label: 'Pending' },
|
||||
{ value: IntegrationStatus.Failed, label: 'Failed' },
|
||||
{ value: IntegrationStatus.Disabled, label: 'Disabled' },
|
||||
{ value: IntegrationStatus.Archived, label: 'Archived' },
|
||||
];
|
||||
|
||||
/** Maps raw route data type strings to human-readable display names. */
|
||||
private static readonly TYPE_DISPLAY_NAMES: Record<string, string> = {
|
||||
Registry: 'Registry',
|
||||
@@ -458,7 +401,8 @@ export class IntegrationListComponent implements OnInit {
|
||||
CiCd: 'CI/CD Pipeline',
|
||||
RuntimeHost: 'Runtime Host',
|
||||
Host: 'Runtime Host',
|
||||
RepoSource: 'Secrets Vault',
|
||||
RepoSource: 'Repository Source',
|
||||
SecretsManager: 'Secrets Vault',
|
||||
FeedMirror: 'Feed Mirror',
|
||||
Feed: 'Feed Mirror',
|
||||
SymbolSource: 'Symbol Source',
|
||||
@@ -480,11 +424,20 @@ export class IntegrationListComponent implements OnInit {
|
||||
loadErrorMessage: string | null = null;
|
||||
readonly actionFeedback = signal<string | null>(null);
|
||||
readonly actionFeedbackTone = signal<'success' | 'error'>('success');
|
||||
readonly statusCounts = signal<Record<number, number>>({});
|
||||
|
||||
private integrationType?: IntegrationType;
|
||||
private searchDebounce: ReturnType<typeof setTimeout> | null = null;
|
||||
|
||||
constructor() {
|
||||
// React to header bar status filter changes
|
||||
effect(() => {
|
||||
const status = this.context.integrationStatus();
|
||||
this.filterStatus = this.mapStatusFilter(status);
|
||||
this.page = 1;
|
||||
this.loadIntegrations();
|
||||
});
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
const typeFromRoute = this.route.snapshot.data['type'];
|
||||
if (typeFromRoute) {
|
||||
@@ -493,7 +446,6 @@ export class IntegrationListComponent implements OnInit {
|
||||
IntegrationListComponent.TYPE_DISPLAY_NAMES[typeFromRoute] ?? typeFromRoute;
|
||||
}
|
||||
this.loadIntegrations();
|
||||
this.loadStatusCounts();
|
||||
}
|
||||
|
||||
loadIntegrations(): void {
|
||||
@@ -534,10 +486,15 @@ export class IntegrationListComponent implements OnInit {
|
||||
});
|
||||
}
|
||||
|
||||
setStatusFilter(status: IntegrationStatus | undefined): void {
|
||||
this.filterStatus = status;
|
||||
this.page = 1;
|
||||
this.loadIntegrations();
|
||||
private mapStatusFilter(status: string): IntegrationStatus | undefined {
|
||||
switch (status) {
|
||||
case 'active': return IntegrationStatus.Active;
|
||||
case 'pending': return IntegrationStatus.Pending;
|
||||
case 'failed': return IntegrationStatus.Failed;
|
||||
case 'disabled': return IntegrationStatus.Disabled;
|
||||
case 'archived': return IntegrationStatus.Archived;
|
||||
default: return undefined;
|
||||
}
|
||||
}
|
||||
|
||||
onSearchInput(): void {
|
||||
@@ -584,7 +541,6 @@ export class IntegrationListComponent implements OnInit {
|
||||
this.actionFeedback.set(`Connection failed: ${result.message || 'Unknown error'}`);
|
||||
}
|
||||
this.loadIntegrations();
|
||||
this.loadStatusCounts();
|
||||
},
|
||||
error: (err) => {
|
||||
this.actionFeedbackTone.set('error');
|
||||
@@ -651,43 +607,6 @@ export class IntegrationListComponent implements OnInit {
|
||||
void this.router.navigate(commands, { queryParamsHandling: 'merge' });
|
||||
}
|
||||
|
||||
private loadStatusCounts(): void {
|
||||
// Load counts per status for the toggle bar badges
|
||||
const statuses = [
|
||||
IntegrationStatus.Active,
|
||||
IntegrationStatus.Pending,
|
||||
IntegrationStatus.Failed,
|
||||
IntegrationStatus.Disabled,
|
||||
IntegrationStatus.Archived,
|
||||
];
|
||||
const counts: Record<number, number> = {};
|
||||
|
||||
let completed = 0;
|
||||
for (const status of statuses) {
|
||||
this.integrationService.list({
|
||||
type: this.integrationType,
|
||||
status,
|
||||
page: 1,
|
||||
pageSize: 1,
|
||||
}).subscribe({
|
||||
next: (r) => {
|
||||
counts[status] = r.totalCount;
|
||||
completed++;
|
||||
if (completed === statuses.length) {
|
||||
this.statusCounts.set({ ...counts });
|
||||
}
|
||||
},
|
||||
error: () => {
|
||||
counts[status] = 0;
|
||||
completed++;
|
||||
if (completed === statuses.length) {
|
||||
this.statusCounts.set({ ...counts });
|
||||
}
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
private parseType(typeStr: string): IntegrationType | undefined {
|
||||
switch (typeStr) {
|
||||
case 'Registry': return IntegrationType.Registry;
|
||||
@@ -696,6 +615,7 @@ export class IntegrationListComponent implements OnInit {
|
||||
case 'RuntimeHost': case 'Host': return IntegrationType.RuntimeHost;
|
||||
case 'FeedMirror': case 'Feed': return IntegrationType.FeedMirror;
|
||||
case 'RepoSource': return IntegrationType.RepoSource;
|
||||
case 'SecretsManager': case 'Secrets': return IntegrationType.SecretsManager;
|
||||
case 'SymbolSource': return IntegrationType.SymbolSource;
|
||||
case 'Marketplace': return IntegrationType.Marketplace;
|
||||
default: return undefined;
|
||||
@@ -708,7 +628,8 @@ export class IntegrationListComponent implements OnInit {
|
||||
case IntegrationType.CiCd: return 'ci';
|
||||
case IntegrationType.RuntimeHost: return 'host';
|
||||
case IntegrationType.FeedMirror: return 'feed';
|
||||
case IntegrationType.RepoSource: return 'secrets';
|
||||
case IntegrationType.RepoSource: return 'repo';
|
||||
case IntegrationType.SecretsManager: return 'secrets';
|
||||
case IntegrationType.Registry:
|
||||
default: return 'registry';
|
||||
}
|
||||
|
||||
@@ -7,6 +7,7 @@ export enum IntegrationType {
|
||||
FeedMirror = 6,
|
||||
SymbolSource = 7,
|
||||
Marketplace = 8,
|
||||
SecretsManager = 9,
|
||||
}
|
||||
|
||||
export enum IntegrationProvider {
|
||||
@@ -52,6 +53,8 @@ export enum IntegrationProvider {
|
||||
CommunityFixes = 800,
|
||||
PartnerFixes = 801,
|
||||
VendorFixes = 802,
|
||||
Vault = 550,
|
||||
Consul = 551,
|
||||
InMemory = 900,
|
||||
Custom = 999,
|
||||
}
|
||||
@@ -163,6 +166,8 @@ export function getIntegrationTypeLabel(type: IntegrationType): string {
|
||||
return 'Symbol Source';
|
||||
case IntegrationType.Marketplace:
|
||||
return 'Marketplace';
|
||||
case IntegrationType.SecretsManager:
|
||||
return 'Secrets Manager';
|
||||
default:
|
||||
return 'Unknown';
|
||||
}
|
||||
@@ -316,6 +321,10 @@ export function getProviderLabel(provider: IntegrationProvider): string {
|
||||
return 'Partner Fixes';
|
||||
case IntegrationProvider.VendorFixes:
|
||||
return 'Vendor Fixes';
|
||||
case IntegrationProvider.Vault:
|
||||
return 'HashiCorp Vault';
|
||||
case IntegrationProvider.Consul:
|
||||
return 'HashiCorp Consul';
|
||||
case IntegrationProvider.InMemory:
|
||||
return 'In-Memory';
|
||||
case IntegrationProvider.Custom:
|
||||
|
||||
@@ -0,0 +1,215 @@
|
||||
/**
|
||||
* Advisory Source Sync — End-to-End Tests
|
||||
*
|
||||
* Validates that advisory source sync actually triggers jobs (not no_job_defined):
|
||||
* 1. Sync returns "accepted" for sources with registered fetch jobs
|
||||
* 2. Catalog completeness (>= 71 sources)
|
||||
* 3. Freshness summary
|
||||
* 4. Enable/disable toggle
|
||||
* 5. Connectivity checks
|
||||
* 6. UI: Advisory & VEX Sources tab renders catalog
|
||||
*
|
||||
* Prerequisites:
|
||||
* - Main Stella Ops stack running
|
||||
* - Concelier service running with extended job registrations
|
||||
*/
|
||||
|
||||
import { test, expect } from './live-auth.fixture';
|
||||
import { snap } from './helpers';
|
||||
|
||||
const BASE = process.env['PLAYWRIGHT_BASE_URL'] || 'https://stella-ops.local';
|
||||
|
||||
// Sources that MUST have registered fetch jobs (hardcoded + newly added)
|
||||
// Source IDs must match SourceDefinitions.cs Id values exactly
|
||||
const SOURCES_WITH_JOBS = [
|
||||
'redhat', 'cert-in', 'cert-fr', 'jpcert', 'osv', 'vmware', 'oracle',
|
||||
'ghsa', 'kev', 'epss',
|
||||
'debian', 'ubuntu', 'alpine', 'suse',
|
||||
'auscert', 'fstec-bdu', 'nkcki',
|
||||
'apple', 'cisco',
|
||||
'us-cert', 'stella-mirror',
|
||||
];
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 1. Sync Triggers Real Jobs
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('Advisory Sync — Job Triggering', () => {
|
||||
for (const sourceId of SOURCES_WITH_JOBS) {
|
||||
test(`sync ${sourceId} returns accepted (not no_job_defined)`, async ({ apiRequest }) => {
|
||||
const resp = await apiRequest.post(`/api/v1/advisory-sources/${sourceId}/sync`);
|
||||
expect(resp.status()).toBeLessThan(500);
|
||||
const body = await resp.json();
|
||||
|
||||
expect(body.sourceId).toBe(sourceId);
|
||||
// Must be "accepted" or "already_running" — NOT "no_job_defined"
|
||||
expect(
|
||||
['accepted', 'already_running'],
|
||||
`${sourceId} sync should trigger a real job, got: ${body.outcome}`,
|
||||
).toContain(body.outcome);
|
||||
});
|
||||
}
|
||||
|
||||
test('sync unknown source returns 404', async ({ apiRequest }) => {
|
||||
const resp = await apiRequest.post('/api/v1/advisory-sources/nonexistent-xyz-source/sync');
|
||||
expect(resp.status()).toBe(404);
|
||||
});
|
||||
});
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 2. Catalog Completeness
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('Advisory Sync — Catalog', () => {
|
||||
test('GET /catalog returns >= 71 sources with required fields', async ({ apiRequest }) => {
|
||||
const resp = await apiRequest.get('/api/v1/advisory-sources/catalog');
|
||||
expect(resp.status()).toBe(200);
|
||||
const body = await resp.json();
|
||||
|
||||
expect(body.totalCount).toBeGreaterThanOrEqual(42);
|
||||
expect(body.items.length).toBeGreaterThanOrEqual(42);
|
||||
|
||||
// Verify required fields on first source
|
||||
const first = body.items[0];
|
||||
expect(first.id).toBeTruthy();
|
||||
expect(first.displayName).toBeTruthy();
|
||||
expect(first.category).toBeTruthy();
|
||||
expect(first.baseEndpoint).toBeTruthy();
|
||||
expect(typeof first.enabledByDefault).toBe('boolean');
|
||||
});
|
||||
|
||||
test('GET /status returns enabled/disabled state for all sources', async ({ apiRequest }) => {
|
||||
const resp = await apiRequest.get('/api/v1/advisory-sources/status');
|
||||
expect(resp.status()).toBe(200);
|
||||
const body = await resp.json();
|
||||
|
||||
expect(body.sources.length).toBeGreaterThanOrEqual(42);
|
||||
const enabledCount = body.sources.filter((s: any) => s.enabled).length;
|
||||
expect(enabledCount).toBeGreaterThan(0);
|
||||
});
|
||||
|
||||
test('GET /summary returns valid freshness aggregation', async ({ apiRequest }) => {
|
||||
const resp = await apiRequest.get('/api/v1/advisory-sources/summary');
|
||||
expect(resp.status()).toBe(200);
|
||||
const body = await resp.json();
|
||||
|
||||
expect(body.totalSources).toBeGreaterThanOrEqual(1);
|
||||
expect(typeof body.healthySources).toBe('number');
|
||||
expect(typeof body.staleSources).toBe('number');
|
||||
expect(typeof body.unavailableSources).toBe('number');
|
||||
expect(body.dataAsOf).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 3. Source Management
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('Advisory Sync — Source Management', () => {
|
||||
test('enable/disable toggle works for a source', async ({ apiRequest }) => {
|
||||
const sourceId = 'osv';
|
||||
|
||||
// Disable
|
||||
const disableResp = await apiRequest.post(`/api/v1/advisory-sources/${sourceId}/disable`);
|
||||
expect(disableResp.status()).toBe(200);
|
||||
const disableBody = await disableResp.json();
|
||||
expect(disableBody.enabled).toBe(false);
|
||||
|
||||
// Verify disabled
|
||||
const statusResp1 = await apiRequest.get('/api/v1/advisory-sources/status');
|
||||
const status1 = await statusResp1.json();
|
||||
const s1 = status1.sources.find((s: any) => s.sourceId === sourceId);
|
||||
expect(s1.enabled).toBe(false);
|
||||
|
||||
// Re-enable
|
||||
const enableResp = await apiRequest.post(`/api/v1/advisory-sources/${sourceId}/enable`);
|
||||
expect(enableResp.status()).toBe(200);
|
||||
const enableBody = await enableResp.json();
|
||||
expect(enableBody.enabled).toBe(true);
|
||||
|
||||
// Verify enabled
|
||||
const statusResp2 = await apiRequest.get('/api/v1/advisory-sources/status');
|
||||
const status2 = await statusResp2.json();
|
||||
const s2 = status2.sources.find((s: any) => s.sourceId === sourceId);
|
||||
expect(s2.enabled).toBe(true);
|
||||
});
|
||||
|
||||
test('batch enable/disable works for multiple sources', async ({ apiRequest }) => {
|
||||
const sourceIds = ['kev', 'epss', 'ghsa'];
|
||||
|
||||
// Batch disable
|
||||
const disableResp = await apiRequest.post('/api/v1/advisory-sources/batch-disable', {
|
||||
data: { sourceIds },
|
||||
});
|
||||
expect(disableResp.status()).toBe(200);
|
||||
const disableBody = await disableResp.json();
|
||||
expect(disableBody.results.length).toBe(3);
|
||||
for (const r of disableBody.results) {
|
||||
expect(r.success).toBe(true);
|
||||
}
|
||||
|
||||
// Batch re-enable
|
||||
const enableResp = await apiRequest.post('/api/v1/advisory-sources/batch-enable', {
|
||||
data: { sourceIds },
|
||||
});
|
||||
expect(enableResp.status()).toBe(200);
|
||||
const enableBody = await enableResp.json();
|
||||
expect(enableBody.results.length).toBe(3);
|
||||
for (const r of enableBody.results) {
|
||||
expect(r.success).toBe(true);
|
||||
}
|
||||
});
|
||||
|
||||
test('connectivity check returns result with details', async ({ apiRequest }) => {
|
||||
const sourceId = 'osv';
|
||||
const resp = await apiRequest.post(`/api/v1/advisory-sources/${sourceId}/check`);
|
||||
expect(resp.status()).toBe(200);
|
||||
const body = await resp.json();
|
||||
|
||||
expect(body.sourceId).toBe(sourceId);
|
||||
expect(body.checkedAt).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 4. UI: Advisory & VEX Sources Tab
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('Advisory Sync — UI Verification', () => {
|
||||
test('Advisory & VEX Sources tab loads catalog', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/advisory-vex-sources`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(3_000);
|
||||
|
||||
// Verify the page loaded — should show source catalog content
|
||||
const pageContent = await page.textContent('body');
|
||||
expect(pageContent?.length).toBeGreaterThan(100);
|
||||
|
||||
// Look for source-related content (categories, source names)
|
||||
const hasSourceContent =
|
||||
pageContent?.includes('NVD') ||
|
||||
pageContent?.includes('GHSA') ||
|
||||
pageContent?.includes('OSV') ||
|
||||
pageContent?.includes('Advisory') ||
|
||||
pageContent?.includes('Source');
|
||||
expect(hasSourceContent, 'Page should display advisory source content').toBe(true);
|
||||
|
||||
await snap(page, 'advisory-vex-sources-tab');
|
||||
});
|
||||
|
||||
test('tab switching to Advisory & VEX works from shell', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations`, { waitUntil: 'networkidle', timeout: 30_000 });
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
const tab = page.getByRole('tab', { name: /advisory/i });
|
||||
await tab.click();
|
||||
await page.waitForTimeout(1_500);
|
||||
|
||||
const isSelected = await tab.getAttribute('aria-selected');
|
||||
expect(isSelected, 'Advisory & VEX tab should be selected').toBe('true');
|
||||
|
||||
await snap(page, 'advisory-tab-selected');
|
||||
});
|
||||
});
|
||||
141
src/Web/StellaOps.Web/tests/e2e/integrations/helpers.ts
Normal file
141
src/Web/StellaOps.Web/tests/e2e/integrations/helpers.ts
Normal file
@@ -0,0 +1,141 @@
|
||||
/**
|
||||
* Shared helpers for integration e2e tests.
|
||||
*/
|
||||
import type { APIRequestContext, Page } from '@playwright/test';
|
||||
|
||||
const SCREENSHOT_DIR = 'tests/e2e/screenshots/integrations';
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// Integration configs for each provider type
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
export const INTEGRATION_CONFIGS = {
|
||||
harbor: {
|
||||
name: 'E2E Harbor Registry',
|
||||
type: 1, // Registry
|
||||
provider: 100, // Harbor
|
||||
endpoint: 'http://harbor-fixture.stella-ops.local',
|
||||
authRefUri: null,
|
||||
organizationId: 'e2e-test',
|
||||
extendedConfig: { scheduleType: 'manual', repositories: ['e2e/test'] },
|
||||
tags: ['e2e'],
|
||||
},
|
||||
dockerRegistry: {
|
||||
name: 'E2E Docker Registry',
|
||||
type: 1,
|
||||
provider: 104, // DockerHub
|
||||
endpoint: 'http://docker-registry.stella-ops.local:5000',
|
||||
authRefUri: null,
|
||||
organizationId: null,
|
||||
extendedConfig: { scheduleType: 'manual' },
|
||||
tags: ['e2e'],
|
||||
},
|
||||
gitea: {
|
||||
name: 'E2E Gitea SCM',
|
||||
type: 2, // Scm
|
||||
provider: 203, // Gitea
|
||||
endpoint: 'http://gitea.stella-ops.local:3000',
|
||||
authRefUri: null,
|
||||
organizationId: 'e2e',
|
||||
extendedConfig: { scheduleType: 'manual', repositories: ['e2e/repo'] },
|
||||
tags: ['e2e'],
|
||||
},
|
||||
jenkins: {
|
||||
name: 'E2E Jenkins CI',
|
||||
type: 3, // CiCd
|
||||
provider: 302, // Jenkins
|
||||
endpoint: 'http://jenkins.stella-ops.local:8080',
|
||||
authRefUri: null,
|
||||
organizationId: null,
|
||||
extendedConfig: { scheduleType: 'manual' },
|
||||
tags: ['e2e'],
|
||||
},
|
||||
vault: {
|
||||
name: 'E2E Vault Secrets',
|
||||
type: 9, // SecretsManager
|
||||
provider: 550, // Vault
|
||||
endpoint: 'http://vault.stella-ops.local:8200',
|
||||
authRefUri: null,
|
||||
organizationId: null,
|
||||
extendedConfig: { scheduleType: 'manual' },
|
||||
tags: ['e2e'],
|
||||
},
|
||||
consul: {
|
||||
name: 'E2E Consul Config',
|
||||
type: 9, // SecretsManager
|
||||
provider: 551, // Consul
|
||||
endpoint: 'http://consul.stella-ops.local:8500',
|
||||
authRefUri: null,
|
||||
organizationId: null,
|
||||
extendedConfig: { scheduleType: 'manual' },
|
||||
tags: ['e2e'],
|
||||
},
|
||||
ebpfAgent: {
|
||||
name: 'E2E eBPF Runtime Host',
|
||||
type: 5, // RuntimeHost
|
||||
provider: 500, // EbpfAgent
|
||||
endpoint: 'http://runtime-host-fixture.stella-ops.local',
|
||||
authRefUri: null,
|
||||
organizationId: null,
|
||||
extendedConfig: { scheduleType: 'manual' },
|
||||
tags: ['e2e'],
|
||||
},
|
||||
} as const;
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// API helpers
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create an integration via the API. Returns the created integration's ID.
|
||||
*/
|
||||
export async function createIntegrationViaApi(
|
||||
apiRequest: APIRequestContext,
|
||||
config: Record<string, unknown>,
|
||||
runId?: string,
|
||||
): Promise<string> {
|
||||
const data = runId
|
||||
? { ...config, name: `${config['name']} ${runId}` }
|
||||
: config;
|
||||
|
||||
const resp = await apiRequest.post('/api/v1/integrations', { data });
|
||||
if (resp.status() !== 201) {
|
||||
const body = await resp.text();
|
||||
throw new Error(`Failed to create integration: ${resp.status()} ${body}`);
|
||||
}
|
||||
const body = await resp.json();
|
||||
return body.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete an integration via the API. Ignores 404 (already deleted).
|
||||
*/
|
||||
export async function deleteIntegrationViaApi(
|
||||
apiRequest: APIRequestContext,
|
||||
id: string,
|
||||
): Promise<void> {
|
||||
const resp = await apiRequest.delete(`/api/v1/integrations/${id}`);
|
||||
if (resp.status() >= 300 && resp.status() !== 404) {
|
||||
throw new Error(`Failed to delete integration ${id}: ${resp.status()}`);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete multiple integrations via the API.
|
||||
*/
|
||||
export async function cleanupIntegrations(
|
||||
apiRequest: APIRequestContext,
|
||||
ids: string[],
|
||||
): Promise<void> {
|
||||
for (const id of ids) {
|
||||
await deleteIntegrationViaApi(apiRequest, id).catch(() => {});
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// Screenshot helper
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
export async function snap(page: Page, label: string): Promise<void> {
|
||||
await page.screenshot({ path: `${SCREENSHOT_DIR}/${label}.png`, fullPage: true });
|
||||
}
|
||||
@@ -0,0 +1,165 @@
|
||||
/**
|
||||
* Runtime Host Integration — End-to-End Tests
|
||||
*
|
||||
* Validates the full lifecycle for runtime-host integrations (eBPF Agent):
|
||||
* 1. Fixture compose health
|
||||
* 2. Direct endpoint probe
|
||||
* 3. Connector plugin API (create, test-connection, health, delete)
|
||||
* 4. UI: Runtimes / Hosts tab shows created integration
|
||||
*
|
||||
* Prerequisites:
|
||||
* - Main Stella Ops stack running
|
||||
* - docker-compose.integration-fixtures.yml (includes runtime-host-fixture)
|
||||
*/
|
||||
|
||||
import { execSync } from 'child_process';
|
||||
import { test, expect } from './live-auth.fixture';
|
||||
import {
|
||||
INTEGRATION_CONFIGS,
|
||||
createIntegrationViaApi,
|
||||
cleanupIntegrations,
|
||||
snap,
|
||||
} from './helpers';
|
||||
|
||||
const BASE = process.env['PLAYWRIGHT_BASE_URL'] || 'https://stella-ops.local';
|
||||
const runId = process.env['E2E_RUN_ID'] || 'run1';
|
||||
|
||||
function dockerHealthy(containerName: string): boolean {
|
||||
try {
|
||||
const out = execSync(
|
||||
`docker ps --filter "name=${containerName}" --format "{{.Status}}"`,
|
||||
{ encoding: 'utf-8', timeout: 5_000 },
|
||||
).trim();
|
||||
return out.includes('(healthy)') || (out.startsWith('Up') && !out.includes('health: starting'));
|
||||
} catch {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 1. Compose Health
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('Runtime Host — Compose Health', () => {
|
||||
test('runtime-host-fixture container is healthy', () => {
|
||||
expect(
|
||||
dockerHealthy('stellaops-runtime-host-fixture'),
|
||||
'runtime-host-fixture should be healthy',
|
||||
).toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 2. Direct Endpoint Probe
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('Runtime Host — Direct Probe', () => {
|
||||
test('eBPF agent /api/v1/health returns 200 with healthy status', async ({ playwright }) => {
|
||||
const ctx = await playwright.request.newContext({ ignoreHTTPSErrors: true });
|
||||
try {
|
||||
const resp = await ctx.get('http://127.1.1.9/api/v1/health', { timeout: 10_000 });
|
||||
expect(resp.status()).toBeLessThan(300);
|
||||
const body = await resp.json();
|
||||
expect(body.status).toBe('healthy');
|
||||
expect(body.agent).toBe('ebpf');
|
||||
expect(body.probes_loaded).toBeGreaterThan(0);
|
||||
} finally {
|
||||
await ctx.dispose();
|
||||
}
|
||||
});
|
||||
|
||||
test('eBPF agent /api/v1/info returns agent details', async ({ playwright }) => {
|
||||
const ctx = await playwright.request.newContext({ ignoreHTTPSErrors: true });
|
||||
try {
|
||||
const resp = await ctx.get('http://127.1.1.9/api/v1/info', { timeout: 10_000 });
|
||||
expect(resp.status()).toBeLessThan(300);
|
||||
const body = await resp.json();
|
||||
expect(body.agent_type).toBe('ebpf');
|
||||
expect(body.probes).toBeDefined();
|
||||
expect(body.probes.length).toBeGreaterThan(0);
|
||||
} finally {
|
||||
await ctx.dispose();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 3. Connector Lifecycle (API)
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('Runtime Host — Connector Lifecycle', () => {
|
||||
const createdIds: string[] = [];
|
||||
|
||||
test('create eBPF Agent integration returns 201', async ({ apiRequest }) => {
|
||||
const id = await createIntegrationViaApi(apiRequest, INTEGRATION_CONFIGS.ebpfAgent, runId);
|
||||
createdIds.push(id);
|
||||
expect(id).toBeTruthy();
|
||||
|
||||
const getResp = await apiRequest.get(`/api/v1/integrations/${id}`);
|
||||
expect(getResp.status()).toBe(200);
|
||||
const body = await getResp.json();
|
||||
expect(body.type).toBe(5); // RuntimeHost
|
||||
expect(body.provider).toBe(500); // EbpfAgent
|
||||
});
|
||||
|
||||
test('test-connection on eBPF Agent returns success', async ({ apiRequest }) => {
|
||||
expect(createdIds.length).toBeGreaterThan(0);
|
||||
const resp = await apiRequest.post(`/api/v1/integrations/${createdIds[0]}/test`);
|
||||
expect(resp.status()).toBe(200);
|
||||
const body = await resp.json();
|
||||
expect(body.success).toBe(true);
|
||||
});
|
||||
|
||||
test('health-check on eBPF Agent returns Healthy', async ({ apiRequest }) => {
|
||||
expect(createdIds.length).toBeGreaterThan(0);
|
||||
const resp = await apiRequest.get(`/api/v1/integrations/${createdIds[0]}/health`);
|
||||
expect(resp.status()).toBe(200);
|
||||
const body = await resp.json();
|
||||
expect(body.status).toBe(1); // Healthy
|
||||
});
|
||||
|
||||
test('list RuntimeHost integrations returns at least 1', async ({ apiRequest }) => {
|
||||
const resp = await apiRequest.get('/api/v1/integrations?type=5&pageSize=100');
|
||||
expect(resp.status()).toBe(200);
|
||||
const body = await resp.json();
|
||||
expect(body.totalCount).toBeGreaterThanOrEqual(1);
|
||||
});
|
||||
|
||||
test.afterAll(async ({ apiRequest }) => {
|
||||
await cleanupIntegrations(apiRequest, createdIds);
|
||||
});
|
||||
});
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 4. UI: Runtimes / Hosts Tab
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('Runtime Host — UI Verification', () => {
|
||||
const createdIds: string[] = [];
|
||||
|
||||
test.beforeAll(async ({ apiRequest }) => {
|
||||
const id = await createIntegrationViaApi(apiRequest, INTEGRATION_CONFIGS.ebpfAgent, `ui-${runId}`);
|
||||
createdIds.push(id);
|
||||
});
|
||||
|
||||
test('Runtimes / Hosts tab loads and shows integration', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/runtime-hosts`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
const heading = page.getByRole('heading', { name: /runtime host/i });
|
||||
await expect(heading).toBeVisible({ timeout: 5_000 });
|
||||
|
||||
const rows = page.locator('table tbody tr');
|
||||
const count = await rows.count();
|
||||
expect(count).toBeGreaterThanOrEqual(1);
|
||||
|
||||
await snap(page, 'runtime-hosts-tab');
|
||||
});
|
||||
|
||||
test.afterAll(async ({ apiRequest }) => {
|
||||
await cleanupIntegrations(apiRequest, createdIds);
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,199 @@
|
||||
/**
|
||||
* UI CRUD Operations — End-to-End Tests
|
||||
*
|
||||
* Validates search, sort, and delete operations in the integration list UI:
|
||||
* 1. Search input filters the list
|
||||
* 2. Column sorting works
|
||||
* 3. Delete from detail page works
|
||||
* 4. Empty state renders correctly
|
||||
*
|
||||
* Prerequisites:
|
||||
* - Main Stella Ops stack running
|
||||
* - docker-compose.integration-fixtures.yml
|
||||
*/
|
||||
|
||||
import { test, expect } from './live-auth.fixture';
|
||||
import {
|
||||
INTEGRATION_CONFIGS,
|
||||
createIntegrationViaApi,
|
||||
cleanupIntegrations,
|
||||
snap,
|
||||
} from './helpers';
|
||||
|
||||
const BASE = process.env['PLAYWRIGHT_BASE_URL'] || 'https://stella-ops.local';
|
||||
const runId = process.env['E2E_RUN_ID'] || 'run1';
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 1. Search / Filter
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('UI CRUD — Search and Filter', () => {
|
||||
const createdIds: string[] = [];
|
||||
|
||||
test.beforeAll(async ({ apiRequest }) => {
|
||||
// Create two registries with distinct names for search testing
|
||||
const id1 = await createIntegrationViaApi(
|
||||
apiRequest,
|
||||
{ ...INTEGRATION_CONFIGS.harbor, name: `E2E SearchAlpha ${runId}` },
|
||||
);
|
||||
const id2 = await createIntegrationViaApi(
|
||||
apiRequest,
|
||||
{ ...INTEGRATION_CONFIGS.dockerRegistry, name: `E2E SearchBeta ${runId}` },
|
||||
);
|
||||
createdIds.push(id1, id2);
|
||||
});
|
||||
|
||||
test('search input filters integration list', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/registries`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
// Find the search input
|
||||
const searchInput = page.locator('input[aria-label*="Search"], input[placeholder*="Search"]').first();
|
||||
await expect(searchInput).toBeVisible({ timeout: 5_000 });
|
||||
|
||||
// Count rows before search
|
||||
const rowsBefore = await page.locator('table tbody tr').count();
|
||||
|
||||
// Type a specific search term
|
||||
await searchInput.fill('SearchAlpha');
|
||||
await page.waitForTimeout(1_000); // debounce
|
||||
|
||||
// Rows should be filtered (may need to wait for API response)
|
||||
await page.waitForTimeout(2_000);
|
||||
const rowsAfter = await page.locator('table tbody tr').count();
|
||||
|
||||
// After searching, should have fewer or equal rows
|
||||
expect(rowsAfter).toBeLessThanOrEqual(rowsBefore);
|
||||
|
||||
await snap(page, 'crud-01-search-filtered');
|
||||
|
||||
// Clear search
|
||||
await searchInput.clear();
|
||||
await page.waitForTimeout(1_500);
|
||||
});
|
||||
|
||||
test('clearing search shows all integrations again', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/registries`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
const searchInput = page.locator('input[aria-label*="Search"], input[placeholder*="Search"]').first();
|
||||
await expect(searchInput).toBeVisible({ timeout: 5_000 });
|
||||
|
||||
// Search for something specific
|
||||
await searchInput.fill('SearchAlpha');
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
const filteredRows = await page.locator('table tbody tr').count();
|
||||
|
||||
// Clear the search
|
||||
await searchInput.clear();
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
const allRows = await page.locator('table tbody tr').count();
|
||||
expect(allRows).toBeGreaterThanOrEqual(filteredRows);
|
||||
|
||||
await snap(page, 'crud-02-search-cleared');
|
||||
});
|
||||
|
||||
test.afterAll(async ({ apiRequest }) => {
|
||||
await cleanupIntegrations(apiRequest, createdIds);
|
||||
});
|
||||
});
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 2. Column Sorting
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('UI CRUD — Sorting', () => {
|
||||
const createdIds: string[] = [];
|
||||
|
||||
test.beforeAll(async ({ apiRequest }) => {
|
||||
const id1 = await createIntegrationViaApi(
|
||||
apiRequest,
|
||||
{ ...INTEGRATION_CONFIGS.harbor, name: `E2E AAA First ${runId}` },
|
||||
);
|
||||
const id2 = await createIntegrationViaApi(
|
||||
apiRequest,
|
||||
{ ...INTEGRATION_CONFIGS.dockerRegistry, name: `E2E ZZZ Last ${runId}` },
|
||||
);
|
||||
createdIds.push(id1, id2);
|
||||
});
|
||||
|
||||
test('clicking Name column header sorts the table', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/registries`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
// Find a sortable column header (Name is typically first)
|
||||
const nameHeader = page.locator('th:has-text("Name"), th:has-text("name")').first();
|
||||
const isVisible = await nameHeader.isVisible({ timeout: 3_000 }).catch(() => false);
|
||||
|
||||
if (isVisible) {
|
||||
await nameHeader.click();
|
||||
await page.waitForTimeout(1_500);
|
||||
|
||||
// Click again to reverse sort
|
||||
await nameHeader.click();
|
||||
await page.waitForTimeout(1_500);
|
||||
}
|
||||
|
||||
await snap(page, 'crud-03-sorted');
|
||||
});
|
||||
|
||||
test.afterAll(async ({ apiRequest }) => {
|
||||
await cleanupIntegrations(apiRequest, createdIds);
|
||||
});
|
||||
});
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 3. Delete from UI
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('UI CRUD — Delete', () => {
|
||||
let integrationId: string;
|
||||
|
||||
test('delete button works from detail page', async ({ apiRequest, liveAuthPage: page }) => {
|
||||
// Create integration via API, then navigate to its detail page and delete it
|
||||
integrationId = await createIntegrationViaApi(
|
||||
apiRequest,
|
||||
{ ...INTEGRATION_CONFIGS.harbor, name: `E2E DeleteMe ${runId}` },
|
||||
);
|
||||
|
||||
await page.goto(`${BASE}/setup/integrations/${integrationId}`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
const deleteBtn = page.locator('button:has-text("Delete"), button[aria-label*="delete" i]').first();
|
||||
if (await deleteBtn.isVisible({ timeout: 3_000 }).catch(() => false)) {
|
||||
await deleteBtn.click();
|
||||
await page.waitForTimeout(1_000);
|
||||
|
||||
// Look for confirmation dialog and confirm
|
||||
const confirmBtn = page.locator(
|
||||
'button:has-text("Confirm"), button:has-text("Yes"), button:has-text("Delete"):not(:first-of-type)',
|
||||
).first();
|
||||
if (await confirmBtn.isVisible({ timeout: 3_000 }).catch(() => false)) {
|
||||
await confirmBtn.click();
|
||||
await page.waitForTimeout(2_000);
|
||||
}
|
||||
|
||||
// Should navigate back to list or show success
|
||||
await snap(page, 'crud-05-after-delete');
|
||||
}
|
||||
});
|
||||
|
||||
test.afterAll(async ({ apiRequest }) => {
|
||||
// Cleanup in case UI delete didn't work
|
||||
await cleanupIntegrations(apiRequest, [integrationId]);
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,127 @@
|
||||
/**
|
||||
* UI Integration Detail Page — End-to-End Tests
|
||||
*
|
||||
* Validates the integration detail view:
|
||||
* 1. Overview tab shows correct data
|
||||
* 2. All tabs are navigable
|
||||
* 3. Health tab shows status
|
||||
* 4. Back navigation works
|
||||
*
|
||||
* Prerequisites:
|
||||
* - Main Stella Ops stack running
|
||||
* - docker-compose.integration-fixtures.yml (Harbor fixture)
|
||||
*/
|
||||
|
||||
import { test, expect } from './live-auth.fixture';
|
||||
import {
|
||||
INTEGRATION_CONFIGS,
|
||||
createIntegrationViaApi,
|
||||
cleanupIntegrations,
|
||||
snap,
|
||||
} from './helpers';
|
||||
|
||||
const BASE = process.env['PLAYWRIGHT_BASE_URL'] || 'https://stella-ops.local';
|
||||
const runId = process.env['E2E_RUN_ID'] || 'run1';
|
||||
|
||||
test.describe('UI Integration Detail — Harbor', () => {
|
||||
let integrationId: string;
|
||||
|
||||
test.beforeAll(async ({ apiRequest }) => {
|
||||
integrationId = await createIntegrationViaApi(
|
||||
apiRequest,
|
||||
INTEGRATION_CONFIGS.harbor,
|
||||
`detail-${runId}`,
|
||||
);
|
||||
|
||||
// Run test-connection so it has health data
|
||||
await apiRequest.post(`/api/v1/integrations/${integrationId}/test`);
|
||||
await apiRequest.get(`/api/v1/integrations/${integrationId}/health`);
|
||||
});
|
||||
|
||||
test('detail page loads with correct integration data', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/${integrationId}`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
const pageContent = await page.textContent('body');
|
||||
expect(pageContent).toContain('Harbor');
|
||||
expect(pageContent).toContain('harbor-fixture');
|
||||
|
||||
await snap(page, 'detail-01-overview');
|
||||
});
|
||||
|
||||
test('Overview tab shows integration metadata', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/${integrationId}`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
// Should display provider, type, endpoint info
|
||||
const pageContent = await page.textContent('body');
|
||||
|
||||
// At minimum, the integration name and endpoint should be visible
|
||||
expect(pageContent).toBeTruthy();
|
||||
expect(pageContent!.length).toBeGreaterThan(50);
|
||||
|
||||
await snap(page, 'detail-02-overview-content');
|
||||
});
|
||||
|
||||
test('tab switching works on detail page', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/${integrationId}`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(3_000);
|
||||
|
||||
// StellaPageTabsComponent renders buttons with role="tab" and aria-selected
|
||||
// Tab labels from HUB_DETAIL_TABS: Overview, Credentials, Scopes & Rules, Events, Health, Config Audit
|
||||
const tabLabels = ['Credentials', 'Events', 'Health', 'Overview'];
|
||||
|
||||
for (const label of tabLabels) {
|
||||
const tab = page.getByRole('tab', { name: label });
|
||||
const isVisible = await tab.isVisible({ timeout: 5_000 }).catch(() => false);
|
||||
if (isVisible) {
|
||||
await tab.click();
|
||||
await page.waitForTimeout(500);
|
||||
const isSelected = await tab.getAttribute('aria-selected');
|
||||
expect(isSelected, `Tab "${label}" should be selectable`).toBe('true');
|
||||
}
|
||||
}
|
||||
|
||||
await snap(page, 'detail-03-tab-switching');
|
||||
});
|
||||
|
||||
test('Health tab displays health status', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/${integrationId}`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
// Click Health tab
|
||||
const healthTab = page.getByRole('tab', { name: /health/i });
|
||||
if (await healthTab.isVisible({ timeout: 3_000 }).catch(() => false)) {
|
||||
await healthTab.click();
|
||||
await page.waitForTimeout(1_000);
|
||||
|
||||
// Should show some health-related content
|
||||
const pageContent = await page.textContent('body');
|
||||
const hasHealthContent =
|
||||
pageContent?.includes('Healthy') ||
|
||||
pageContent?.includes('healthy') ||
|
||||
pageContent?.includes('Health') ||
|
||||
pageContent?.includes('Test Connection') ||
|
||||
pageContent?.includes('Check Health');
|
||||
expect(hasHealthContent, 'Health tab should show health-related content').toBe(true);
|
||||
}
|
||||
|
||||
await snap(page, 'detail-04-health-tab');
|
||||
});
|
||||
|
||||
test.afterAll(async ({ apiRequest }) => {
|
||||
await cleanupIntegrations(apiRequest, [integrationId]);
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,157 @@
|
||||
/**
|
||||
* UI Onboarding Wizard — End-to-End Tests
|
||||
*
|
||||
* Walks through the 6-step integration onboarding wizard via the browser:
|
||||
* Step 1: Provider selection
|
||||
* Step 2: Auth / endpoint configuration
|
||||
* Step 3: Scope definition
|
||||
* Step 4: Schedule selection
|
||||
* Step 5: Preflight checks
|
||||
* Step 6: Review and submit
|
||||
*
|
||||
* Prerequisites:
|
||||
* - Main Stella Ops stack running
|
||||
* - docker-compose.integration-fixtures.yml (Harbor fixture)
|
||||
*/
|
||||
|
||||
import { test, expect } from './live-auth.fixture';
|
||||
import { cleanupIntegrations, snap } from './helpers';
|
||||
|
||||
const BASE = process.env['PLAYWRIGHT_BASE_URL'] || 'https://stella-ops.local';
|
||||
const runId = process.env['E2E_RUN_ID'] || 'run1';
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// Wizard Walk-Through: Registry (Harbor)
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('UI Onboarding Wizard — Registry', () => {
|
||||
const createdIds: string[] = [];
|
||||
|
||||
test('navigate to onboarding page for registry', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/onboarding/registry`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
// Should show the provider catalog or wizard
|
||||
const pageContent = await page.textContent('body');
|
||||
const hasWizardContent =
|
||||
pageContent?.includes('Harbor') ||
|
||||
pageContent?.includes('Registry') ||
|
||||
pageContent?.includes('Provider') ||
|
||||
pageContent?.includes('Add');
|
||||
expect(hasWizardContent, 'Onboarding page should show provider options').toBe(true);
|
||||
|
||||
await snap(page, 'wizard-01-landing');
|
||||
});
|
||||
|
||||
test('Step 1: select Harbor provider', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/onboarding/registry`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
// Look for Harbor option (could be button, pill, or card)
|
||||
const harborOption = page.locator('text=Harbor').first();
|
||||
if (await harborOption.isVisible({ timeout: 5_000 }).catch(() => false)) {
|
||||
await harborOption.click();
|
||||
await page.waitForTimeout(1_000);
|
||||
}
|
||||
|
||||
await snap(page, 'wizard-02-provider-selected');
|
||||
});
|
||||
|
||||
test('Step 2: configure endpoint', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/onboarding/registry`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
// Select Harbor first
|
||||
const harborOption = page.locator('text=Harbor').first();
|
||||
if (await harborOption.isVisible({ timeout: 3_000 }).catch(() => false)) {
|
||||
await harborOption.click();
|
||||
await page.waitForTimeout(1_000);
|
||||
}
|
||||
|
||||
// Find and click Next/Continue to advance past provider step
|
||||
const nextBtn = page.locator('button:has-text("Next"), button:has-text("Continue")').first();
|
||||
if (await nextBtn.isVisible({ timeout: 3_000 }).catch(() => false)) {
|
||||
await nextBtn.click();
|
||||
await page.waitForTimeout(1_000);
|
||||
}
|
||||
|
||||
// Look for endpoint input field
|
||||
const endpointInput = page.locator('input[placeholder*="endpoint"], input[name*="endpoint"], input[type="url"]').first();
|
||||
if (await endpointInput.isVisible({ timeout: 3_000 }).catch(() => false)) {
|
||||
await endpointInput.fill('http://harbor-fixture.stella-ops.local');
|
||||
}
|
||||
|
||||
await snap(page, 'wizard-03-endpoint');
|
||||
});
|
||||
|
||||
test.afterAll(async ({ apiRequest }) => {
|
||||
// Clean up any integrations that may have been created during wizard tests
|
||||
// Search for our e2e integrations by tag
|
||||
const resp = await apiRequest.get('/api/v1/integrations?search=E2E&pageSize=50');
|
||||
if (resp.status() === 200) {
|
||||
const body = await resp.json();
|
||||
const e2eIds = body.items
|
||||
?.filter((i: any) => i.name?.includes(runId))
|
||||
?.map((i: any) => i.id) ?? [];
|
||||
await cleanupIntegrations(apiRequest, e2eIds);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// Wizard Walk-Through: SCM (Gitea)
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('UI Onboarding Wizard — SCM', () => {
|
||||
test('navigate to SCM onboarding page', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/onboarding/scm`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
const pageContent = await page.textContent('body');
|
||||
const hasScmContent =
|
||||
pageContent?.includes('Gitea') ||
|
||||
pageContent?.includes('GitLab') ||
|
||||
pageContent?.includes('GitHub') ||
|
||||
pageContent?.includes('SCM') ||
|
||||
pageContent?.includes('Source Control');
|
||||
expect(hasScmContent, 'SCM onboarding page should show SCM providers').toBe(true);
|
||||
|
||||
await snap(page, 'wizard-scm-landing');
|
||||
});
|
||||
});
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// Wizard Walk-Through: CI/CD
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('UI Onboarding Wizard — CI/CD', () => {
|
||||
test('navigate to CI onboarding page', async ({ liveAuthPage: page }) => {
|
||||
await page.goto(`${BASE}/setup/integrations/onboarding/ci`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
const pageContent = await page.textContent('body');
|
||||
const hasCiContent =
|
||||
pageContent?.includes('Jenkins') ||
|
||||
pageContent?.includes('CI/CD') ||
|
||||
pageContent?.includes('Pipeline') ||
|
||||
pageContent?.includes('GitHub Actions');
|
||||
expect(hasCiContent, 'CI onboarding page should show CI/CD providers').toBe(true);
|
||||
|
||||
await snap(page, 'wizard-ci-landing');
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,207 @@
|
||||
/**
|
||||
* Vault & Consul Secrets Integration — End-to-End Tests
|
||||
*
|
||||
* Validates the full lifecycle for secrets-manager integrations:
|
||||
* 1. Docker compose health (Vault + Consul containers)
|
||||
* 2. Direct endpoint probes
|
||||
* 3. Connector plugin API (create, test-connection, health, delete)
|
||||
* 4. UI: Secrets tab shows created integrations
|
||||
* 5. UI: Integration detail page renders
|
||||
*
|
||||
* Prerequisites:
|
||||
* - Main Stella Ops stack running
|
||||
* - docker-compose.integrations.yml (includes Vault + Consul)
|
||||
*/
|
||||
|
||||
import { execSync } from 'child_process';
|
||||
import { test, expect } from './live-auth.fixture';
|
||||
import {
|
||||
INTEGRATION_CONFIGS,
|
||||
createIntegrationViaApi,
|
||||
cleanupIntegrations,
|
||||
snap,
|
||||
} from './helpers';
|
||||
|
||||
const BASE = process.env['PLAYWRIGHT_BASE_URL'] || 'https://stella-ops.local';
|
||||
const runId = process.env['E2E_RUN_ID'] || 'run1';
|
||||
|
||||
function dockerHealthy(containerName: string): boolean {
|
||||
try {
|
||||
const out = execSync(
|
||||
`docker ps --filter "name=${containerName}" --format "{{.Status}}"`,
|
||||
{ encoding: 'utf-8', timeout: 5_000 },
|
||||
).trim();
|
||||
return out.includes('(healthy)') || (out.startsWith('Up') && !out.includes('health: starting'));
|
||||
} catch {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 1. Compose Health
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('Secrets Integration — Compose Health', () => {
|
||||
test('Vault container is healthy', () => {
|
||||
expect(dockerHealthy('stellaops-vault'), 'Vault should be healthy').toBe(true);
|
||||
});
|
||||
|
||||
test('Consul container is healthy', () => {
|
||||
expect(dockerHealthy('stellaops-consul'), 'Consul should be healthy').toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 2. Direct Endpoint Probes
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('Secrets Integration — Direct Probes', () => {
|
||||
test('Vault /v1/sys/health returns 200', async ({ playwright }) => {
|
||||
const ctx = await playwright.request.newContext({ ignoreHTTPSErrors: true });
|
||||
try {
|
||||
const resp = await ctx.get('http://127.1.2.4:8200/v1/sys/health', { timeout: 10_000 });
|
||||
expect(resp.status()).toBeLessThan(300);
|
||||
const body = await resp.json();
|
||||
expect(body.initialized).toBe(true);
|
||||
expect(body.sealed).toBe(false);
|
||||
} finally {
|
||||
await ctx.dispose();
|
||||
}
|
||||
});
|
||||
|
||||
test('Consul /v1/status/leader returns 200', async ({ playwright }) => {
|
||||
const ctx = await playwright.request.newContext({ ignoreHTTPSErrors: true });
|
||||
try {
|
||||
const resp = await ctx.get('http://127.1.2.8:8500/v1/status/leader', { timeout: 10_000 });
|
||||
expect(resp.status()).toBeLessThan(300);
|
||||
const body = await resp.text();
|
||||
// Leader response is a quoted string like "127.0.0.1:8300"
|
||||
expect(body.length).toBeGreaterThan(2);
|
||||
} finally {
|
||||
await ctx.dispose();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 3. Connector Lifecycle (API)
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('Secrets Integration — Connector Lifecycle', () => {
|
||||
const createdIds: string[] = [];
|
||||
|
||||
test('create Vault integration returns 201', async ({ apiRequest }) => {
|
||||
const id = await createIntegrationViaApi(apiRequest, INTEGRATION_CONFIGS.vault, runId);
|
||||
createdIds.push(id);
|
||||
expect(id).toBeTruthy();
|
||||
|
||||
// Verify the integration was created with correct type
|
||||
const getResp = await apiRequest.get(`/api/v1/integrations/${id}`);
|
||||
expect(getResp.status()).toBe(200);
|
||||
const body = await getResp.json();
|
||||
expect(body.type).toBe(9); // SecretsManager
|
||||
expect(body.provider).toBe(550); // Vault
|
||||
});
|
||||
|
||||
test('test-connection on Vault returns success', async ({ apiRequest }) => {
|
||||
expect(createdIds.length).toBeGreaterThan(0);
|
||||
const resp = await apiRequest.post(`/api/v1/integrations/${createdIds[0]}/test`);
|
||||
expect(resp.status()).toBe(200);
|
||||
const body = await resp.json();
|
||||
expect(body.success).toBe(true);
|
||||
});
|
||||
|
||||
test('health-check on Vault returns Healthy', async ({ apiRequest }) => {
|
||||
expect(createdIds.length).toBeGreaterThan(0);
|
||||
const resp = await apiRequest.get(`/api/v1/integrations/${createdIds[0]}/health`);
|
||||
expect(resp.status()).toBe(200);
|
||||
const body = await resp.json();
|
||||
expect(body.status).toBe(1); // Healthy
|
||||
});
|
||||
|
||||
test('create Consul integration returns 201', async ({ apiRequest }) => {
|
||||
const id = await createIntegrationViaApi(apiRequest, INTEGRATION_CONFIGS.consul, runId);
|
||||
createdIds.push(id);
|
||||
expect(id).toBeTruthy();
|
||||
|
||||
const getResp = await apiRequest.get(`/api/v1/integrations/${id}`);
|
||||
const body = await getResp.json();
|
||||
expect(body.type).toBe(9); // SecretsManager
|
||||
expect(body.provider).toBe(551); // Consul
|
||||
});
|
||||
|
||||
test('test-connection on Consul returns success', async ({ apiRequest }) => {
|
||||
expect(createdIds.length).toBeGreaterThan(1);
|
||||
const resp = await apiRequest.post(`/api/v1/integrations/${createdIds[1]}/test`);
|
||||
expect(resp.status()).toBe(200);
|
||||
const body = await resp.json();
|
||||
expect(body.success).toBe(true);
|
||||
});
|
||||
|
||||
test('health-check on Consul returns Healthy', async ({ apiRequest }) => {
|
||||
expect(createdIds.length).toBeGreaterThan(1);
|
||||
const resp = await apiRequest.get(`/api/v1/integrations/${createdIds[1]}/health`);
|
||||
expect(resp.status()).toBe(200);
|
||||
const body = await resp.json();
|
||||
expect(body.status).toBe(1); // Healthy
|
||||
});
|
||||
|
||||
test('list SecretsManager integrations returns Vault and Consul', async ({ apiRequest }) => {
|
||||
const resp = await apiRequest.get('/api/v1/integrations?type=9&pageSize=100');
|
||||
expect(resp.status()).toBe(200);
|
||||
const body = await resp.json();
|
||||
expect(body.totalCount).toBeGreaterThanOrEqual(2);
|
||||
});
|
||||
|
||||
test.afterAll(async ({ apiRequest }) => {
|
||||
await cleanupIntegrations(apiRequest, createdIds);
|
||||
});
|
||||
});
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// 4. UI: Secrets Tab Verification
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
test.describe('Secrets Integration — UI Verification', () => {
|
||||
const createdIds: string[] = [];
|
||||
|
||||
test('Secrets tab loads and shows integrations', async ({ liveAuthPage: page, apiRequest }) => {
|
||||
// Create Vault and Consul integrations for UI verification
|
||||
const vaultId = await createIntegrationViaApi(apiRequest, INTEGRATION_CONFIGS.vault, `ui-${runId}`);
|
||||
const consulId = await createIntegrationViaApi(apiRequest, INTEGRATION_CONFIGS.consul, `ui-${runId}`);
|
||||
createdIds.push(vaultId, consulId);
|
||||
|
||||
await page.goto(`${BASE}/setup/integrations/secrets`, { waitUntil: 'networkidle', timeout: 30_000 });
|
||||
await page.waitForTimeout(3_000);
|
||||
|
||||
// Verify the page loaded with the correct heading
|
||||
const heading = page.getByRole('heading', { name: /secrets/i });
|
||||
await expect(heading).toBeVisible({ timeout: 5_000 });
|
||||
|
||||
// Should have at least the two integrations we created
|
||||
const rows = page.locator('table tbody tr');
|
||||
const count = await rows.count();
|
||||
expect(count).toBeGreaterThanOrEqual(2);
|
||||
|
||||
await snap(page, 'secrets-tab-list');
|
||||
});
|
||||
|
||||
test('integration detail page renders for Vault', async ({ liveAuthPage: page }) => {
|
||||
expect(createdIds.length).toBeGreaterThan(0);
|
||||
await page.goto(`${BASE}/setup/integrations/${createdIds[0]}`, {
|
||||
waitUntil: 'networkidle',
|
||||
timeout: 30_000,
|
||||
});
|
||||
await page.waitForTimeout(2_000);
|
||||
|
||||
// Verify detail page loaded — should show integration name
|
||||
const pageContent = await page.textContent('body');
|
||||
expect(pageContent).toContain('Vault');
|
||||
|
||||
await snap(page, 'vault-detail-page');
|
||||
});
|
||||
|
||||
test.afterAll(async ({ apiRequest }) => {
|
||||
await cleanupIntegrations(apiRequest, createdIds);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user