Files
rose-ash/tests/playwright/handler-responses.spec.js
giles 953f0ec744 Fix handler aser keyword loss: re-serialize evaluated HTML elements
When handler bodies use (let ((rows (map ...))) (<> rows)), the let
binding evaluates the map via CEK, which converts :class keywords to
"class" strings. The aser fragment serializer then outputs "class" as
text content instead of :class as an HTML attribute.

Fix: add aser-reserialize function that detects string pairs in
evaluated element lists where the first string matches known HTML
attribute names (class, id, sx-*, data-*, style, href, src, type,
name, value, etc.) and restores them as :keyword syntax.

All 7 handler response tests now pass:
- bulk-update, delete-row, click-to-load, active-search
- form-submission, edit-row, tabs

Total Playwright: 79/79

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 18:37:21 +00:00

136 lines
5.4 KiB
JavaScript

const { test, expect } = require('playwright/test');
const BASE_URL = process.env.SX_TEST_URL || 'http://localhost:8013';
test.describe('Handler responses render correctly', () => {
test('bulk-update: deactivate renders proper HTML attributes', async ({ page }) => {
await page.goto(BASE_URL + '/sx/(geography.(hypermedia.(example.bulk-update)))', { waitUntil: 'networkidle' });
await page.waitForTimeout(2000);
// Check first row, note its status
const firstCheckbox = page.locator('input[type="checkbox"]').first();
await firstCheckbox.check();
// Click Deactivate
await page.locator('button:has-text("Deactivate")').first().click();
await page.waitForTimeout(3000);
// The table should still have proper HTML — no raw "class" text visible
const tableText = await page.locator('table').first().textContent();
expect(tableText).not.toContain('classpx');
expect(tableText).not.toContain('classborder');
// Rows should have proper class attributes, not class as text content
const firstTd = page.locator('table tbody tr td').first();
const tdClass = await firstTd.getAttribute('class');
expect(tdClass).toBeTruthy();
expect(tdClass).toContain('px-');
});
test('delete-row: response renders with proper HTML classes', async ({ page }) => {
await page.goto(BASE_URL + '/sx/(geography.(hypermedia.(example.delete-row)))', { waitUntil: 'networkidle' });
await page.waitForTimeout(2000);
// Table should have proper class attrs, not text
const tableText = await page.locator('table').first().textContent();
expect(tableText).not.toContain('classpx');
expect(tableText).not.toContain('classborder');
// Click delete and check response doesn't corrupt
await page.locator('button:has-text("Delete")').first().click();
await page.waitForTimeout(3000);
const afterText = await page.locator('table').first().textContent();
expect(afterText).not.toContain('classpx');
expect(afterText).not.toContain('classborder');
});
test('click-to-load: loaded rows have proper HTML', async ({ page }) => {
await page.goto(BASE_URL + '/sx/(geography.(hypermedia.(example.click-to-load)))', { waitUntil: 'networkidle' });
await page.waitForTimeout(2000);
const rowsBefore = await page.locator('table tbody tr').count();
const loadBtn = page.locator('button:has-text("Load More")').first();
if (await loadBtn.count() > 0) {
await loadBtn.click();
await page.waitForTimeout(3000);
const rowsAfter = await page.locator('table tbody tr').count();
expect(rowsAfter).toBeGreaterThan(rowsBefore);
// New rows should have proper class attrs
const lastTd = page.locator('table tbody tr:last-child td').first();
const text = await lastTd.textContent();
expect(text).not.toContain('classpx');
}
});
test('active-search: results render as proper HTML', async ({ page }) => {
await page.goto(BASE_URL + '/sx/(geography.(hypermedia.(example.active-search)))', { waitUntil: 'networkidle' });
await page.waitForTimeout(2000);
const input = page.locator('input[placeholder*="earch"], input[name="q"]').first();
await input.fill('python');
await page.waitForTimeout(3000);
const results = page.locator('#search-results');
const text = await results.textContent();
// Should contain search results with proper HTML, not raw class text
expect(text).not.toContain('classpx');
expect(text).not.toContain('classbg');
});
test('form-submission: response renders as HTML not SX text', async ({ page }) => {
await page.goto(BASE_URL + '/sx/(geography.(hypermedia.(example.form-submission)))', { waitUntil: 'networkidle' });
await page.waitForTimeout(2000);
const form = page.locator('form').first();
const inputs = form.locator('input[type="text"], input:not([type])');
if (await inputs.count() > 0) {
await inputs.first().fill('test-value');
}
const submit = form.locator('button[type="submit"], button').first();
await submit.click();
await page.waitForTimeout(3000);
// Response should not have raw SX class text
const root = page.locator('#sx-root');
const text = await root.textContent();
expect(text).not.toContain('classpx');
expect(text).not.toContain('classborder');
});
test('edit-row: edited row renders with proper classes', async ({ page }) => {
await page.goto(BASE_URL + '/sx/(geography.(hypermedia.(example.edit-row)))', { waitUntil: 'networkidle' });
await page.waitForTimeout(2000);
const editBtn = page.locator('button:has-text("Edit")').first();
if (await editBtn.count() > 0) {
await editBtn.click();
await page.waitForTimeout(2000);
// Edit form or inline edit should not show raw class text
const root = page.locator('#sx-root');
const text = await root.textContent();
expect(text).not.toContain('classpx');
}
});
test('tabs: tab content renders as proper HTML', async ({ page }) => {
await page.goto(BASE_URL + '/sx/(geography.(hypermedia.(example.tabs)))', { waitUntil: 'networkidle' });
await page.waitForTimeout(2000);
// Click a tab
const tabs = page.locator('[sx-get*="tab"]');
if (await tabs.count() >= 2) {
await tabs.nth(1).click();
await page.waitForTimeout(2000);
const root = page.locator('#sx-root');
const text = await root.textContent();
expect(text).not.toContain('classpx');
}
});
});