|
/* |
|
Unit-tests |
|
Requires node v22.5+ |
|
- [ ] missing object tests |
|
*/ |
|
|
|
import test from 'node:test' |
|
import { inspect } from './pretty-layout.js' |
|
import { stripVTControlCharacters } from 'node:util' |
|
|
|
const is = { |
|
dash: { get vert() { return '|' } }, |
|
separators: { |
|
vert: c => c === is.dash.vert |
|
}, exists: i => i > -1 |
|
} |
|
|
|
test('#inspect(array)', async t => { |
|
const res = inspect([ |
|
{ index: 1, value: 'foobar'.repeat(100) }, |
|
{ index: 2, value: 'bar' }, |
|
{ index: 4, value: null }, |
|
{ index: 16, value: 3920392 }, |
|
{ index: 4992991, value: function foobar() {} }, |
|
{ index: 8, value: 1000 } |
|
], { headers: ['index', 'value'], maxrows: 5, padding: 2 }), |
|
lines = res.split('\n') |
|
.map(stripVTControlCharacters) |
|
.filter(Boolean) |
|
|
|
await t.test('returns a result', t => { |
|
t.assert.ok(res) |
|
}) |
|
|
|
await t.test('is a string', async t => { |
|
t.assert.strictEqual(typeof res, 'string') |
|
|
|
await t.test('with 8 lines', t => { |
|
t.assert.strictEqual(lines.length, 8) |
|
}) |
|
|
|
await t.test('1st line contains a header', async t => { |
|
const cols = lines[0].split(is.dash.vert) |
|
|
|
await t.test('has 2 columns', async t => { |
|
const cols = lines[0].split(is.dash.vert) |
|
|
|
t.assert.strictEqual(cols.length, 2) |
|
}) |
|
|
|
await t.test('column 1 contains column 1 header', async t => { |
|
t.assert.ok(cols[0].includes('index')) |
|
}) |
|
|
|
await t.test('column 2 contains column 2 header', async t => { |
|
t.assert.ok(cols[1].includes('value')) |
|
}) |
|
}) |
|
|
|
await t.test('2nd line contains a border', async t => { |
|
const horizontalchars = lines[1].split('-') |
|
|
|
await t.test('contains only dashes', t => { |
|
t.assert.ok(lines[1].split('').every(c => '-')) |
|
}) |
|
|
|
await t.test('is of reasonable length', t => { |
|
t.assert.ok(horizontalchars.length > 15) |
|
t.assert.ok(horizontalchars.length < 25) |
|
}) |
|
}) |
|
|
|
await t.test('3rd line contains the first row', async t => { |
|
const columns = { |
|
left: lines[2].split(is.dash.vert)[0], |
|
right: lines[2].split(is.dash.vert)[1] } |
|
|
|
t.assert.ok(columns.left.includes('1')) |
|
t.assert.ok(columns.right.includes('foobar')) |
|
|
|
await t.test('left column contains the index', t => { |
|
t.assert.ok(columns.left.includes('1')) |
|
}) |
|
|
|
await t.test('right column contains the value', t => { |
|
t.assert.ok(columns.right.includes('foobar')) |
|
}) |
|
|
|
await t.test('value is clipped when too long', t => { |
|
t.assert.ok(columns.right.endsWith('...')) |
|
t.assert.ok(columns.right.length < 35) |
|
}) |
|
}) |
|
|
|
await t.test('is vertically aligned', t => { |
|
const pipeOffsets = { |
|
['1']: lines[0].split('').findIndex(is.separators.vert), |
|
['*']: lines.map(line => line.split('') |
|
.findIndex(is.separators.vert)) |
|
.filter(is.exists) |
|
} |
|
|
|
t.assert.ok(pipeOffsets['*'].length > 3) |
|
t.assert.ok(pipeOffsets['*'].every(is.exists)) |
|
t.assert.ok(pipeOffsets['*'].every(pos => pos === pipeOffsets[1])) |
|
}) |
|
|
|
await t.test('is horizontally aligned', async t => { |
|
const offsets = { |
|
left: lines[0].split(is.dash.vert)[0].split('index')[1].length, |
|
right: lines[0].split(is.dash.vert)[1].split('value')[0].length |
|
} |
|
|
|
await t.test('each header is equally distant from center', t => { |
|
t.assert.strictEqual(offsets.left, offsets.right) |
|
}) |
|
|
|
await t.test('each row is equally distant from center', t => { |
|
const hasChar = c => !!c.trim() |
|
const offsets = lines.slice(2, 7).filter(Boolean).map(l => ({ |
|
left: l.split(is.dash.vert)[0].split('').reverse().findIndex(hasChar), |
|
right: l.split(is.dash.vert)[1]?.split('').findIndex(hasChar) |
|
})) |
|
|
|
t.assert.ok(offsets.every(o => o.left === offsets[0].left)) |
|
t.assert.ok(offsets.every(o => o.right === offsets[0].right)) |
|
}) |
|
}) |
|
|
|
await t.test('has a label displaying hidden items count', async t => { |
|
const label = lines.filter(line => line.includes('hidden')) |
|
t.assert.strictEqual(label.length, 1) |
|
|
|
await t.test('stating the correct hidden count', t => { |
|
t.assert.ok(label[0].includes('2')) |
|
}) |
|
}) |
|
}) |
|
}) |