diff options
author | 2021-07-21 08:14:25 -0700 | |
---|---|---|
committer | 2021-07-21 21:28:37 -0700 | |
commit | fc766de02d1937412c8291e9afe255a13136ddf7 (patch) | |
tree | 82101118b9f6d9bbc0de898bd9c8869a86d0c00f /reader/json/parser_test.go | |
parent | 79810413bdf22be76f95a1e0380d36935cc8d0d7 (diff) | |
download | v2-fc766de02d1937412c8291e9afe255a13136ddf7.tar.gz v2-fc766de02d1937412c8291e9afe255a13136ddf7.tar.zst v2-fc766de02d1937412c8291e9afe255a13136ddf7.zip |
use authors entry for json 1.1 feeds
Diffstat (limited to 'reader/json/parser_test.go')
-rw-r--r-- | reader/json/parser_test.go | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/reader/json/parser_test.go b/reader/json/parser_test.go index 81eaf497..0bd6e6c7 100644 --- a/reader/json/parser_test.go +++ b/reader/json/parser_test.go @@ -272,6 +272,49 @@ func TestParseAuthor(t *testing.T) { } } +func TestParseAuthors(t *testing.T) { + data := `{ + "version": "https://jsonfeed.org/version/1.1", + "user_comment": "This is a microblog feed. You can add this to your feed reader using the following URL: https://example.org/feed.json", + "title": "Brent Simmons’s Microblog", + "home_page_url": "https://example.org/", + "feed_url": "https://example.org/feed.json", + "author": { + "name": "This field is deprecated, use authors", + "url": "http://example.org/", + "avatar": "https://example.org/avatar.png" + }, + "authors": [ + { + "name": "Brent Simmons", + "url": "http://example.org/", + "avatar": "https://example.org/avatar.png" + } + ], + "items": [ + { + "id": "2347259", + "url": "https://example.org/2347259", + "content_text": "Cats are neat. \n\nhttps://example.org/cats", + "date_published": "2016-02-09T14:22:00-07:00" + } + ] + }` + + feed, err := Parse("https://example.org/feed.json", bytes.NewBufferString(data)) + if err != nil { + t.Fatal(err) + } + + if len(feed.Entries) != 1 { + t.Errorf("Incorrect number of entries, got: %d", len(feed.Entries)) + } + + if feed.Entries[0].Author != "Brent Simmons" { + t.Errorf("Incorrect entry author, got: %s", feed.Entries[0].Author) + } +} + func TestParseFeedWithoutTitle(t *testing.T) { data := `{ "version": "https://jsonfeed.org/version/1", |