sut = new \FeedParser(); } public function testRss1() { $xml = << hello feed http://meerkat.oreillynet.com Meerkat: An Open Wire Service XML: A Disruptive Technology http://c.moreover.com/click/here.pl?r123 desc XML; $feed = $this->sut->parseFeed($xml); $this->assertSame('hello feed', $feed['title']); $this->assertSame('http://meerkat.oreillynet.com', $feed['uri']); $this->assertSame(null, $feed['icon']); $item = $feed['items'][0]; $this->assertSame('XML: A Disruptive Technology', $item['title']); $this->assertSame('http://c.moreover.com/click/here.pl?r123', $item['uri']); $this->assertSame('desc', $item['content']); } public function testRss2() { $xml = << hello feed https://example.com/ https://example.com/2.ico hello world https://example.com/1 desc2 Tue, 26 Apr 2022 00:00:00 +0200 root XML; $feed = $this->sut->parseFeed($xml); $this->assertSame('hello feed', $feed['title']); $this->assertSame('https://example.com/', $feed['uri']); $this->assertSame('https://example.com/2.ico', $feed['icon']); $item = $feed['items'][0]; $this->assertSame('hello world', $item['title']); $this->assertSame('https://example.com/1', $item['uri']); $this->assertSame(1650924000, $item['timestamp']); $this->assertSame('root', $item['author']); $this->assertSame('desc2', $item['content']); $this->assertSame(['https://example.com/1.png'], $item['enclosures']); } public function testAtom() { $xml = << hello feed https://example.com/2.ico hello world root html 2015-11-05T14:38:49+01:00 XML; $feed = $this->sut->parseFeed($xml); $this->assertSame('hello feed', $feed['title']); $this->assertSame('https://example.com/1', $feed['uri']); $this->assertSame('https://example.com/2.ico', $feed['icon']); $item = $feed['items'][0]; $this->assertSame('hello world', $item['title']); $this->assertSame('https://example.com/1', $item['uri']); $this->assertSame(1446730729, $item['timestamp']); $this->assertSame('root', $item['author']); $this->assertSame('html', $item['content']); } public function testAppleItunesModule() { $xml = << 30:05 XML; $feed = $this->sut->parseFeed($xml); $expected = [ 'title' => '', 'uri' => '', 'icon' => '', 'items' => [ [ 'uri' => '', 'title' => '', 'content' => '', 'timestamp' => '', 'author' => '', 'itunes' => [ 'duration' => '30:05', ], 'enclosure' => [ 'url' => 'https://example.com/1.mp3', 'length' => '48123248', 'type' => 'audio/mpeg', ], 'enclosures' => [ 'https://example.com/1.mp3', ], ] ], ]; $this->assertEquals($expected, $feed); } public function testYoutubeMediaModule() { $xml = << yt:channel:uCkxoKLYO_EQ2GeFtbM_bw uCkxoKLYO_EQ2GeFtbM_bw Half as Interesting Half as Interesting https://www.youtube.com/channel/UCuCkxoKLYO_EQ2GeFtbM_bw 2017-08-26T20:06:05+00:00 yt:video:Upjg7F28DJw Upjg7F28DJw UCuCkxoKLYO_EQ2GeFtbM_bw The Nuke-Proof US Military Base in a Mountain Half as Interesting https://www.youtube.com/channel/UCuCkxoKLYO_EQ2GeFtbM_bw 2025-01-24T15:44:18+00:00 2025-01-25T06:55:19+00:00 The Nuke-Proof US Military Base in a Mountain Receive 10% off anything on bellroy.com: https://bit.ly/3HdOWu9 XML; $feed = $this->sut->parseFeed($xml); $expected = [ 'title' => 'Half as Interesting', 'uri' => 'https://www.youtube.com/channel/UCuCkxoKLYO_EQ2GeFtbM_bw', 'icon' => null, 'items' => [ [ 'uri' => 'https://www.youtube.com/watch?v=Upjg7F28DJw', 'title' => 'The Nuke-Proof US Military Base in a Mountain', 'content' => '', 'timestamp' => 1737788119, 'author' => 'Half as Interesting', 'id' => 'yt:video:Upjg7F28DJw', 'published' => '2025-01-24T15:44:18+00:00', 'updated' => '2025-01-25T06:55:19+00:00', 'link' => '', 'yt' => [ 'videoId' => 'Upjg7F28DJw', 'channelId' => 'UCuCkxoKLYO_EQ2GeFtbM_bw', ], 'media' => [ 'group' => [ 'title' => 'The Nuke-Proof US Military Base in a Mountain', 'content' => '', 'thumbnail' => '', 'description' => 'Receive 10% off anything on bellroy.com: https://bit.ly/3HdOWu9', 'community' => [ 'starRating' => '', 'statistics' => '', ], ], ], ] ], ]; $this->assertEquals($expected, $feed); } }