Files
antigravity-claude-proxy/tests/frontend/test-frontend-dashboard.cjs
Wha1eChai 48ad476b5f feat(dashboard): comprehensive filter enhancement and UI layout fixes
- Add time range selector (1H/6H/24H/7D/All) with preference persistence
- Implement smart X-axis label formatting for multi-day usage data
- Standardize global component spacing and fix CSS @apply limitations
- Add elegant empty state UI for charts when filtered data is absent
- Update i18n translations for all new dashboard features
2026-01-09 22:33:11 +08:00

161 lines
5.3 KiB
JavaScript

/**
* Frontend Test Suite - Dashboard Page
* Tests the dashboard component functionality
*
* Run: node tests/test-frontend-dashboard.cjs
*/
const http = require('http');
const BASE_URL = process.env.TEST_BASE_URL || `http://localhost:${process.env.PORT || 8080}`;
// Helper to make HTTP requests
function request(path, options = {}) {
return new Promise((resolve, reject) => {
const url = new URL(path, BASE_URL);
const req = http.request(url, {
method: options.method || 'GET',
headers: options.headers || {}
}, (res) => {
let data = '';
res.on('data', chunk => data += chunk);
res.on('end', () => {
resolve({ status: res.statusCode, data, headers: res.headers });
});
});
req.on('error', reject);
if (options.body) req.write(JSON.stringify(options.body));
req.end();
});
}
// Test cases
const tests = [
{
name: 'Dashboard view loads successfully',
async run() {
const res = await request('/views/dashboard.html');
if (res.status !== 200) {
throw new Error(`Expected 200, got ${res.status}`);
}
if (!res.data.includes('x-data="dashboard"')) {
throw new Error('Dashboard component not found in HTML');
}
if (!res.data.includes('quotaChart')) {
throw new Error('Quota chart canvas not found');
}
return 'Dashboard HTML loads with component and chart';
}
},
{
name: 'Account limits API returns data',
async run() {
const res = await request('/account-limits');
if (res.status !== 200) {
throw new Error(`Expected 200, got ${res.status}`);
}
const data = JSON.parse(res.data);
if (!data.accounts || !Array.isArray(data.accounts)) {
throw new Error('accounts array not found in response');
}
if (!data.models || !Array.isArray(data.models)) {
throw new Error('models array not found in response');
}
return `API returns ${data.accounts.length} accounts and ${data.models.length} models`;
}
},
{
name: 'Dashboard has stats grid elements',
async run() {
const res = await request('/views/dashboard.html');
const html = res.data;
const requiredElements = [
'totalAccounts', // Total accounts stat
'stats.total', // Total stat binding
'stats.active', // Active stat binding
'stats.limited', // Limited stat binding
'quotaChart' // Chart canvas
];
const missing = requiredElements.filter(el => !html.includes(el));
if (missing.length > 0) {
throw new Error(`Missing elements: ${missing.join(', ')}`);
}
return 'All required dashboard elements present';
}
},
{
name: 'Dashboard has filter controls',
async run() {
const res = await request('/views/dashboard.html');
const html = res.data;
const filterElements = [
'filters.account', // Account filter
'filters.family', // Model family filter
'filters.search', // Search input
'computeQuotaRows' // Filter action
];
const missing = filterElements.filter(el => !html.includes(el));
if (missing.length > 0) {
throw new Error(`Missing filter elements: ${missing.join(', ')}`);
}
return 'All filter controls present';
}
},
{
name: 'Dashboard table has required columns',
async run() {
const res = await request('/views/dashboard.html');
const html = res.data;
const columns = [
'modelIdentity', // Model name column
'globalQuota', // Quota column
'nextReset', // Reset time column
'distribution' // Account distribution column
];
const missing = columns.filter(col => !html.includes(col));
if (missing.length > 0) {
throw new Error(`Missing table columns: ${missing.join(', ')}`);
}
return 'All table columns present';
}
}
];
// Run tests
async function runTests() {
console.log('🧪 Dashboard Frontend Tests\n');
console.log('='.repeat(50));
let passed = 0;
let failed = 0;
for (const test of tests) {
try {
const result = await test.run();
console.log(`${test.name}`);
console.log(` ${result}\n`);
passed++;
} catch (error) {
console.log(`${test.name}`);
console.log(` Error: ${error.message}\n`);
failed++;
}
}
console.log('='.repeat(50));
console.log(`Results: ${passed} passed, ${failed} failed`);
process.exit(failed > 0 ? 1 : 0);
}
runTests().catch(err => {
console.error('Test runner failed:', err);
process.exit(1);
});