diff options
| author | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-07-27 21:25:43 +0200 |
|---|---|---|
| committer | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-07-27 21:25:43 +0200 |
| commit | 45e0b7652552867f7f99ffe22c968641510d5143 (patch) | |
| tree | b9a5d9aaabfd8b0932dbd012f7053e13b0df83ab /internal/calfeed/json_test.go | |
| parent | 5ab5ff23417a80eb1b878329fd57828158bd4a31 (diff) | |
| download | lectio-45e0b7652552867f7f99ffe22c968641510d5143.tar.gz lectio-45e0b7652552867f7f99ffe22c968641510d5143.zip | |
feat(calfeed): day wire model + JSON renderer
Diffstat (limited to 'internal/calfeed/json_test.go')
| -rw-r--r-- | internal/calfeed/json_test.go | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/internal/calfeed/json_test.go b/internal/calfeed/json_test.go new file mode 100644 index 0000000..d2bc856 --- /dev/null +++ b/internal/calfeed/json_test.go @@ -0,0 +1,35 @@ +package calfeed + +import ( + "encoding/json" + "testing" +) + +func TestJSONShape(t *testing.T) { + days := []DayView{{ + Date: "2026-01-06", Season: "time-after-epiphany", Week: 1, + Weekday: "Tuesday", Colour: "white", + Observed: CelView{Slug: "ef-epiphany", Name: "The Epiphany of the Lord", Rank: "class-1", Class: 1}, + Others: []CelView{}, + Cycles: Cycles{}, + Readings: []ReadingView{{Part: "gospel", Citation: "Matt 2:1-12"}}, + }} + b, err := JSON("old", days) + if err != nil { + t.Fatal(err) + } + var out struct { + Schema string `json:"schema"` + Form string `json:"form"` + Days []DayView `json:"days"` + } + if err := json.Unmarshal(b, &out); err != nil { + t.Fatal(err) + } + if out.Schema != "lectio.calendar/1" || out.Form != "old" || len(out.Days) != 1 { + t.Fatalf("bad envelope: %s", b) + } + if out.Days[0].Observed.Name != "The Epiphany of the Lord" { + t.Fatalf("bad day: %s", b) + } +} |
