summaryrefslogtreecommitdiffstats
path: root/3rdparty/fguillot/picofeed/tests/Syndication/Rss20WriterTest.php
blob: 2c61b8537d66565525e3d9a458f7b4cf7ef5ff18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
namespace PicoFeed\Syndication;

use PHPUnit_Framework_TestCase;


class Rss20WriterTest extends PHPUnit_Framework_TestCase
{
    public function testWriter()
    {
        $writer = new Rss20();
        $writer->title = 'My site';
        $writer->site_url = 'http://boo/';
        $writer->feed_url = 'http://boo/feed.atom';
        $writer->author = array(
            'name' => 'Me',
            'url' => 'http://me',
            'email' => 'me@here'
        );

        $writer->items[] = array(
            'title' => 'My article 1',
            'updated' => strtotime('-2 days'),
            'url' => 'http://foo/bar',
            'summary' => 'Super summary',
            'content' => '<p>content</p>'
        );

        $writer->items[] = array(
            'title' => 'My article 2',
            'updated' => strtotime('-1 day'),
            'url' => 'http://foo/bar2',
            'summary' => 'Super summary 2',
            'content' => '<p>content 2 &nbsp; &copy; 2015</p>',
            'author' => array(
                'name' => 'Me too',
            )
        );

        $writer->items[] = array(
            'title' => 'My article 3',
            'url' => 'http://foo/bar3'
        );

        $generated_output = $writer->execute();

        $expected_output = '<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <generator>PicoFeed (https://github.com/fguillot/picoFeed)</generator>
    <title>My site</title>
    <description>My site</description>
    <pubDate>'.date(DATE_RFC822).'</pubDate>
    <atom:link href="http://boo/feed.atom" rel="self" type="application/rss+xml"/>
    <link>http://boo/</link>
    <webMaster>me@here (Me)</webMaster>
    <item>
      <title>My article 1</title>
      <link>http://foo/bar</link>
      <guid isPermaLink="true">http://foo/bar</guid>
      <pubDate>'.date(DATE_RFC822, strtotime('-2 days')).'</pubDate>
      <description>Super summary</description>
      <content:encoded><![CDATA[<p>content</p>]]></content:encoded>
    </item>
    <item>
      <title>My article 2</title>
      <link>http://foo/bar2</link>
      <guid isPermaLink="true">http://foo/bar2</guid>
      <pubDate>'.date(DATE_RFC822, strtotime('-1 day')).'</pubDate>
      <description>Super summary 2</description>
      <content:encoded><![CDATA[<p>content 2 &nbsp; &copy; 2015</p>]]></content:encoded>
    </item>
    <item>
      <title>My article 3</title>
      <link>http://foo/bar3</link>
      <guid isPermaLink="true">http://foo/bar3</guid>
      <pubDate>'.date(DATE_RFC822).'</pubDate>
    </item>
  </channel>
</rss>
';

        $this->assertEquals($expected_output, $generated_output);
    }
}