aboutsummaryrefslogtreecommitdiff
path: root/internal/export/export_test.go
diff options
context:
space:
mode:
authorLukasz Kasprzak <lukas@labunix.xyz>2026-07-28 12:52:13 +0200
committerLukasz Kasprzak <lukas@labunix.xyz>2026-07-28 12:52:13 +0200
commit44472bbe31475a3c672ae003d928d7caffb4b50a (patch)
treee74bae03c61b62479ef4f68b046e3345618933c8 /internal/export/export_test.go
parent626f2275438a37e5cd2efb5964281b9bef5ce8cc (diff)
parent7b220084cf3951c8cde0582efdfcf628afc64336 (diff)
downloadlectio-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.go25
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)
}