| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386 |
- // Copyright 2017 Frédéric Guillot. All rights reserved.
- // Use of this source code is governed by the Apache 2.0
- // license that can be found in the LICENSE file.
- package rdf // import "miniflux.app/reader/rdf"
- import (
- "bytes"
- "strings"
- "testing"
- "time"
- )
- func TestParseRDFSample(t *testing.T) {
- data := `
- <?xml version="1.0"?>
- <rdf:RDF
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns="http://purl.org/rss/1.0/"
- >
- <channel rdf:about="http://www.xml.com/xml/news.rss">
- <title>XML.com</title>
- <link>http://xml.com/pub</link>
- <description>
- XML.com features a rich mix of information and services
- for the XML community.
- </description>
- <image rdf:resource="http://xml.com/universal/images/xml_tiny.gif" />
- <items>
- <rdf:Seq>
- <rdf:li resource="http://xml.com/pub/2000/08/09/xslt/xslt.html" />
- <rdf:li resource="http://xml.com/pub/2000/08/09/rdfdb/index.html" />
- </rdf:Seq>
- </items>
- <textinput rdf:resource="http://search.xml.com" />
- </channel>
- <image rdf:about="http://xml.com/universal/images/xml_tiny.gif">
- <title>XML.com</title>
- <link>http://www.xml.com</link>
- <url>http://xml.com/universal/images/xml_tiny.gif</url>
- </image>
- <item rdf:about="http://xml.com/pub/2000/08/09/xslt/xslt.html">
- <title>Processing Inclusions with XSLT</title>
- <link>http://xml.com/pub/2000/08/09/xslt/xslt.html</link>
- <description>
- Processing document inclusions with general XML tools can be
- problematic. This article proposes a way of preserving inclusion
- information through SAX-based processing.
- </description>
- </item>
- <item rdf:about="http://xml.com/pub/2000/08/09/rdfdb/index.html">
- <title>Putting RDF to Work</title>
- <link>http://xml.com/pub/2000/08/09/rdfdb/index.html</link>
- <description>
- Tool and API support for the Resource Description Framework
- is slowly coming of age. Edd Dumbill takes a look at RDFDB,
- one of the most exciting new RDF toolkits.
- </description>
- </item>
- <textinput rdf:about="http://search.xml.com">
- <title>Search XML.com</title>
- <description>Search XML.com's XML collection</description>
- <name>s</name>
- <link>http://search.xml.com</link>
- </textinput>
- </rdf:RDF>`
- feed, err := Parse(bytes.NewBufferString(data))
- if err != nil {
- t.Error(err)
- }
- if feed.Title != "XML.com" {
- t.Errorf("Incorrect title, got: %s", feed.Title)
- }
- if feed.FeedURL != "" {
- t.Errorf("Incorrect feed URL, got: %s", feed.FeedURL)
- }
- if feed.SiteURL != "http://xml.com/pub" {
- t.Errorf("Incorrect site URL, got: %s", feed.SiteURL)
- }
- if len(feed.Entries) != 2 {
- t.Errorf("Incorrect number of entries, got: %d", len(feed.Entries))
- }
- if feed.Entries[1].Hash != "8aaeee5d3ab50351422fbded41078ee88c73bf1441085b16a8c09fd90a7db321" {
- t.Errorf("Incorrect entry hash, got: %s", feed.Entries[0].Hash)
- }
- if feed.Entries[1].URL != "http://xml.com/pub/2000/08/09/rdfdb/index.html" {
- t.Errorf("Incorrect entry URL, got: %s", feed.Entries[0].URL)
- }
- if feed.Entries[1].Title != "Putting RDF to Work" {
- t.Errorf("Incorrect entry title, got: %s", feed.Entries[0].Title)
- }
- if strings.HasSuffix(feed.Entries[1].Content, "Tool and API support") {
- t.Errorf("Incorrect entry content, got: %s", feed.Entries[0].Content)
- }
- if feed.Entries[1].Date.Year() != time.Now().Year() {
- t.Errorf("Entry date should not be empty")
- }
- }
- func TestParseRDFSampleWithDublinCore(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <rdf:RDF
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
- xmlns:co="http://purl.org/rss/1.0/modules/company/"
- xmlns:ti="http://purl.org/rss/1.0/modules/textinput/"
- xmlns="http://purl.org/rss/1.0/"
- >
- <channel rdf:about="http://meerkat.oreillynet.com/?_fl=rss1.0">
- <title>Meerkat</title>
- <link>http://meerkat.oreillynet.com</link>
- <description>Meerkat: An Open Wire Service</description>
- <dc:publisher>The O'Reilly Network</dc:publisher>
- <dc:creator>Rael Dornfest (mailto:rael@oreilly.com)</dc:creator>
- <dc:rights>Copyright © 2000 O'Reilly & Associates, Inc.</dc:rights>
- <dc:date>2000-01-01T12:00+00:00</dc:date>
- <sy:updatePeriod>hourly</sy:updatePeriod>
- <sy:updateFrequency>2</sy:updateFrequency>
- <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
- <image rdf:resource="http://meerkat.oreillynet.com/icons/meerkat-powered.jpg" />
- <items>
- <rdf:Seq>
- <rdf:li resource="http://c.moreover.com/click/here.pl?r123" />
- </rdf:Seq>
- </items>
- <textinput rdf:resource="http://meerkat.oreillynet.com" />
- </channel>
- <image rdf:about="http://meerkat.oreillynet.com/icons/meerkat-powered.jpg">
- <title>Meerkat Powered!</title>
- <url>http://meerkat.oreillynet.com/icons/meerkat-powered.jpg</url>
- <link>http://meerkat.oreillynet.com</link>
- </image>
- <item rdf:about="http://c.moreover.com/click/here.pl?r123">
- <title>XML: A Disruptive Technology</title>
- <link>http://c.moreover.com/click/here.pl?r123</link>
- <dc:description>
- XML is placing increasingly heavy loads on the existing technical
- infrastructure of the Internet.
- </dc:description>
- <dc:publisher>The O'Reilly Network</dc:publisher>
- <dc:creator>Simon St.Laurent (mailto:simonstl@simonstl.com)</dc:creator>
- <dc:rights>Copyright © 2000 O'Reilly & Associates, Inc.</dc:rights>
- <dc:subject>XML</dc:subject>
- <co:name>XML.com</co:name>
- <co:market>NASDAQ</co:market>
- <co:symbol>XML</co:symbol>
- </item>
- <textinput rdf:about="http://meerkat.oreillynet.com">
- <title>Search Meerkat</title>
- <description>Search Meerkat's RSS Database...</description>
- <name>s</name>
- <link>http://meerkat.oreillynet.com/</link>
- <ti:function>search</ti:function>
- <ti:inputType>regex</ti:inputType>
- </textinput>
- </rdf:RDF>`
- feed, err := Parse(bytes.NewBufferString(data))
- if err != nil {
- t.Error(err)
- }
- if feed.Title != "Meerkat" {
- t.Errorf("Incorrect title, got: %s", feed.Title)
- }
- if feed.FeedURL != "" {
- t.Errorf("Incorrect feed URL, got: %s", feed.FeedURL)
- }
- if feed.SiteURL != "http://meerkat.oreillynet.com" {
- 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))
- }
- if feed.Entries[0].Hash != "fa4ef7c300b175ca66f92f226b5dba5caa2a9619f031101bf56e5b884b02cd97" {
- t.Errorf("Incorrect entry hash, got: %s", feed.Entries[0].Hash)
- }
- if feed.Entries[0].URL != "http://c.moreover.com/click/here.pl?r123" {
- t.Errorf("Incorrect entry URL, got: %s", feed.Entries[0].URL)
- }
- if feed.Entries[0].Title != "XML: A Disruptive Technology" {
- t.Errorf("Incorrect entry title, got: %s", feed.Entries[0].Title)
- }
- if strings.HasSuffix(feed.Entries[0].Content, "XML is placing increasingly") {
- t.Errorf("Incorrect entry content, got: %s", feed.Entries[0].Content)
- }
- if feed.Entries[0].Author != "Simon St.Laurent (mailto:simonstl@simonstl.com)" {
- t.Errorf("Incorrect entry author, got: %s", feed.Entries[0].Author)
- }
- }
- func TestParseItemWithOnlyFeedAuthor(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <rdf:RDF
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns="http://purl.org/rss/1.0/"
- >
- <channel rdf:about="http://meerkat.oreillynet.com/?_fl=rss1.0">
- <title>Meerkat</title>
- <link>http://meerkat.oreillynet.com</link>
- <dc:creator>Rael Dornfest (mailto:rael@oreilly.com)</dc:creator>
- </channel>
- <item rdf:about="http://c.moreover.com/click/here.pl?r123">
- <title>XML: A Disruptive Technology</title>
- <link>http://c.moreover.com/click/here.pl?r123</link>
- <dc:description>
- XML is placing increasingly heavy loads on the existing technical
- infrastructure of the Internet.
- </dc:description>
- </item>
- </rdf:RDF>`
- feed, err := Parse(bytes.NewBufferString(data))
- if err != nil {
- t.Error(err)
- }
- if feed.Entries[0].Author != "Rael Dornfest (mailto:rael@oreilly.com)" {
- t.Errorf("Incorrect entry author, got: %s", feed.Entries[0].Author)
- }
- }
- func TestParseItemRelativeURL(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/">
- <channel>
- <title>Example</title>
- <link>http://example.org</link>
- </channel>
- <item>
- <title>Title</title>
- <description>Test</description>
- <link>something.html</link>
- </item>
- </rdf:RDF>`
- feed, err := Parse(bytes.NewBufferString(data))
- if err != nil {
- t.Error(err)
- }
- if feed.Entries[0].URL != "http://example.org/something.html" {
- t.Errorf("Incorrect entry url, got: %s", feed.Entries[0].URL)
- }
- }
- func TestParseItemWithoutLink(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <rdf:RDF
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns="http://purl.org/rss/1.0/"
- >
- <channel rdf:about="http://meerkat.oreillynet.com/?_fl=rss1.0">
- <title>Meerkat</title>
- <link>http://meerkat.oreillynet.com</link>
- </channel>
- <item rdf:about="http://c.moreover.com/click/here.pl?r123">
- <title>Title</title>
- <description>Test</description>
- </item>
- </rdf:RDF>`
- feed, err := Parse(bytes.NewBufferString(data))
- if err != nil {
- t.Error(err)
- }
- if feed.Entries[0].Hash != "37f5223ebd58639aa62a49afbb61df960efb7dc5db5181dfb3cedd9a49ad34c6" {
- t.Errorf("Incorrect entry hash, got: %s", feed.Entries[0].Hash)
- }
- if feed.Entries[0].URL != "http://meerkat.oreillynet.com" {
- t.Errorf("Incorrect entry url, got: %s", feed.Entries[0].URL)
- }
- }
- func TestParseItemWithDublicCoreDate(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">
- <channel>
- <title>Example</title>
- <link>http://example.org</link>
- </channel>
- <item>
- <title>Title</title>
- <description>Test</description>
- <link>http://example.org/test.html</link>
- <dc:creator>Tester</dc:creator>
- <dc:date>2018-04-10T05:00:00+00:00</dc:date>
- </item>
- </rdf:RDF>`
- feed, err := Parse(bytes.NewBufferString(data))
- if err != nil {
- t.Error(err)
- }
- expectedDate := time.Date(2018, time.April, 10, 5, 0, 0, 0, time.UTC)
- if !feed.Entries[0].Date.Equal(expectedDate) {
- t.Errorf("Incorrect entry date, got: %v, want: %v", feed.Entries[0].Date, expectedDate)
- }
- }
- func TestParseItemWithoutDate(t *testing.T) {
- data := `<?xml version="1.0" encoding="utf-8"?>
- <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/">
- <channel>
- <title>Example</title>
- <link>http://example.org</link>
- </channel>
- <item>
- <title>Title</title>
- <description>Test</description>
- <link>http://example.org/test.html</link>
- </item>
- </rdf:RDF>`
- feed, err := Parse(bytes.NewBufferString(data))
- if err != nil {
- t.Error(err)
- }
- expectedDate := time.Now().In(time.Local)
- diff := expectedDate.Sub(feed.Entries[0].Date)
- if diff > time.Second {
- t.Errorf("Incorrect entry date, got: %v", diff)
- }
- }
- func TestParseInvalidXml(t *testing.T) {
- data := `garbage`
- _, err := Parse(bytes.NewBufferString(data))
- if err == nil {
- t.Error("Parse should returns an error")
- }
- }
|