feat(platform): copy customer service scope

This commit is contained in:
lingniu
2026-07-05 19:33:06 +08:00
parent 0c3c6e7b3d
commit 2e0b13dfb5
3 changed files with 120 additions and 1 deletions

View File

@@ -6673,6 +6673,75 @@ test('topbar customer time window presets support common monitoring ranges', asy
expect(window.location.hash).toBe('#/mileage?keyword=VIN-TOPBAR-PRESET&protocol=GB32960');
});
test('topbar copies customer vehicle service scope links', async () => {
vi.setSystemTime(new Date('2026-07-05T10:00:00+08:00'));
window.history.replaceState(null, '', '/#/dashboard');
const writeText = vi.spyOn(navigator.clipboard, 'writeText').mockResolvedValue(undefined);
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-SHARE-SCOPE',
plate: '粤A共享窗',
primaryProtocol: 'JT808',
protocols: ['JT808'],
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: '顶部时间窗 近7天' }));
fireEvent.change(screen.getByPlaceholderText('搜索 VIN / 车牌 / 手机号'), { target: { value: '粤A共享窗' } });
fireEvent.click(screen.getByRole('button', { name: '查询车辆' }));
expect(await screen.findByText('粤A共享窗 / VIN-SHARE-SCOPE')).toBeInTheDocument();
fireEvent.click(screen.getByRole('button', { name: '顶部复制客户服务范围' }));
const copied = String(writeText.mock.lastCall?.[0] ?? '');
expect(copied).toContain('【客户车辆服务范围】');
expect(copied).toContain('车辆粤A共享窗 / VIN-SHARE-SCOPE');
expect(copied).toContain('时间窗2026-06-29 至 2026-07-05');
expect(copied).toContain('实时地图http://localhost:3000/#/map?keyword=VIN-SHARE-SCOPE&protocol=JT808');
expect(copied).toContain('轨迹回放http://localhost:3000/#/history?keyword=VIN-SHARE-SCOPE&protocol=JT808&dateFrom=2026-06-29&dateTo=2026-07-05');
expect(copied).toContain('统计查询http://localhost:3000/#/mileage?keyword=VIN-SHARE-SCOPE&protocol=JT808&dateFrom=2026-06-29&dateTo=2026-07-05');
expect(copied).toContain('数据导出http://localhost:3000/#/history-query?keyword=VIN-SHARE-SCOPE&protocol=JT808&tab=raw&dateFrom=2026-06-29&dateTo=2026-07-05');
expect(copied).toContain('告警通知http://localhost:3000/#/alert-events?keyword=VIN-SHARE-SCOPE&protocol=JT808&dateFrom=2026-06-29&dateTo=2026-07-05');
});
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) => {