diff options
| author | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-07-28 12:52:13 +0200 |
|---|---|---|
| committer | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-07-28 12:52:13 +0200 |
| commit | 44472bbe31475a3c672ae003d928d7caffb4b50a (patch) | |
| tree | e74bae03c61b62479ef4f68b046e3345618933c8 /internal/export/export_test.go | |
| parent | 626f2275438a37e5cd2efb5964281b9bef5ce8cc (diff) | |
| parent | 7b220084cf3951c8cde0582efdfcf628afc64336 (diff) | |
| download | lectio-44472bbe31475a3c672ae003d928d7caffb4b50a.tar.gz lectio-44472bbe31475a3c672ae003d928d7caffb4b50a.zip | |
Merge branch 'of-offline-migration': offline daily view, remove scrapers
Diffstat (limited to 'internal/export/export_test.go')
| -rw-r--r-- | internal/export/export_test.go | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/internal/export/export_test.go b/internal/export/export_test.go index 7f1c68d..5adf7d4 100644 --- a/internal/export/export_test.go +++ b/internal/export/export_test.go @@ -8,30 +8,37 @@ import ( "github.com/lukaszkasprzak/lectio/internal/liturgy" ) +// sampleSecs builds a reading section the offline way: the English-canonical +// lookup reference lives in Ref, the display citation stays in the reader's +// sigla dialect. render.GatherVersion resolves Ref against a real embedded +// corpus, so the exported document carries actual verse text. func sampleSecs() []liturgy.Section { return []liturgy.Section{{ - Heading: "Ewangelia (Mt 13, 1-9)", - Citation: "Mt 13, 1-9", - PartID: "ewangelia", - Paragraphs: [][]string{{"Owego dnia Jezus wyszedł z domu i usiadł nad jeziorem."}}, + Heading: "Ewangelia", + Citation: "J 20, 1. 11-18", + Ref: "John 20:1,11-18", + PartID: "ewangelia", }} } func TestMarkdownAndText(t *testing.T) { info := liturgy.DayInfo{Name: "Środa XV tygodnia", Colour: "green"} - md := Markdown("2026-07-22", info, sampleSecs(), "bt", "new", "en") - if !strings.Contains(md, "# Środa") || !strings.Contains(md, "## Gospel") || !strings.Contains(md, "Jezus wyszedł") { + // vul -> Vulgate Latin verse text, versified ("20:1 Una autem sabbati, + // Maria Magdalene ..."). + md := Markdown("2026-07-22", info, sampleSecs(), "vul", "new", "en") + if !strings.Contains(md, "# Środa") || !strings.Contains(md, "## Gospel") || + !strings.Contains(md, "20:1") || !strings.Contains(md, "Maria Magdalene") { t.Errorf("markdown:\n%s", md) } - txt := Text("2026-07-22", info, sampleSecs(), "bt", "new", "en") - if !strings.Contains(txt, "Jezus wyszedł") || !strings.Contains(txt, "Gospel") { + txt := Text("2026-07-22", info, sampleSecs(), "vul", "new", "en") + if !strings.Contains(txt, "Maria Magdalene") || !strings.Contains(txt, "Gospel") { t.Errorf("text:\n%s", txt) } } func TestReadingsPDF(t *testing.T) { info := liturgy.DayInfo{Name: "Środa XV tygodnia"} - pdf, err := ReadingsPDF("2026-07-22", info, sampleSecs(), "bt", "new", "en") + pdf, err := ReadingsPDF("2026-07-22", info, sampleSecs(), "vul", "new", "en") if err != nil { t.Fatal(err) } |
