mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-10 18:44:04 +02:00
feat: support itunes namespace in top channel feed (#3776)
Also preserves other properties.
This commit is contained in:
72
tests/FormatTest.php
Normal file
72
tests/FormatTest.php
Normal file
@@ -0,0 +1,72 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace RssBridge\Tests;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class FormatTest extends TestCase
|
||||
{
|
||||
public function testBridge()
|
||||
{
|
||||
$sut = new \MrssFormat();
|
||||
|
||||
$expected = [
|
||||
'name' => '',
|
||||
'uri' => '',
|
||||
'icon' => '',
|
||||
'donationUri' => '',
|
||||
];
|
||||
$this->assertEquals([], $sut->getFeed());
|
||||
|
||||
$sut->setFeed([
|
||||
'name' => '0',
|
||||
'uri' => '1',
|
||||
'icon' => '2',
|
||||
'donationUri' => '3',
|
||||
]);
|
||||
$expected = [
|
||||
'name' => '0',
|
||||
'uri' => '1',
|
||||
'icon' => '2',
|
||||
'donationUri' => '3',
|
||||
];
|
||||
$this->assertEquals($expected, $sut->getFeed());
|
||||
|
||||
$sut->setFeed([]);
|
||||
$expected = [
|
||||
'name' => '',
|
||||
'uri' => '',
|
||||
'icon' => '',
|
||||
'donationUri' => '',
|
||||
];
|
||||
$this->assertEquals($expected, $sut->getFeed());
|
||||
|
||||
$sut->setFeed(['foo' => 'bar', 'foo2' => 'bar2']);
|
||||
$expected = [
|
||||
'name' => '',
|
||||
'uri' => '',
|
||||
'icon' => '',
|
||||
'donationUri' => '',
|
||||
'foo' => 'bar',
|
||||
'foo2' => 'bar2',
|
||||
];
|
||||
$this->assertEquals($expected, $sut->getFeed());
|
||||
}
|
||||
}
|
||||
|
||||
class TestFormat extends \FormatAbstract
|
||||
{
|
||||
public function stringify()
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
class TestBridge extends \BridgeAbstract
|
||||
{
|
||||
public function collectData()
|
||||
{
|
||||
$this->items[] = ['title' => 'kek'];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user