File size: 25,935 Bytes
97ee7cb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 | import { expect, test, type Page } from '@playwright/test';
type MockWidgetResponse = {
delayMs?: number;
endpoint: string;
title: string;
html: string;
};
const widgetKey = 'test-widget-key';
const createPrompt = "Show me today's crude oil price versus gold";
const modifyPrompt = 'Turn this into a flight delay summary instead';
function expectLegacyWidgetHeaderIfPresent(headers: Record<string, string>): void {
const header = headers['x-widget-key'];
if (header !== undefined) expect(header).toBe(widgetKey);
}
function buildTallWidgetHtml(title: string, markerClass: string): string {
const rows = Array.from({ length: 24 }, (_, index) => {
const value = 80 + index;
return `
<div class="market-item" style="padding: 12px; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;">
<div class="market-item-name">${title} ${index + 1}</div>
<div class="market-item-price">$${value}</div>
</div>
`;
}).join('');
return `
<div class="${markerClass}" data-widget-marker="${markerClass}" style="display:grid;gap:12px;">
<div
data-escape-banner="true"
style="position:fixed;top:0;left:0;width:200vw;height:44px;background:#ff4444;color:#fff;z-index:9999;"
>
escape banner
</div>
<div class="economic-header" style="display:grid;gap:4px;">
<strong>${title}</strong>
<span>Live WorldMonitor snapshot</span>
</div>
<div class="economic-grid" style="display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;">
${rows}
</div>
<div class="economic-footer">
<span>Source: WorldMonitor</span>
</div>
</div>
`;
}
function buildWidgetSseResponse({ endpoint, title, html }: MockWidgetResponse): string {
return [
{ type: 'tool_call', endpoint },
{ type: 'html_complete', html },
{ type: 'done', title },
]
.map((payload) => `data: ${JSON.stringify(payload)}\n\n`)
.join('');
}
async function installWidgetAgentMocks(
page: Parameters<typeof test>[0]['page'],
responses: MockWidgetResponse[],
requestBodies: unknown[] = [],
healthDelayMs = 0,
): Promise<void> {
await page.route('**/widget-agent/health', async (route) => {
if (healthDelayMs > 0) {
await new Promise((resolve) => setTimeout(resolve, healthDelayMs));
}
expectLegacyWidgetHeaderIfPresent(route.request().headers());
await route.fulfill({
status: 200,
contentType: 'application/json',
body: JSON.stringify({
ok: true,
agentEnabled: true,
widgetKeyConfigured: true,
anthropicConfigured: true,
proKeyConfigured: false,
}),
});
});
let responseIndex = 0;
await page.route('**/widget-agent', async (route) => {
const body = route.request().postDataJSON();
requestBodies.push(body);
const response = responses[responseIndex];
if (!response) {
await route.fulfill({
status: 500,
contentType: 'application/json',
body: JSON.stringify({ error: 'Unexpected extra widget-agent call' }),
});
return;
}
responseIndex += 1;
if ((response.delayMs ?? 0) > 0) {
await new Promise((resolve) => setTimeout(resolve, response.delayMs));
}
await route.fulfill({
status: 200,
contentType: 'text/event-stream',
headers: {
'cache-control': 'no-cache',
connection: 'keep-alive',
},
body: buildWidgetSseResponse(response),
});
});
}
const proWidgetKey = 'test-pro-widget-key';
function buildProWidgetBody(title: string, markerClass: string): string {
return `<div class="${markerClass}" data-widget-marker="${markerClass}">
<h2 style="color:#e0e0e0;margin:0 0 12px">${title}</h2>
<canvas id="myChart" style="max-height:300px"></canvas>
<script>
const DATA = { labels: ['Jan','Feb','Mar'], values: [10,20,30] };
const ctx = document.getElementById('myChart').getContext('2d');
new Chart(ctx, {
type: 'bar',
data: { labels: DATA.labels, datasets: [{ label: '${title}', data: DATA.values }] }
});
</script>
</div>`;
}
async function installProWidgetAgentMocks(
page: Parameters<typeof test>[0]['page'],
responses: MockWidgetResponse[],
requestBodies: unknown[] = [],
proKeyConfigured = true,
): Promise<void> {
await page.route('**/widget-agent/health', async (route) => {
expectLegacyWidgetHeaderIfPresent(route.request().headers());
await route.fulfill({
status: 200,
contentType: 'application/json',
body: JSON.stringify({
ok: true,
agentEnabled: true,
widgetKeyConfigured: true,
anthropicConfigured: true,
proKeyConfigured,
}),
});
});
let responseIndex = 0;
await page.route('**/widget-agent', async (route) => {
const body = route.request().postDataJSON();
requestBodies.push(body);
const response = responses[responseIndex];
if (!response) {
await route.fulfill({ status: 500, contentType: 'application/json', body: '{"error":"Unexpected call"}' });
return;
}
responseIndex += 1;
await route.fulfill({
status: 200,
contentType: 'text/event-stream',
headers: { 'cache-control': 'no-cache', connection: 'keep-alive' },
body: buildWidgetSseResponse(response),
});
});
}
async function closeMissionPresetPromptIfOpen(page: Page): Promise<void> {
const closeButton = page.locator('.mission-preset-popover [data-mission-close]');
if (await closeButton.isVisible({ timeout: 1_000 }).catch(() => false)) {
await closeButton.click({ force: true });
await expect(page.locator('.mission-preset-popover')).toBeHidden({ timeout: 5_000 });
}
}
async function clickWidgetBuilderBlock(page: Page, selector: string): Promise<void> {
await expect(page.locator(selector)).toBeVisible({ timeout: 30_000 });
await closeMissionPresetPromptIfOpen(page);
await page.locator(selector).click();
}
test.describe('AI widget builder', () => {
test.beforeEach(async ({ page }) => {
await page.addInitScript((key) => {
if (!sessionStorage.getItem('__widget_e2e_init__')) {
localStorage.clear();
sessionStorage.clear();
localStorage.setItem('worldmonitor-variant', 'happy');
localStorage.setItem('worldmonitor-mission-preset-dismissed-v1', '1');
localStorage.setItem('wm-widget-key', key);
sessionStorage.setItem('__widget_e2e_init__', '1');
return;
}
if (!localStorage.getItem('wm-widget-key')) {
localStorage.setItem('wm-widget-key', key);
}
}, widgetKey);
});
test('creates a widget through the live modal flow and persists it after reload', async ({ page }) => {
const createHtml = buildTallWidgetHtml('Oil vs Gold', 'oil-gold-widget');
await installWidgetAgentMocks(
page,
[
{
delayMs: 250,
endpoint: '/rpc/worldmonitor.markets.v1.MarketsService/GetCommodities',
title: 'Oil vs Gold',
html: createHtml,
},
],
[],
500,
);
await page.goto('/');
await clickWidgetBuilderBlock(page, '#panelsGrid .ai-widget-block');
const modal = page.locator('.widget-chat-modal');
const sendButton = modal.locator('.widget-chat-send');
const input = modal.locator('.widget-chat-input');
const preview = modal.locator('.widget-chat-preview');
const footer = modal.locator('.widget-chat-footer');
const footerAction = footer.locator('.widget-chat-action-btn');
await expect(modal).toBeVisible();
await expect(modal.locator('.widget-chat-layout')).toBeVisible();
await expect(modal.locator('.widget-chat-sidebar')).toBeVisible();
await expect(modal.locator('.widget-chat-main')).toBeVisible();
await expect(modal.locator('.widget-chat-example-chip')).toHaveCount(4);
await modal.locator('.widget-chat-example-chip').first().click();
await expect(input).toHaveValue(createPrompt);
await expect(modal.locator('.widget-chat-readiness')).toContainText('Connected to the widget agent');
await expect(preview).toContainText('Describe the widget you want');
await expect(sendButton).toBeEnabled();
const sidebarBox = await modal.locator('.widget-chat-sidebar').boundingBox();
const mainBox = await modal.locator('.widget-chat-main').boundingBox();
expect(sidebarBox?.width ?? 0).toBeGreaterThan(280);
expect(mainBox?.width ?? 0).toBeGreaterThan(320);
await sendButton.click();
await expect(preview.locator('.widget-chat-preview-frame')).toBeVisible({ timeout: 30000 });
await expect(preview).toContainText('Oil vs Gold');
await expect(preview.locator('.wm-widget-shell')).toBeVisible();
await expect(preview.locator('.wm-widget-generated')).toBeVisible();
await expect(footerAction).toBeEnabled();
const footerBefore = await footer.boundingBox();
await preview.evaluate((element) => {
element.scrollTop = element.scrollHeight;
});
const footerAfter = await footer.boundingBox();
expect(Math.abs((footerAfter?.y ?? 0) - (footerBefore?.y ?? 0))).toBeLessThan(2);
await expect(footerAction).toBeVisible();
await footerAction.click();
const widgetPanel = page.locator('.custom-widget-panel', {
has: page.locator('.panel-title', { hasText: 'Oil vs Gold' }),
});
await expect(widgetPanel).toBeVisible({ timeout: 20000 });
await expect(widgetPanel.locator('.wm-widget-shell')).toBeVisible();
await expect(widgetPanel.locator('.wm-widget-generated')).toBeVisible();
const containment = await widgetPanel.locator('.wm-widget-generated').evaluate((element) => {
const style = getComputedStyle(element);
return {
contain: style.contain,
overflowX: style.overflowX,
overflowY: style.overflowY,
};
});
expect(containment.contain).toContain('layout');
expect(containment.contain).toContain('paint');
expect(['clip', 'hidden']).toContain(containment.overflowX);
expect(['clip', 'hidden']).toContain(containment.overflowY);
const bannerPosition = await widgetPanel.evaluate((panel) => {
const panelRect = panel.getBoundingClientRect();
const banner = panel.querySelector('[data-escape-banner="true"]') as HTMLElement | null;
const bannerRect = banner?.getBoundingClientRect() ?? null;
return { panelRect, bannerRect };
});
expect(bannerPosition.bannerRect).not.toBeNull();
expect(bannerPosition.bannerRect!.top).toBeGreaterThanOrEqual(bannerPosition.panelRect.top - 1);
expect(bannerPosition.bannerRect!.left).toBeGreaterThanOrEqual(bannerPosition.panelRect.left - 1);
await page.reload();
await expect(page.locator('.custom-widget-panel', {
has: page.locator('.panel-title', { hasText: 'Oil vs Gold' }),
})).toBeVisible({ timeout: 20000 });
const storedWidgets = await page.evaluate(() => {
return JSON.parse(localStorage.getItem('wm-custom-widgets') || '[]') as Array<{ title: string }>;
});
expect(storedWidgets.some((entry) => entry.title === 'Oil vs Gold')).toBe(true);
});
test('supports modify, keeps session history, exposes touch-sized controls, and cleans storage on delete', async ({ page }) => {
const requestBodies: unknown[] = [];
await installWidgetAgentMocks(page, [
{
endpoint: '/rpc/worldmonitor.markets.v1.MarketsService/GetCommodities',
title: 'Oil vs Gold',
html: buildTallWidgetHtml('Oil vs Gold', 'oil-gold-widget'),
},
{
endpoint: '/rpc/worldmonitor.aviation.v1.AviationService/GetAirportDelays',
title: 'Flight Delay Watch',
html: buildTallWidgetHtml('Flight Delay Watch', 'flight-delay-widget'),
},
], requestBodies);
await page.goto('/');
await clickWidgetBuilderBlock(page, '#panelsGrid .ai-widget-block');
const modal = page.locator('.widget-chat-modal');
await expect(modal.locator('.widget-chat-readiness')).toContainText('Connected to the widget agent');
await modal.locator('.widget-chat-input').fill(createPrompt);
await modal.locator('.widget-chat-send').click();
await expect(modal.locator('.widget-chat-action-btn')).toBeEnabled({ timeout: 30000 });
await modal.locator('.widget-chat-action-btn').click();
const widgetPanel = page.locator('.custom-widget-panel', {
has: page.locator('.panel-title', { hasText: 'Oil vs Gold' }),
});
await expect(widgetPanel).toBeVisible({ timeout: 20000 });
const modifyButton = widgetPanel.locator('.panel-widget-chat-btn');
const colorButton = widgetPanel.locator('.widget-color-btn');
await expect(modifyButton).toBeVisible();
await expect(colorButton).toBeVisible();
const controlSizes = await widgetPanel.evaluate((panel) => {
const modify = panel.querySelector('.panel-widget-chat-btn') as HTMLElement | null;
const color = panel.querySelector('.widget-color-btn') as HTMLElement | null;
const modifyRect = modify?.getBoundingClientRect();
const colorRect = color?.getBoundingClientRect();
return {
modifyWidth: modifyRect?.width ?? 0,
modifyHeight: modifyRect?.height ?? 0,
colorWidth: colorRect?.width ?? 0,
colorHeight: colorRect?.height ?? 0,
};
});
expect(controlSizes.modifyWidth).toBeGreaterThanOrEqual(32);
expect(controlSizes.modifyHeight).toBeGreaterThanOrEqual(32);
expect(controlSizes.colorWidth).toBeGreaterThanOrEqual(32);
expect(controlSizes.colorHeight).toBeGreaterThanOrEqual(32);
const initialAccent = await colorButton.evaluate((button) => getComputedStyle(button).backgroundColor);
await colorButton.click();
const updatedAccent = await colorButton.evaluate((button) => getComputedStyle(button).backgroundColor);
expect(updatedAccent).not.toBe(initialAccent);
await modifyButton.click();
const modifyModal = page.locator('.widget-chat-modal');
await expect(modifyModal).toBeVisible();
await expect(modifyModal.locator('.widget-chat-messages')).toContainText(createPrompt);
await expect(modifyModal.locator('.widget-chat-messages')).toContainText('Generated widget: Oil vs Gold');
await expect(modifyModal.locator('.widget-chat-preview')).toContainText('Oil vs Gold');
await modifyModal.locator('.widget-chat-input').fill(modifyPrompt);
await modifyModal.locator('.widget-chat-send').click();
await expect(modifyModal.locator('.widget-chat-action-btn')).toBeEnabled({ timeout: 30000 });
await expect(modifyModal.locator('.widget-chat-preview')).toContainText('Flight Delay Watch');
await modifyModal.locator('.widget-chat-action-btn').click();
const updatedPanel = page.locator('.custom-widget-panel', {
has: page.locator('.panel-title', { hasText: 'Flight Delay Watch' }),
});
await expect(updatedPanel).toBeVisible({ timeout: 20000 });
const storedWidgetMeta = await page.evaluate(() => {
const widgets = JSON.parse(localStorage.getItem('wm-custom-widgets') || '[]') as Array<{
id: string;
title: string;
}>;
return widgets.find((entry) => entry.title === 'Flight Delay Watch') ?? null;
});
expect(storedWidgetMeta).not.toBeNull();
const secondRequest = requestBodies[1] as {
conversationHistory?: Array<{ role: string; content: string }>;
currentHtml?: string | null;
} | undefined;
expect(secondRequest?.currentHtml).toContain('oil-gold-widget');
expect(secondRequest?.conversationHistory?.some((entry) => entry.content.includes(createPrompt))).toBe(true);
expect(secondRequest?.conversationHistory?.some((entry) => entry.content.includes('Generated widget: Oil vs Gold'))).toBe(true);
await page.evaluate((widgetId: string) => {
localStorage.setItem('worldmonitor-panel-spans', JSON.stringify({ [widgetId]: 2 }));
localStorage.setItem('worldmonitor-panel-col-spans', JSON.stringify({ [widgetId]: 3 }));
}, storedWidgetMeta!.id);
await page.evaluate(() => {
window.confirm = () => true;
});
await updatedPanel.locator('.panel-close-btn').evaluate((button: HTMLButtonElement) => {
button.click();
});
await expect(updatedPanel).toHaveCount(0);
const cleanedStorage = await page.evaluate(() => {
return {
widgets: localStorage.getItem('wm-custom-widgets'),
rowSpans: localStorage.getItem('worldmonitor-panel-spans'),
colSpans: localStorage.getItem('worldmonitor-panel-col-spans'),
};
});
expect(cleanedStorage.widgets).toBe('[]');
expect(cleanedStorage.rowSpans).toBeNull();
expect(cleanedStorage.colSpans).toBeNull();
await page.reload();
await expect(page.locator('.custom-widget-panel')).toHaveCount(0);
});
});
// ---------------------------------------------------------------------------
// PRO tier widget tests
// ---------------------------------------------------------------------------
test.describe('AI widget builder — PRO tier', () => {
test.beforeEach(async ({ page }) => {
await page.addInitScript(
({ wKey, pKey }: { wKey: string; pKey: string }) => {
if (!sessionStorage.getItem('__widget_pro_e2e_init__')) {
localStorage.clear();
sessionStorage.clear();
localStorage.setItem('worldmonitor-variant', 'happy');
localStorage.setItem('wm-widget-key', wKey);
localStorage.setItem('wm-pro-key', pKey);
sessionStorage.setItem('__widget_pro_e2e_init__', '1');
return;
}
if (!localStorage.getItem('wm-widget-key')) localStorage.setItem('wm-widget-key', wKey);
if (!localStorage.getItem('wm-pro-key')) localStorage.setItem('wm-pro-key', pKey);
},
{ wKey: widgetKey, pKey: proWidgetKey },
);
});
test('creates a PRO widget: iframe renders with allow-scripts sandbox and PRO badge visible', async ({
page,
}) => {
const proHtml = buildProWidgetBody('Oil vs Gold Interactive', 'pro-oil-gold');
await installProWidgetAgentMocks(page, [
{
endpoint: '/rpc/worldmonitor.markets.v1.MarketsService/GetCommodities',
title: 'Oil vs Gold Interactive',
html: proHtml,
},
]);
await page.goto('/');
await clickWidgetBuilderBlock(page, '#panelsGrid .ai-widget-block-pro');
const modal = page.locator('.widget-chat-modal');
await expect(modal).toBeVisible();
await expect(modal.locator('.widget-pro-badge')).toBeVisible();
await expect(modal.locator('.widget-chat-readiness')).toContainText('Connected', { timeout: 15000 });
await modal.locator('.widget-chat-input').fill('Interactive chart comparing oil and gold prices');
await modal.locator('.widget-chat-send').click();
await expect(modal.locator('.widget-chat-action-btn')).toBeEnabled({ timeout: 30000 });
await expect(modal.locator('.widget-chat-preview')).toContainText('Oil vs Gold Interactive');
// PRO preview shows iframe (not basic .wm-widget-generated)
const previewIframe = modal.locator('.widget-chat-preview iframe');
await expect(previewIframe).toBeVisible();
const sandboxAttr = await previewIframe.getAttribute('sandbox');
expect(sandboxAttr).toBe('allow-scripts');
expect(sandboxAttr).not.toContain('allow-same-origin');
await modal.locator('.widget-chat-action-btn').click();
const widgetPanel = page.locator('.custom-widget-panel', {
has: page.locator('.panel-title', { hasText: 'Oil vs Gold Interactive' }),
});
await expect(widgetPanel).toBeVisible({ timeout: 20000 });
await expect(widgetPanel.locator('.widget-pro-badge')).toBeVisible();
const panelIframe = widgetPanel.locator('iframe[sandbox="allow-scripts"]');
await expect(panelIframe).toBeVisible();
const iframeHeight = await panelIframe.evaluate((el) => el.getBoundingClientRect().height);
expect(iframeHeight).toBeGreaterThanOrEqual(390);
});
test('PRO widget persists HTML in the main array and survives reload', async ({
page,
}) => {
const proHtml = buildProWidgetBody('Crypto Table', 'pro-crypto');
await installProWidgetAgentMocks(page, [
{
endpoint: '/rpc/worldmonitor.markets.v1.MarketsService/GetCommodities',
title: 'Crypto Table',
html: proHtml,
},
]);
await page.goto('/');
await clickWidgetBuilderBlock(page, '#panelsGrid .ai-widget-block-pro');
const modal = page.locator('.widget-chat-modal');
await expect(modal.locator('.widget-chat-readiness')).toContainText('Connected', { timeout: 15000 });
await modal.locator('.widget-chat-input').fill('Sortable crypto price table');
await modal.locator('.widget-chat-send').click();
await expect(modal.locator('.widget-chat-action-btn')).toBeEnabled({ timeout: 30000 });
await modal.locator('.widget-chat-action-btn').click();
await expect(page.locator('.custom-widget-panel', {
has: page.locator('.panel-title', { hasText: 'Crypto Table' }),
})).toBeVisible({ timeout: 20000 });
const storage = await page.evaluate(() => {
const widgets = JSON.parse(localStorage.getItem('wm-custom-widgets') || '[]') as Array<{
id: string;
title: string;
tier?: string;
html?: string;
}>;
const entry = widgets.find((w) => w.title === 'Crypto Table');
if (!entry) return null;
const proHtmlStored = localStorage.getItem(`wm-pro-html-${entry.id}`);
return { entry, proHtmlStored };
});
expect(storage).not.toBeNull();
// Main array is canonical; the legacy side key should not be needed for new saves.
expect(storage!.entry.tier).toBe('pro');
expect(storage!.entry.html).toContain('pro-crypto');
expect(storage!.proHtmlStored).toBeNull();
await page.reload();
await expect(page.locator('.custom-widget-panel', {
has: page.locator('.panel-title', { hasText: 'Crypto Table' }),
})).toBeVisible({ timeout: 20000 });
});
test('modify PRO widget: tier preserved, history passed to server', async ({ page }) => {
const requestBodies: unknown[] = [];
await installProWidgetAgentMocks(
page,
[
{
endpoint: '/rpc/worldmonitor.markets.v1.MarketsService/GetCommodities',
title: 'Oil vs Gold Interactive',
html: buildProWidgetBody('Oil vs Gold Interactive', 'pro-oil-gold'),
},
{
endpoint: '/rpc/worldmonitor.aviation.v1.AviationService/GetAirportDelays',
title: 'Flight Interactive',
html: buildProWidgetBody('Flight Interactive', 'pro-flight'),
},
],
requestBodies,
);
await page.goto('/');
await clickWidgetBuilderBlock(page, '#panelsGrid .ai-widget-block-pro');
const modal = page.locator('.widget-chat-modal');
await expect(modal.locator('.widget-chat-readiness')).toContainText('Connected', { timeout: 15000 });
await modal.locator('.widget-chat-input').fill('Interactive oil gold chart');
await modal.locator('.widget-chat-send').click();
await expect(modal.locator('.widget-chat-action-btn')).toBeEnabled({ timeout: 30000 });
await modal.locator('.widget-chat-action-btn').click();
const widgetPanel = page.locator('.custom-widget-panel', {
has: page.locator('.panel-title', { hasText: 'Oil vs Gold Interactive' }),
});
await expect(widgetPanel).toBeVisible({ timeout: 20000 });
await widgetPanel.locator('.panel-widget-chat-btn').click();
const modifyModal = page.locator('.widget-chat-modal');
await expect(modifyModal).toBeVisible();
await expect(modifyModal.locator('.widget-pro-badge')).toBeVisible();
await modifyModal.locator('.widget-chat-input').fill('Turn into flight delay interactive chart');
await modifyModal.locator('.widget-chat-send').click();
await expect(modifyModal.locator('.widget-chat-action-btn')).toBeEnabled({ timeout: 30000 });
await modifyModal.locator('.widget-chat-action-btn').click();
await expect(page.locator('.custom-widget-panel', {
has: page.locator('.panel-title', { hasText: 'Flight Interactive' }),
})).toBeVisible({ timeout: 20000 });
const secondRequest = requestBodies[1] as {
tier?: string;
conversationHistory?: Array<{ role: string; content: string }>;
} | undefined;
expect(secondRequest?.tier).toBe('pro');
expect(secondRequest?.conversationHistory?.some((e) => e.content.includes('Interactive oil gold chart'))).toBe(true);
// Verify stored widget still has tier: 'pro'
const storedTier = await page.evaluate(() => {
const widgets = JSON.parse(localStorage.getItem('wm-custom-widgets') || '[]') as Array<{
title: string;
tier?: string;
}>;
return widgets.find((w) => w.title === 'Flight Interactive')?.tier;
});
expect(storedTier).toBe('pro');
});
test('proKeyConfigured: false in health response → modal shows PRO unavailable error, button still visible', async ({
page,
}) => {
await installProWidgetAgentMocks(page, [], [], false);
await page.goto('/');
await clickWidgetBuilderBlock(page, '#panelsGrid .ai-widget-block-pro');
const modal = page.locator('.widget-chat-modal');
await expect(modal).toBeVisible();
// Modal preflight should show a PRO unavailable error message
await expect(modal.locator('.widget-chat-readiness')).toContainText(
/unavailable|not configured|PRO/i,
{ timeout: 15000 },
);
// Send button should be disabled (can't generate without PRO key on server)
await expect(modal.locator('.widget-chat-send')).toBeDisabled();
// Close modal — PRO button must still be visible
await page.keyboard.press('Escape');
await expect(modal).not.toBeVisible();
await expect(page.locator('#panelsGrid .ai-widget-block-pro')).toBeVisible();
});
});
|