Files
wehub-resource-sync 9b395f5cc3
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

46 lines
1.8 KiB
JavaScript

import { describe, expect, it } from 'vitest';
import { formatTimestamp, workStatusLabel } from './utils.js';
function localDatePrefixFromMillis(ts) {
const d = new Date(ts);
const yyyy = d.getFullYear();
const mm = String(d.getMonth() + 1).padStart(2, '0');
const dd = String(d.getDate()).padStart(2, '0');
return `${yyyy}-${mm}-${dd}`;
}
describe('formatTimestamp', () => {
it('formats millisecond timestamp', () => {
const ts = new Date('2026-01-15T00:30:00Z').getTime();
const result = formatTimestamp(ts);
expect(result).toMatch(new RegExp(`^${localDatePrefixFromMillis(ts)}\\s`));
});
it('formats second timestamp', () => {
const millis = new Date('2026-06-01T12:00:00Z').getTime();
const ts = Math.floor(millis / 1000);
const result = formatTimestamp(ts);
expect(result).toMatch(new RegExp(`^${localDatePrefixFromMillis(millis)}\\s`));
});
it('returns empty for null/undefined/0', () => {
expect(formatTimestamp(null)).toBe('');
expect(formatTimestamp(undefined)).toBe('');
expect(formatTimestamp(0)).toBe('');
expect(formatTimestamp('')).toBe('');
});
it('passes through readable date strings', () => {
expect(formatTimestamp('2026-03-20 23:59')).toBe('2026-03-20 23:59');
});
});
describe('workStatusLabel', () => {
it('maps numeric status codes', () => {
expect(workStatusLabel(0)).toBe('未交');
expect(workStatusLabel(1)).toBe('已交');
expect(workStatusLabel(2)).toBe('已批阅');
});
it('passes through string status', () => {
expect(workStatusLabel('已交')).toBe('已交');
});
it('returns 未知 for empty/null', () => {
expect(workStatusLabel(null)).toBe('未知');
expect(workStatusLabel('')).toBe('未知');
});
});