54d1d6190e
Deploy / deploy (push) Successful in 1m27s
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017XMSokiTD2Qc5vPP2YQu3Q
159 lines
7.9 KiB
TypeScript
159 lines
7.9 KiB
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import { resolveOrdo } from '../../src/hours';
|
|
|
|
// Clean per-annum dates, verified against Divinum Officium (Monastic
|
|
// Tridentinum 1617) to have no sanctoral override — see
|
|
// data/psalter-distribution.yml and data/hours/*-antiphons.yml for how
|
|
// each was chosen.
|
|
const SUNDAY = '2026-08-09';
|
|
const MONDAY = '2026-08-31';
|
|
const TUESDAY = '2026-10-13';
|
|
|
|
const LITTLE_HOURS = ['terce', 'sext', 'none'] as const;
|
|
const PSALMS_BY_HOUR: Record<(typeof LITTLE_HOURS)[number], [number, number, number]> = {
|
|
terce: [119, 120, 121],
|
|
sext: [122, 123, 124],
|
|
none: [125, 126, 127],
|
|
};
|
|
|
|
describe.each(LITTLE_HOURS)('resolveOrdo(%s, ...)', (hourId) => {
|
|
it('is implemented', () => {
|
|
const ordo = resolveOrdo(hourId, TUESDAY);
|
|
expect(ordo.notImplemented).toBeUndefined();
|
|
expect(ordo.hourId).toBe(hourId);
|
|
});
|
|
|
|
it('resolves three psalms from the gradual set on a plain weekday, framed by one antiphon', () => {
|
|
const ordo = resolveOrdo(hourId, TUESDAY);
|
|
const psalmParts = ordo.parts.filter((p) => p.kind === 'psalm');
|
|
expect(psalmParts.map((p) => (p.kind === 'psalm' ? p.psalmNumber : undefined))).toEqual(
|
|
PSALMS_BY_HOUR[hourId],
|
|
);
|
|
expect(psalmParts[0]?.kind === 'psalm' ? psalmParts[0].antiphon?.status.en : undefined).toBe('verified');
|
|
// No closing repeat of the antiphon — confirmed against the real engine.
|
|
expect(psalmParts[1]?.kind === 'psalm' ? psalmParts[1].antiphon : undefined).toBeUndefined();
|
|
expect(psalmParts[2]?.kind === 'psalm' ? psalmParts[2].antiphon : undefined).toBeUndefined();
|
|
expect(ordo.parts.some((p) => p.kind === 'antiphon')).toBe(false);
|
|
});
|
|
|
|
it('slices Psalm 118 by section on Sunday and Monday instead of the gradual set', () => {
|
|
const sunday = resolveOrdo(hourId, SUNDAY);
|
|
const sundayPsalms = sunday.parts.filter((p) => p.kind === 'psalm');
|
|
expect(sundayPsalms.every((p) => (p.kind === 'psalm' ? p.psalmNumber === 118 : false))).toBe(true);
|
|
|
|
const monday = resolveOrdo(hourId, MONDAY);
|
|
const mondayPsalms = monday.parts.filter((p) => p.kind === 'psalm');
|
|
expect(mondayPsalms.every((p) => (p.kind === 'psalm' ? p.psalmNumber === 118 : false))).toBe(true);
|
|
|
|
// Different sections, not a repeat of Sunday's.
|
|
const sundayVerseNs = sundayPsalms[0]?.kind === 'psalm' ? sundayPsalms[0].verses.map((v) => v.n) : [];
|
|
const mondayVerseNs = mondayPsalms[0]?.kind === 'psalm' ? mondayPsalms[0].verses.map((v) => v.n) : [];
|
|
expect(sundayVerseNs).not.toEqual(mondayVerseNs);
|
|
});
|
|
|
|
it('resolves the hymn as fully self-contained, verified text (no seasonal doxology append)', () => {
|
|
const ordo = resolveOrdo(hourId, TUESDAY);
|
|
const hymn = ordo.parts.find((p) => p.kind === 'hymn');
|
|
expect(hymn && hymn.kind === 'hymn' ? hymn.text.status.en : undefined).toBe('verified');
|
|
expect(hymn && hymn.kind === 'hymn' ? hymn.text.text.la : undefined).toContain('Amen.');
|
|
});
|
|
|
|
it('resolves the per-annum capitulum with its citation', () => {
|
|
const ordo = resolveOrdo(hourId, TUESDAY);
|
|
const chapter = ordo.parts.find((p) => p.kind === 'chapter');
|
|
expect(chapter && chapter.kind === 'chapter' ? chapter.text.status.en : undefined).toBe('verified');
|
|
expect(chapter && chapter.kind === 'chapter' ? chapter.text.citation?.en : undefined).toBeDefined();
|
|
});
|
|
|
|
it("resolves the day's own collect as the closing prayer", () => {
|
|
const ordo = resolveOrdo(hourId, SUNDAY); // post-pentecost-11 — real, verified collect
|
|
const prayer = ordo.parts.find((p) => p.kind === 'prayer');
|
|
expect(prayer && prayer.kind === 'prayer' ? prayer.text.status.en : undefined).toBe('verified');
|
|
expect(prayer && prayer.kind === 'prayer' ? prayer.text.text.en : undefined).toContain('Let us pray.');
|
|
});
|
|
|
|
it('resolves the shared Kyrie/Pater Noster after the chapter on every day, identical across all three hours', () => {
|
|
const sunday = resolveOrdo(hourId, SUNDAY);
|
|
const tuesday = resolveOrdo(hourId, TUESDAY);
|
|
for (const ordo of [sunday, tuesday]) {
|
|
const kyriePater = ordo.parts.find((p) => p.kind === 'preces' && p.label === undefined);
|
|
expect(kyriePater && kyriePater.kind === 'preces' ? kyriePater.text.status.en : undefined).toBe('verified');
|
|
expect(kyriePater && kyriePater.kind === 'preces' ? kyriePater.text.text.en : undefined).toContain(
|
|
'Lord, have mercy.',
|
|
);
|
|
expect(kyriePater && kyriePater.kind === 'preces' ? kyriePater.text.text.en : undefined).toContain(
|
|
'Our Father',
|
|
);
|
|
}
|
|
});
|
|
|
|
it('resolves the further Preces versicles only on a bare ferial day, not on Sunday or a sanctoral winner', () => {
|
|
// Plain ferial (post-Pentecost 15's own week, no sanctoral winner) —
|
|
// see prime.test.ts's own use of this date for the same reason.
|
|
const feria = resolveOrdo(hourId, '2026-09-07');
|
|
const preces = feria.parts.find((p) => p.kind === 'preces' && p.label === 'Preces');
|
|
expect(preces && preces.kind === 'preces' ? preces.text.status.en : undefined).toBe('verified');
|
|
expect(preces && preces.kind === 'preces' ? preces.text.text.en : undefined).toContain(
|
|
'O Lord, God of hosts, convert us.',
|
|
);
|
|
|
|
const sunday = resolveOrdo(hourId, SUNDAY);
|
|
expect(sunday.parts.some((p) => p.kind === 'preces' && p.label === 'Preces')).toBe(false);
|
|
|
|
// TUESDAY is St. Edward the Confessor's day (semiduplex sanctoral
|
|
// winner) — a sanctoral winner also drops the ferial-only Preces, not
|
|
// just Sunday.
|
|
const tuesday = resolveOrdo(hourId, TUESDAY);
|
|
expect(tuesday.parts.some((p) => p.kind === 'preces' && p.label === 'Preces')).toBe(false);
|
|
});
|
|
|
|
it('ends with the shared Little Hour conclusion, identical across all three hours', () => {
|
|
const ordo = resolveOrdo(hourId, TUESDAY);
|
|
const conclusion = ordo.parts.find((p) => p.kind === 'preces' && p.label === 'Conclusion');
|
|
expect(conclusion && conclusion.kind === 'preces' ? conclusion.text.text.en : undefined).toContain(
|
|
'Let us bless the Lord.',
|
|
);
|
|
});
|
|
|
|
// 2026-08-10: St. Lawrence's own day (Duplex II. classis). Live-verified
|
|
// each hour has its own real proper antiphon and chapter (2026-08),
|
|
// previously falling back all the way to the plain weekday default with
|
|
// no override mechanism at all.
|
|
const LAWRENCE_ANTIPHON_INCIPIT: Record<(typeof LITTLE_HOURS)[number], string> = {
|
|
terce: 'Lauréntius',
|
|
sext: 'Adhǽsit',
|
|
none: 'Beátus Lauréntius',
|
|
};
|
|
const LAWRENCE_CHAPTER_CITATION: Record<(typeof LITTLE_HOURS)[number], string> = {
|
|
terce: '2 Cor 9:6',
|
|
sext: '2 Cor 9:7',
|
|
none: '2 Cor 9:8-9',
|
|
};
|
|
|
|
it("resolves St. Lawrence's own proper antiphon and chapter on his own feast day", () => {
|
|
const ordo = resolveOrdo(hourId, '2026-08-10');
|
|
const antiphon = ordo.parts.find((p) => p.kind === 'psalm')?.antiphon;
|
|
expect(antiphon?.text.la).toContain(LAWRENCE_ANTIPHON_INCIPIT[hourId]);
|
|
const chapter = ordo.parts.find((p) => p.kind === 'chapter');
|
|
expect(chapter && chapter.kind === 'chapter' ? chapter.text.citation?.la : undefined).toBe(
|
|
LAWRENCE_CHAPTER_CITATION[hourId],
|
|
);
|
|
});
|
|
|
|
it("resolves the same proper antiphon and chapter on day 3 of St. Lawrence's own octave, not the plain weekday default -- the concrete bug this override mechanism (resolveOfficeWinner) was built to fix", () => {
|
|
const ordo = resolveOrdo(hourId, '2026-08-12');
|
|
const antiphon = ordo.parts.find((p) => p.kind === 'psalm')?.antiphon;
|
|
expect(antiphon?.text.la).toContain(LAWRENCE_ANTIPHON_INCIPIT[hourId]);
|
|
const chapter = ordo.parts.find((p) => p.kind === 'chapter');
|
|
expect(chapter && chapter.kind === 'chapter' ? chapter.text.citation?.la : undefined).toBe(
|
|
LAWRENCE_CHAPTER_CITATION[hourId],
|
|
);
|
|
});
|
|
|
|
it('still falls back to the plain weekday default on an ordinary day with no eligible override', () => {
|
|
const ordo = resolveOrdo(hourId, TUESDAY);
|
|
const antiphon = ordo.parts.find((p) => p.kind === 'psalm')?.antiphon;
|
|
expect(antiphon?.text.la).not.toContain(LAWRENCE_ANTIPHON_INCIPIT[hourId]);
|
|
});
|
|
});
|