feat(platform): add customer time window presets
This commit is contained in:
@@ -4,6 +4,7 @@ import App from '../App';
|
||||
|
||||
afterEach(() => {
|
||||
cleanup();
|
||||
vi.useRealTimers();
|
||||
window.history.replaceState(null, '', '/');
|
||||
delete window.__LINGNIU_APP_CONFIG__;
|
||||
vi.restoreAllMocks();
|
||||
@@ -6599,6 +6600,79 @@ test('topbar customer time window scopes vehicle service tasks', async () => {
|
||||
expect(window.location.hash).toBe('#/alert-events?keyword=VIN-TOPBAR-WINDOW&protocol=JT808&dateFrom=2026-07-01&dateTo=2026-07-03');
|
||||
});
|
||||
|
||||
test('topbar customer time window presets support common monitoring ranges', async () => {
|
||||
vi.setSystemTime(new Date('2026-07-05T10:00:00+08:00'));
|
||||
window.history.replaceState(null, '', '/#/dashboard');
|
||||
vi.spyOn(globalThis, 'fetch').mockImplementation(async (input) => {
|
||||
const path = String(input);
|
||||
if (path.includes('/api/vehicle-service/overview')) {
|
||||
return {
|
||||
ok: true,
|
||||
json: async () => ({
|
||||
data: {
|
||||
vin: 'VIN-TOPBAR-PRESET',
|
||||
plate: '粤A快捷窗',
|
||||
primaryProtocol: 'GB32960',
|
||||
protocols: ['GB32960'],
|
||||
coverageStatus: 'online',
|
||||
sourceCount: 1,
|
||||
onlineSourceCount: 1,
|
||||
realtimeCount: 1,
|
||||
historyCount: 8,
|
||||
rawCount: 20,
|
||||
mileageCount: 3,
|
||||
qualityIssueCount: 0
|
||||
},
|
||||
traceId: 'trace-test',
|
||||
timestamp: 1783094400000
|
||||
})
|
||||
} as Response;
|
||||
}
|
||||
if (path.includes('/api/ops/health')) {
|
||||
return {
|
||||
ok: true,
|
||||
json: async () => ({
|
||||
data: { linkHealth: [], kafkaLag: 0, redisOnlineKeys: 0, tdengineWritable: true, mysqlWritable: true, runtime: { requestTimeoutMs: 5000 } },
|
||||
traceId: 'trace-test',
|
||||
timestamp: 1783094400000
|
||||
})
|
||||
} as Response;
|
||||
}
|
||||
return {
|
||||
ok: true,
|
||||
json: async () => ({
|
||||
data: { items: [], total: 0, limit: 10, offset: 0 },
|
||||
traceId: 'trace-test',
|
||||
timestamp: 1783094400000
|
||||
})
|
||||
} as Response;
|
||||
});
|
||||
|
||||
render(<App />);
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: '顶部时间窗 今天' }));
|
||||
expect(screen.getByLabelText('顶部时间窗开始')).toHaveValue('2026-07-05');
|
||||
expect(screen.getByLabelText('顶部时间窗结束')).toHaveValue('2026-07-05');
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: '顶部时间窗 近7天' }));
|
||||
expect(screen.getByLabelText('顶部时间窗开始')).toHaveValue('2026-06-29');
|
||||
expect(screen.getByLabelText('顶部时间窗结束')).toHaveValue('2026-07-05');
|
||||
|
||||
fireEvent.change(screen.getByPlaceholderText('搜索 VIN / 车牌 / 手机号'), { target: { value: '粤A快捷窗' } });
|
||||
fireEvent.click(screen.getByRole('button', { name: '查询车辆' }));
|
||||
expect(await screen.findByText('粤A快捷窗 / VIN-TOPBAR-PRESET')).toBeInTheDocument();
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: '顶部数据导出' }));
|
||||
expect(window.location.hash).toBe('#/history-query?keyword=VIN-TOPBAR-PRESET&protocol=GB32960&tab=raw&dateFrom=2026-06-29&dateTo=2026-07-05');
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: '顶部时间窗 清空' }));
|
||||
expect(screen.getByLabelText('顶部时间窗开始')).toHaveValue('');
|
||||
expect(screen.getByLabelText('顶部时间窗结束')).toHaveValue('');
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: '顶部统计查询' }));
|
||||
expect(window.location.hash).toBe('#/mileage?keyword=VIN-TOPBAR-PRESET&protocol=GB32960');
|
||||
});
|
||||
|
||||
test('shows and clears current history filters while keeping vehicle scope', async () => {
|
||||
window.history.replaceState(null, '', '/#/history-query?keyword=VIN-HISTORY-001&protocol=JT808&dateFrom=2026-07-01+00%3A00%3A00&dateTo=2026-07-01+23%3A59%3A59&includeFields=true&fields=jt808.location.longitude%2Cjt808.location.latitude&tab=raw');
|
||||
const fetchMock = vi.spyOn(globalThis, 'fetch').mockImplementation(async (input, init) => {
|
||||
|
||||
Reference in New Issue
Block a user