Files
vu/tests/calendar/november-sanctoral.test.ts
T
will db9c844caf Track a transferred saint's origin date on DayWinner and Commemoration
Adds transferredFrom to both DayWinner's sanctoral variant and
Commemoration's sanctoral variant, set in calendar/index.ts's
applyIncomingTransfer whenever a transferred-in candidate actually lands
(wins outright) or ends up merely commemorated (lost a collision, or fell
below the landing day's own threshold) — previously this signal was
discarded after resolveDay used it once to decide the winner, so nothing
downstream could tell a transferred feast apart from a native one.

Also adds transferredAway to LiturgicalDay, set from a date's own native
occurrence when its candidate couldn't be kept there at all, so a UI can
note "this office moved elsewhere" without asserting a specific landing
date (which a later, unmodeled multi-hop chain — e.g. into Holy Week —
could get wrong).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_013g7AsSvMD9oazR17f3BxLz
2026-08-31 08:53:02 -04:00

111 lines
5.1 KiB
TypeScript

import { describe, expect, it } from 'vitest';
import { resolveDay } from '../../src/calendar';
import { getDayCollect } from '../../src/hours/resolve-common';
// Clean per-annum years for these dates (no Sunday collision) — see
// data/calendar/saints/*.yml for per-saint source detail.
describe('November sanctoral pull (first pass)', () => {
it('All Saints wins outright with a real proper collect, backfilled this month', () => {
const day = resolveDay('2025-11-01');
expect(day.winner).toEqual({ kind: 'sanctoral', id: 'all-saints', name: 'All Saints', nameLa: 'Omnes Sancti', rank: 'duplex-1-classis' });
expect(getDayCollect(day).status.en).toBe('verified');
});
it('St. Martin of Tours wins outright at Duplex majus with a real proper collect and antiphon, over a genuinely unwinnable stub', () => {
const day = resolveDay('2025-11-11');
expect(day.winner).toEqual({
kind: 'sanctoral',
id: 'st-martin-of-tours',
name: 'St. Martin of Tours, Bishop and Confessor',
nameLa: 'Sanctus Martinus Turonensis, Episcopus et Confessor',
rank: 'duplex-majus',
});
expect(day.commemorations).toEqual([
{ kind: 'sanctoral', id: 'st-menna', name: 'St. Menna, Martyr', nameLa: 'Sanctus Menna, Martyr', rank: 'simplex' },
]);
expect(getDayCollect(day).status.en).toBe('verified');
});
it('a monastic-calendar-specific reassignment (St. Emilian) displaces what the base Tridentine table gives to St. Martin I, Pope, who moves to a different date entirely', () => {
const emilianDay = resolveDay('2025-11-12');
expect(emilianDay.winner).toEqual({
kind: 'sanctoral',
id: 'st-emilian',
name: 'St. Emilian, Abbot',
nameLa: 'Sanctus Æmilianus, Abbas',
rank: 'duplex',
});
const martinIDay = resolveDay('2025-11-14');
expect(martinIDay.winner).toEqual({
kind: 'sanctoral',
id: 'st-martin-i',
name: 'St. Martin I, Pope and Martyr',
nameLa: 'Sanctus Martinus I, Papa et Martyr',
rank: 'semiduplex',
});
});
it('All Saints of the Benedictine Order, a monastic-calendar-only addition absent from the base Tridentine table, wins outright at Duplex II. classis', () => {
const day = resolveDay('2025-11-13');
expect(day.winner).toEqual({
kind: 'sanctoral',
id: 'all-saints-of-the-benedictine-order',
name: 'All Saints of the Order of St. Benedict',
nameLa: 'Omnes Sancti Ordinis Sancti Benedicti',
rank: 'duplex-2-classis',
});
expect(day.commemorations).toEqual([]);
});
it('St. Clement transfers forward into St. Chrysogonus\'s day whenever his own date falls on a Sunday -- a single-day transfer this app models correctly, unlike August\'s multi-day-skip case', () => {
// Per direct instruction: a Semiduplex feast (St. Clement) on an
// ordinary Sunday transfers to the next open day rather than being
// commemorated in place -- St. Felicitas (Simplex, also native to
// Nov 23) stays behind and is commemorated under the Sunday itself,
// since Simplex still gets the plain-commemoration treatment.
const clean = resolveDay('2032-11-24'); // Nov 23, 2032 is not a Sunday
expect(clean.winner).toEqual({
kind: 'sanctoral',
id: 'st-chrysogonus',
name: 'St. Chrysogonus, Martyr',
nameLa: 'Sanctus Chrysogonus, Martyr',
rank: 'simplex',
});
const onceASunday = resolveDay('2025-11-23'); // a Sunday
expect(onceASunday.winner).toEqual({ kind: 'temporal', id: 'post-pentecost-24' });
expect(onceASunday.commemorations).toEqual([
{ kind: 'sanctoral', id: 'st-felicitas', name: 'St. Felicitas, Martyr', nameLa: 'Sancta Felicitas, Martyr', rank: 'simplex' },
]);
// St. Clement transfers into Nov 24 and wins the collision against
// St. Chrysogonus (native there, Simplex).
const followingDay = resolveDay('2025-11-24');
expect(followingDay.winner).toEqual({
kind: 'sanctoral',
id: 'st-clement',
name: 'St. Clement I, Pope and Martyr',
nameLa: 'Sanctus Clemens I, Papa et Martyr',
rank: 'semiduplex',
transferredFrom: '2025-11-23',
});
expect(followingDay.commemorations).toEqual([
{ kind: 'sanctoral', id: 'st-chrysogonus', name: 'St. Chrysogonus, Martyr', nameLa: 'Sanctus Chrysogonus, Martyr', rank: 'simplex' },
]);
});
it('St. Andrew wins outright at Duplex II. classis with a real proper collect and antiphon, commemorating the Advent feria itself in years his fixed date falls within Advent', () => {
// 2026-11-30 is also the Monday within Advent I's own week that year
// (privileged-feria-minor, see calendar/types.ts) -- the Advent feria
// is commemorated back, confirmed against the live reference engine.
const day = resolveDay('2026-11-30');
expect(day.winner).toEqual({
kind: 'sanctoral',
id: 'st-andrew',
name: 'St. Andrew, Apostle',
nameLa: 'Sanctus Andreas, Apostolus',
rank: 'duplex-2-classis',
});
expect(day.commemorations).toEqual([{ kind: 'temporal', id: 'advent-1' }]);
expect(getDayCollect(day).status.en).toBe('verified');
});
});