Files
AetherForge/server/web/e2e/discover-spread.spec.ts
AetherForge e3d7ecc33f
Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled
Stabilize Playwright phase 8 E2E to 25 green specs.
Harden login and online-card assertions, fix multi-hop discover spread selection, add Path Tracer RS lanes mock E2E, and graceful stub WS teardown.
2026-06-07 07:01:35 -07:00

140 lines
5.3 KiB
TypeScript

import { expect, test } from '@playwright/test';
import { expectOnlineCrucibleCard, loginToDashboard } from './fixtures';
import { ensureLiveStubAgent, isLiveStubReady } from './live-stub';
import {
ensureDiscoverSpreadStub,
E2E_DISCOVER_AGENT_HOSTNAME,
E2E_DISCOVER_AGENT_ID,
E2E_DISCOVER_CHAIN_HOPS,
E2E_DISCOVER_JOIN_LABEL,
isDiscoverSpreadStubReady,
} from './discover-spread-stub';
import { E2E_STUB_AGENT_HOSTNAME, E2E_STUB_AGENT_ID } from './stub-agent';
async function openCrucibleSpreadTab(page: import('@playwright/test').Page, hostname: string) {
await page.getByRole('link', { name: /Crucible/i }).click();
await expect(page.getByRole('heading', { name: 'Crucible' })).toBeVisible({ timeout: 10_000 });
const card = await expectOnlineCrucibleCard(page, hostname);
await card.click();
await expect(
page.locator('.crucible-actions-card').getByText(new RegExp(`${hostname}`)),
).toBeVisible({ timeout: 10_000 });
await page.getByRole('button', { name: 'LATERAL / SPREAD' }).click();
await expect(page.getByRole('button', { name: 'Probe & Join' })).toBeVisible({
timeout: 10_000,
});
}
test.describe('Crucible discover and spread E2E', () => {
test.describe('Probe & Join command wiring', () => {
test.beforeAll(async ({ request }) => {
await ensureLiveStubAgent(request);
});
test.beforeEach(async ({ page }) => {
test.skip(
!isLiveStubReady(),
'Requires live E2E server (test-suite phase 8 on :18989 or AETHERFORGE_URL)',
);
await loginToDashboard(page);
});
test('Probe & Join fires POST discover_and_join for selected online node', async ({ page }) => {
await openCrucibleSpreadTab(page, E2E_STUB_AGENT_HOSTNAME);
const commandRequest = page.waitForRequest(
(req) =>
req.method() === 'POST' &&
req.url().includes(`/api/v1/agents/${E2E_STUB_AGENT_ID}/command`) &&
req.postDataJSON()?.action === 'discover_and_join',
);
await page.getByRole('button', { name: 'Probe & Join' }).click();
const request = await commandRequest;
expect(request.postDataJSON()).toMatchObject({ action: 'discover_and_join' });
await expect(page.locator('.crucible-terminal')).toContainText('discover_and_join → 1 node(s)', {
timeout: 10_000,
});
});
});
test.describe('Multi-hop discover→spread acknowledgment', () => {
test.beforeAll(async ({ request }) => {
await ensureDiscoverSpreadStub(request);
});
test.beforeEach(async ({ page }) => {
test.skip(
!isDiscoverSpreadStubReady(),
'Requires live E2E server (test-suite phase 8 on :18989 or AETHERFORGE_URL)',
);
await loginToDashboard(page);
});
test('discover_and_join stub ack updates join lane in Access Depth', async ({ page }) => {
await openCrucibleSpreadTab(page, E2E_DISCOVER_AGENT_HOSTNAME);
const commandRequest = page.waitForRequest(
(req) =>
req.method() === 'POST' &&
req.url().includes(`/api/v1/agents/${E2E_DISCOVER_AGENT_ID}/command`) &&
req.postDataJSON()?.action === 'discover_and_join',
);
await page.getByRole('button', { name: 'Probe & Join' }).click();
await commandRequest;
await expect(page.locator('.crucible-terminal')).toContainText('discover_and_join → 1 node(s)', {
timeout: 10_000,
});
await expect(page.locator('.access-depth-panel')).toContainText(E2E_DISCOVER_JOIN_LABEL, {
timeout: 15_000,
});
});
test('multi-hop chain propagates join lanes across egress seed and leaf', async ({ page }) => {
const [egress, seed, leaf] = E2E_DISCOVER_CHAIN_HOPS;
await openCrucibleSpreadTab(page, egress.hostname);
const commandRequest = page.waitForRequest(
(req) =>
req.method() === 'POST' &&
req.url().includes(`/api/v1/agents/${egress.id}/command`) &&
req.postDataJSON()?.action === 'discover_and_join',
);
await page.getByRole('button', { name: 'Probe & Join' }).click();
await commandRequest;
await expect(page.locator('.crucible-terminal')).toContainText('multi-hop chain', {
timeout: 10_000,
});
await expect(page.locator('.access-depth-panel')).toContainText(egress.joinLabel, {
timeout: 15_000,
});
// Stub propagates join_lane stats to downstream hops with staggered delays.
await page.waitForTimeout(2_000);
for (const hop of [seed, leaf]) {
// Crucible toggles multi-select — clear egress (and any prior hop) before focusing downstream.
const selectedCards = page.locator('.crucible-node-card.selected');
for (let i = 0, n = await selectedCards.count(); i < n; i++) {
await selectedCards.first().click();
}
const card = await expectOnlineCrucibleCard(page, hop.hostname);
await card.scrollIntoViewIfNeeded();
await card.click();
await expect(
page.locator('.crucible-actions-card').getByText(new RegExp(`${hop.hostname}`)),
).toBeVisible({ timeout: 20_000 });
await page.getByRole('button', { name: 'LATERAL / SPREAD' }).click();
await expect(page.locator('.access-depth-panel')).toContainText(hop.joinLabel, {
timeout: 20_000,
});
}
});
});
});