aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGravatar Anshul Gupta <ansg191@anshulg.com> 2025-03-02 19:32:33 -0800
committerGravatar GitHub <noreply@github.com> 2025-03-02 19:32:33 -0800
commit8b16dd20f6544af3eedf286e23c0d34ab525736c (patch)
treeec284e22a046c4c8e9626e3fa64a000a2747bf84 /tests
parentb183aa798af48af556496c42780d6e844172cf44 (diff)
parent00a24e2f694a319a5e6cb070dddfff2dae892378 (diff)
downloadrss-bridge-master.tar.gz
rss-bridge-master.tar.zst
rss-bridge-master.zip
Merge branch 'RSS-Bridge:master' into masterHEADmaster
Diffstat (limited to 'tests')
-rw-r--r--tests/FeedParserTest.php79
-rw-r--r--tests/UrlTest.php6
2 files changed, 85 insertions, 0 deletions
diff --git a/tests/FeedParserTest.php b/tests/FeedParserTest.php
index 45dc1234..458bdb53 100644
--- a/tests/FeedParserTest.php
+++ b/tests/FeedParserTest.php
@@ -183,4 +183,83 @@ class FeedParserTest extends TestCase
];
$this->assertEquals($expected, $feed);
}
+
+ public function testYoutubeMediaModule()
+ {
+ $xml = <<<XML
+ <?xml version="1.0" encoding="UTF-8"?>
+ <feed xmlns:yt="http://www.youtube.com/xml/schemas/2015" xmlns:media="http://search.yahoo.com/mrss/" xmlns="http://www.w3.org/2005/Atom">
+ <link rel="self" href="http://www.youtube.com/feeds/videos.xml?channel_id=UCuCkxoKLYO_EQ2GeFtbM_bw"/>
+ <id>yt:channel:uCkxoKLYO_EQ2GeFtbM_bw</id>
+ <yt:channelId>uCkxoKLYO_EQ2GeFtbM_bw</yt:channelId>
+ <title>Half as Interesting</title>
+ <link rel="alternate" href="https://www.youtube.com/channel/UCuCkxoKLYO_EQ2GeFtbM_bw"/>
+ <author>
+ <name>Half as Interesting</name>
+ <uri>https://www.youtube.com/channel/UCuCkxoKLYO_EQ2GeFtbM_bw</uri>
+ </author>
+ <published>2017-08-26T20:06:05+00:00</published>
+ <entry>
+ <id>yt:video:Upjg7F28DJw</id>
+ <yt:videoId>Upjg7F28DJw</yt:videoId>
+ <yt:channelId>UCuCkxoKLYO_EQ2GeFtbM_bw</yt:channelId>
+ <title>The Nuke-Proof US Military Base in a Mountain</title>
+ <link rel="alternate" href="https://www.youtube.com/watch?v=Upjg7F28DJw"/>
+ <author>
+ <name>Half as Interesting</name>
+ <uri>https://www.youtube.com/channel/UCuCkxoKLYO_EQ2GeFtbM_bw</uri>
+ </author>
+ <published>2025-01-24T15:44:18+00:00</published>
+ <updated>2025-01-25T06:55:19+00:00</updated>
+ <media:group>
+ <media:title>The Nuke-Proof US Military Base in a Mountain</media:title>
+ <media:content url="https://www.youtube.com/v/Upjg7F28DJw?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
+ <media:thumbnail url="https://i2.ytimg.com/vi/Upjg7F28DJw/hqdefault.jpg" width="480" height="360"/>
+ <media:description>Receive 10% off anything on bellroy.com: https://bit.ly/3HdOWu9</media:description>
+ <media:community>
+ <media:starRating count="10157" average="5.00" min="1" max="5"/>
+ <media:statistics views="228462"/>
+ </media:community>
+ </media:group>
+ </entry>
+ </feed>
+ 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);
+ }
}
diff --git a/tests/UrlTest.php b/tests/UrlTest.php
index d45f319b..72b9ac4c 100644
--- a/tests/UrlTest.php
+++ b/tests/UrlTest.php
@@ -36,6 +36,12 @@ class UrlTest extends TestCase
}
}
+ public function testIllegalPath()
+ {
+ $this->expectException(\UrlException::class);
+ Url::fromString('https://example.com//foo');
+ }
+
public function testMutation()
{
$this->assertSame('http://example.com/foo', (Url::fromString('http://example.com/'))->withPath('/foo')->__toString());