Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
94 lines
2.8 KiB
TypeScript
94 lines
2.8 KiB
TypeScript
import { describe, it } from 'node:test';
|
|
import assert from 'node:assert/strict';
|
|
import {
|
|
isBoldWeightDistinctWithContext,
|
|
pickNearestBundledWeight,
|
|
resolveFontWeightBold,
|
|
} from './fontWeightAvailability';
|
|
|
|
function makeWeightContext(weightsByFamily: Record<string, Partial<Record<number, number>>>) {
|
|
return {
|
|
measureText: (font: string, text: string) => {
|
|
const match = font.match(/^(\d+)\s+\d+px\s+"?([^",]+)"?,/);
|
|
const weight = match ? Number(match[1]) : 400;
|
|
const family = match?.[2] ?? '';
|
|
const width = weightsByFamily[family]?.[weight] ?? weightsByFamily[family]?.[400] ?? 100;
|
|
return {
|
|
width: width * text.length,
|
|
actualBoundingBoxAscent: 10,
|
|
actualBoundingBoxDescent: 2,
|
|
} as TextMetrics;
|
|
},
|
|
};
|
|
}
|
|
|
|
describe('pickNearestBundledWeight', () => {
|
|
it('returns the desired weight when bundled', () => {
|
|
assert.equal(pickNearestBundledWeight([400, 500, 600], 600, 400), 600);
|
|
});
|
|
|
|
it('falls back to the nearest heavier bundled weight', () => {
|
|
assert.equal(pickNearestBundledWeight([400, 500, 600], 700, 400), 600);
|
|
});
|
|
|
|
it('returns normal weight when nothing heavier is bundled', () => {
|
|
assert.equal(pickNearestBundledWeight([400], 700, 400), 400);
|
|
});
|
|
});
|
|
|
|
describe('isBoldWeightDistinctWithContext', () => {
|
|
it('detects a real bold face via width differences', () => {
|
|
const ctx = makeWeightContext({
|
|
Menlo: { 400: 10, 700: 12 },
|
|
});
|
|
assert.equal(isBoldWeightDistinctWithContext('Menlo', 400, 700, 14, ctx), true);
|
|
});
|
|
|
|
it('detects a real bold face via ascent differences', () => {
|
|
const ctx = {
|
|
measureText: (font: string, text: string) => {
|
|
const isBold = font.startsWith('700 ');
|
|
return {
|
|
width: text.length * 10,
|
|
actualBoundingBoxAscent: isBold ? 12 : 10,
|
|
actualBoundingBoxDescent: 2,
|
|
} as TextMetrics;
|
|
},
|
|
};
|
|
assert.equal(isBoldWeightDistinctWithContext('Menlo', 400, 700, 14, ctx), true);
|
|
});
|
|
|
|
it('rejects unavailable bold weights that collapse to the normal face', () => {
|
|
const ctx = makeWeightContext({
|
|
Menlo: { 400: 10, 700: 10 },
|
|
});
|
|
assert.equal(isBoldWeightDistinctWithContext('Menlo', 400, 700, 14, ctx), false);
|
|
});
|
|
});
|
|
|
|
describe('resolveFontWeightBold', () => {
|
|
it('caps bundled JetBrains Mono bold at 600 when 700 is requested', () => {
|
|
assert.equal(
|
|
resolveFontWeightBold({
|
|
fontFamilyCss: '"JetBrains Mono", monospace',
|
|
normalWeight: 400,
|
|
desiredBoldWeight: 700,
|
|
fontSize: 14,
|
|
}),
|
|
600,
|
|
);
|
|
});
|
|
|
|
it('returns normal weight when bold is not heavier than normal', () => {
|
|
assert.equal(
|
|
resolveFontWeightBold({
|
|
fontFamilyCss: '"JetBrains Mono", monospace',
|
|
normalWeight: 600,
|
|
desiredBoldWeight: 500,
|
|
fontSize: 14,
|
|
}),
|
|
600,
|
|
);
|
|
});
|
|
});
|