|
| 1 | +import assert from 'node:assert'; |
| 2 | +import { describe, it } from 'node:test'; |
| 3 | +import { daysBetween, formatLine, getMessageAndStatus } from '../../src/service/line.ts'; |
| 4 | +import type { Line } from '../../src/service/line.ts'; |
| 5 | + |
| 6 | +describe('line', () => { |
| 7 | + describe('daysBetween', () => { |
| 8 | + it('should calculate days between dates', () => { |
| 9 | + const date1 = new Date('2024-01-01'); |
| 10 | + const date2 = new Date('2024-01-31'); |
| 11 | + assert.equal(daysBetween(date1, date2), 30); |
| 12 | + }); |
| 13 | + |
| 14 | + it('should handle negative differences', () => { |
| 15 | + const date1 = new Date('2024-01-31'); |
| 16 | + const date2 = new Date('2024-01-01'); |
| 17 | + assert.equal(daysBetween(date1, date2), -30); |
| 18 | + }); |
| 19 | + }); |
| 20 | + |
| 21 | + describe('getMessageAndStatus', () => { |
| 22 | + it('should format EOL status', () => { |
| 23 | + const eolAt = new Date(Date.now() - 30 * 24 * 60 * 60 * 1000); // 30 days ago |
| 24 | + const { stat, msg } = getMessageAndStatus('EOL', eolAt); |
| 25 | + assert(stat.includes('EOL')); |
| 26 | + assert(msg.includes('days ago')); |
| 27 | + }); |
| 28 | + |
| 29 | + it('should format LTS status', () => { |
| 30 | + const eolAt = new Date(Date.now() + 30 * 24 * 60 * 60 * 1000); // 30 days from now |
| 31 | + const { stat, msg } = getMessageAndStatus('LTS', eolAt); |
| 32 | + assert(stat.includes('LTS')); |
| 33 | + assert(msg.includes('Will go EOL in')); |
| 34 | + }); |
| 35 | + |
| 36 | + it('should format OK status', () => { |
| 37 | + const { stat, msg } = getMessageAndStatus('OK'); |
| 38 | + assert(stat.includes('OK')); |
| 39 | + assert.equal(msg, ''); |
| 40 | + }); |
| 41 | + |
| 42 | + it('should handle missing eolAt date', () => { |
| 43 | + const { msg } = getMessageAndStatus('EOL'); |
| 44 | + assert(msg.includes('unknown') && msg.includes('days ago')); |
| 45 | + }); |
| 46 | + |
| 47 | + it('should throw on unknown status', () => { |
| 48 | + assert.throws(() => getMessageAndStatus('INVALID'), /Unknown status: INVALID/); |
| 49 | + }); |
| 50 | + }); |
| 51 | + |
| 52 | + describe('formatLine', () => { |
| 53 | + const context = { longest: 20, total: 3 }; |
| 54 | + |
| 55 | + it('should format line with EOL status', () => { |
| 56 | + const line: Line = { |
| 57 | + purl: 'pkg:npm/[email protected]', |
| 58 | + status: 'EOL', |
| 59 | + info: { isEol: true, eolAt: new Date() }, |
| 60 | + }; |
| 61 | + const result = formatLine(line, 0, context); |
| 62 | + assert(result.name.includes('[')); |
| 63 | + assert(result.name.includes('EOL')); |
| 64 | + assert(result.name.includes('pkg:npm/[email protected]')); |
| 65 | + assert.equal(result.value, line); |
| 66 | + }); |
| 67 | + |
| 68 | + it('should throw when isEol is true but status is not EOL', () => { |
| 69 | + const line: Line = { |
| 70 | + purl: 'pkg:npm/[email protected]', |
| 71 | + status: 'OK', |
| 72 | + info: { isEol: true }, |
| 73 | + }; |
| 74 | + assert.throws(() => formatLine(line, 0, context), /isEol is true but status is not EOL/); |
| 75 | + }); |
| 76 | + |
| 77 | + it('should handle missing info', () => { |
| 78 | + const line: Line = { |
| 79 | + purl: 'pkg:npm/[email protected]', |
| 80 | + status: 'OK', |
| 81 | + }; |
| 82 | + const result = formatLine(line, 0, context); |
| 83 | + assert(result.name.includes('OK')); |
| 84 | + }); |
| 85 | + }); |
| 86 | +}); |
0 commit comments