| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
- // SPDX-License-Identifier: Apache-2.0
- package atom // import "miniflux.app/v2/internal/reader/atom"
- import (
- "bytes"
- "testing"
- "time"
- )
- func TestParseAtom03(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <feed version="0.3" xmlns="http://purl.org/atom/ns#">
- <title>dive into mark</title>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/"/>
- <modified>2003-12-13T18:30:02Z</modified>
- <author><name>Mark Pilgrim</name></author>
- <entry>
- <title>Atom 0.3 snapshot</title>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/2003/12/13/atom03"/>
- <id>tag:diveintomark.org,2003:3.2397</id>
- <issued>2003-12-13T08:29:29-04:00</issued>
- <modified>2003-12-13T18:30:02Z</modified>
- <summary type="text/plain">It's a test</summary>
- <content type="text/html" mode="escaped"><![CDATA[<p>HTML content</p>]]></content>
- </entry>
- </feed>`
- feed, err := Parse("http://diveintomark.org/atom.xml", bytes.NewReader([]byte(data)), "0.3")
- if err != nil {
- t.Fatal(err)
- }
- if feed.Title != "dive into mark" {
- t.Errorf("Incorrect title, got: %s", feed.Title)
- }
- if feed.FeedURL != "http://diveintomark.org/atom.xml" {
- t.Errorf("Incorrect feed URL, got: %s", feed.FeedURL)
- }
- if feed.SiteURL != "http://diveintomark.org/" {
- t.Errorf("Incorrect site URL, got: %s", feed.SiteURL)
- }
- if len(feed.Entries) != 1 {
- t.Errorf("Incorrect number of entries, got: %d", len(feed.Entries))
- }
- tz := time.FixedZone("Test Case Time", -int((4 * time.Hour).Seconds()))
- if !feed.Entries[0].Date.Equal(time.Date(2003, time.December, 13, 8, 29, 29, 0, tz)) {
- t.Errorf("Incorrect entry date, got: %v", feed.Entries[0].Date)
- }
- if feed.Entries[0].Hash != "b70d30334b808f32e66eb19fabb263525cecd18f205720b583e84f7f295cf728" {
- t.Errorf("Incorrect entry hash, got: %s", feed.Entries[0].Hash)
- }
- if feed.Entries[0].URL != "http://diveintomark.org/2003/12/13/atom03" {
- t.Errorf("Incorrect entry URL, got: %s", feed.Entries[0].URL)
- }
- if feed.Entries[0].Title != "Atom 0.3 snapshot" {
- t.Errorf("Incorrect entry title, got: %s", feed.Entries[0].Title)
- }
- if feed.Entries[0].Content != "<p>HTML content</p>" {
- t.Errorf("Incorrect entry content, got: %s", feed.Entries[0].Content)
- }
- if feed.Entries[0].Author != "Mark Pilgrim" {
- t.Errorf("Incorrect entry author, got: %s", feed.Entries[0].Author)
- }
- }
- func TestParseAtom03WithoutSiteURL(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <feed version="0.3" xmlns="http://purl.org/atom/ns#">
- <modified>2003-12-13T18:30:02Z</modified>
- <author><name>Mark Pilgrim</name></author>
- <entry>
- <title>Atom 0.3 snapshot</title>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/2003/12/13/atom03"/>
- <id>tag:diveintomark.org,2003:3.2397</id>
- </entry>
- </feed>`
- feed, err := Parse("http://diveintomark.org/atom.xml", bytes.NewReader([]byte(data)), "0.3")
- if err != nil {
- t.Fatal(err)
- }
- if feed.SiteURL != "http://diveintomark.org/atom.xml" {
- t.Errorf("Incorrect title, got: %s", feed.Title)
- }
- }
- func TestParseAtom03WithoutFeedTitle(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <feed version="0.3" xmlns="http://purl.org/atom/ns#">
- <link rel="alternate" type="text/html" href="http://diveintomark.org/"/>
- <modified>2003-12-13T18:30:02Z</modified>
- <author><name>Mark Pilgrim</name></author>
- <entry>
- <title>Atom 0.3 snapshot</title>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/2003/12/13/atom03"/>
- <id>tag:diveintomark.org,2003:3.2397</id>
- </entry>
- </feed>`
- feed, err := Parse("http://diveintomark.org/", bytes.NewReader([]byte(data)), "0.3")
- if err != nil {
- t.Fatal(err)
- }
- if feed.Title != "http://diveintomark.org/" {
- t.Errorf("Incorrect title, got: %s", feed.Title)
- }
- }
- func TestParseAtom03WithoutEntryTitleButWithLink(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <feed version="0.3" xmlns="http://purl.org/atom/ns#">
- <title>dive into mark</title>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/"/>
- <modified>2003-12-13T18:30:02Z</modified>
- <author><name>Mark Pilgrim</name></author>
- <entry>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/2003/12/13/atom03"/>
- <id>tag:diveintomark.org,2003:3.2397</id>
- </entry>
- </feed>`
- feed, err := Parse("http://diveintomark.org/", bytes.NewReader([]byte(data)), "0.3")
- 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].Title != "http://diveintomark.org/2003/12/13/atom03" {
- t.Errorf("Incorrect entry title, got: %s", feed.Entries[0].Title)
- }
- }
- func TestParseAtom03WithoutEntryTitleButWithSummary(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <feed version="0.3" xmlns="http://purl.org/atom/ns#">
- <title>dive into mark</title>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/"/>
- <modified>2003-12-13T18:30:02Z</modified>
- <author><name>Mark Pilgrim</name></author>
- <entry>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/2003/12/13/atom03"/>
- <id>tag:diveintomark.org,2003:3.2397</id>
- <summary type="text/plain">It's a test</summary>
- </entry>
- </feed>`
- feed, err := Parse("http://diveintomark.org/", bytes.NewReader([]byte(data)), "0.3")
- 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].Title != "It's a test" {
- t.Errorf("Incorrect entry title, got: %s", feed.Entries[0].Title)
- }
- }
- func TestParseAtom03WithoutEntryTitleButWithXMLContent(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <feed version="0.3" xmlns="http://purl.org/atom/ns#">
- <title>dive into mark</title>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/"/>
- <modified>2003-12-13T18:30:02Z</modified>
- <author><name>Mark Pilgrim</name></author>
- <entry>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/2003/12/13/atom03"/>
- <id>tag:diveintomark.org,2003:3.2397</id>
- <content mode="xml" type="text/html"><p>Some text.</p></content>
- </entry>
- </feed>`
- feed, err := Parse("http://diveintomark.org/", bytes.NewReader([]byte(data)), "0.3")
- 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].Title != "Some text." {
- t.Errorf("Incorrect entry title, got: %s", feed.Entries[0].Title)
- }
- }
- func TestParseAtom03WithSummaryOnly(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <feed version="0.3" xmlns="http://purl.org/atom/ns#">
- <title>dive into mark</title>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/"/>
- <modified>2003-12-13T18:30:02Z</modified>
- <author><name>Mark Pilgrim</name></author>
- <entry>
- <title>Atom 0.3 snapshot</title>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/2003/12/13/atom03"/>
- <id>tag:diveintomark.org,2003:3.2397</id>
- <issued>2003-12-13T08:29:29-04:00</issued>
- <modified>2003-12-13T18:30:02Z</modified>
- <summary type="text/plain">It's a test</summary>
- </entry>
- </feed>`
- feed, err := Parse("http://diveintomark.org/", bytes.NewReader([]byte(data)), "0.3")
- 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].Content != "It's a test" {
- t.Errorf("Incorrect entry content, got: %s", feed.Entries[0].Content)
- }
- }
- func TestParseAtom03WithXMLContent(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <feed version="0.3" xmlns="http://purl.org/atom/ns#">
- <title>dive into mark</title>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/"/>
- <modified>2003-12-13T18:30:02Z</modified>
- <author><name>Mark Pilgrim</name></author>
- <entry>
- <title>Atom 0.3 snapshot</title>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/2003/12/13/atom03"/>
- <id>tag:diveintomark.org,2003:3.2397</id>
- <issued>2003-12-13T08:29:29-04:00</issued>
- <modified>2003-12-13T18:30:02Z</modified>
- <content mode="xml" type="text/html"><p>Some text.</p></content>
- </entry>
- </feed>`
- feed, err := Parse("http://diveintomark.org/", bytes.NewReader([]byte(data)), "0.3")
- 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].Content != "<p>Some text.</p>" {
- t.Errorf("Incorrect entry content, got: %s", feed.Entries[0].Content)
- }
- }
- func TestParseAtom03WithBase64Content(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <feed version="0.3" xmlns="http://purl.org/atom/ns#">
- <title>dive into mark</title>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/"/>
- <modified>2003-12-13T18:30:02Z</modified>
- <author><name>Mark Pilgrim</name></author>
- <entry>
- <title>Atom 0.3 snapshot</title>
- <link rel="alternate" type="text/html" href="http://diveintomark.org/2003/12/13/atom03"/>
- <id>tag:diveintomark.org,2003:3.2397</id>
- <issued>2003-12-13T08:29:29-04:00</issued>
- <modified>2003-12-13T18:30:02Z</modified>
- <content mode="base64" type="text/html">PHA+U29tZSB0ZXh0LjwvcD4=</content>
- </entry>
- </feed>`
- feed, err := Parse("http://diveintomark.org/", bytes.NewReader([]byte(data)), "0.3")
- 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].Content != "<p>Some text.</p>" {
- t.Errorf("Incorrect entry content, got: %s", feed.Entries[0].Content)
- }
- }
|