2025-12-03 16:57:02 +01:00
|
|
|
// wxInfoBar Tests - Notification bar for KiCad messages
|
2026-07-07 10:50:24 +02:00
|
|
|
import { test, expect } from './utils/fixtures';
|
|
|
|
|
import { clickByLabel, waitForWxApp, stableShot } from './utils/element-tracker';
|
2025-12-03 16:57:02 +01:00
|
|
|
|
|
|
|
|
test.describe('wxInfoBar Tests', () => {
|
|
|
|
|
|
|
|
|
|
test('InfoBar test app loads successfully', async ({ page, testLogger }) => {
|
|
|
|
|
await page.goto('/standalone/infobar/infobar_test.html');
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForWxApp(page);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await stableShot(page, 'infobar-01-loaded.png', { fullPage: true });
|
2025-12-03 16:57:02 +01:00
|
|
|
|
|
|
|
|
const hasStartup = testLogger.consoleLogs.some(l => l.includes('INFOBAR_TEST'));
|
|
|
|
|
|
|
|
|
|
expect(testLogger.errors.filter(e => !e.includes('favicon'))).toHaveLength(0);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('Show Info Message button works', async ({ page, testLogger }) => {
|
|
|
|
|
await page.goto('/standalone/infobar/infobar_test.html');
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForWxApp(page);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2025-12-30 14:17:51 +01:00
|
|
|
// Click Show Info Message button using element registry
|
|
|
|
|
const clicked = await clickByLabel(page, 'Show Info Message');
|
|
|
|
|
expect(clicked, 'Show Info Message button should be found and clicked').toBe(true);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await expect.poll(
|
|
|
|
|
() => testLogger.consoleLogs.some(l =>
|
|
|
|
|
l.includes('Showed info message') || l.includes('INFOBAR_EVENT')),
|
|
|
|
|
{ message: 'Info message should show' }
|
|
|
|
|
).toBe(true);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await stableShot(page, 'infobar-02-info.png', { fullPage: true });
|
2025-12-03 16:57:02 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('Show Warning Message button works', async ({ page, testLogger }) => {
|
|
|
|
|
await page.goto('/standalone/infobar/infobar_test.html');
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForWxApp(page);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2025-12-30 14:17:51 +01:00
|
|
|
// Click Show Warning Message button using element registry
|
|
|
|
|
const clicked = await clickByLabel(page, 'Show Warning Message');
|
|
|
|
|
expect(clicked, 'Show Warning Message button should be found and clicked').toBe(true);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await expect.poll(
|
|
|
|
|
() => testLogger.consoleLogs.some(l =>
|
|
|
|
|
l.includes('Showed warning message') || l.includes('warning')),
|
|
|
|
|
{ message: 'Warning message should show' }
|
|
|
|
|
).toBe(true);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await stableShot(page, 'infobar-03-warning.png', { fullPage: true });
|
2025-12-03 16:57:02 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('Show Error Message button works', async ({ page, testLogger }) => {
|
|
|
|
|
await page.goto('/standalone/infobar/infobar_test.html');
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForWxApp(page);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2025-12-30 14:17:51 +01:00
|
|
|
// Click Show Error Message button using element registry
|
|
|
|
|
const clicked = await clickByLabel(page, 'Show Error Message');
|
|
|
|
|
expect(clicked, 'Show Error Message button should be found and clicked').toBe(true);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await expect.poll(
|
|
|
|
|
() => testLogger.consoleLogs.some(l =>
|
|
|
|
|
l.includes('Showed error message') || l.includes('error')),
|
|
|
|
|
{ message: 'Error message should show' }
|
|
|
|
|
).toBe(true);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await stableShot(page, 'infobar-04-error.png', { fullPage: true });
|
2025-12-03 16:57:02 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('Dismiss button works', async ({ page, testLogger }) => {
|
|
|
|
|
await page.goto('/standalone/infobar/infobar_test.html');
|
2026-07-07 10:50:24 +02:00
|
|
|
await waitForWxApp(page);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2025-12-30 14:17:51 +01:00
|
|
|
// First show a message using element registry
|
|
|
|
|
const infoClicked = await clickByLabel(page, 'Show Info Message');
|
|
|
|
|
expect(infoClicked, 'Show Info Message button should be found').toBe(true);
|
2026-07-07 10:50:24 +02:00
|
|
|
|
|
|
|
|
await expect.poll(
|
|
|
|
|
() => testLogger.consoleLogs.some(l =>
|
|
|
|
|
l.includes('Showed info message') || l.includes('INFOBAR_EVENT')),
|
|
|
|
|
{ message: 'Info message should show before dismiss' }
|
|
|
|
|
).toBe(true);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2025-12-30 14:17:51 +01:00
|
|
|
// Then dismiss using element registry
|
|
|
|
|
const dismissClicked = await clickByLabel(page, 'Dismiss');
|
|
|
|
|
expect(dismissClicked, 'Dismiss button should be found and clicked').toBe(true);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await expect.poll(
|
|
|
|
|
() => testLogger.consoleLogs.some(l =>
|
|
|
|
|
l.includes('dismissed') || l.includes('Dismiss')),
|
|
|
|
|
{ message: 'Dismiss should work' }
|
|
|
|
|
).toBe(true);
|
2025-12-03 16:57:02 +01:00
|
|
|
|
2026-07-07 10:50:24 +02:00
|
|
|
await stableShot(page, 'infobar-05-dismiss.png', { fullPage: true });
|
2025-12-03 16:57:02 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
});
|