mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-21 14:57:52 +00:00
34 lines
1.7 KiB
PHP
34 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class RedditBridgeTest extends TestCase
|
|
{
|
|
public function test()
|
|
{
|
|
$sut = new RedditBridge(new NullCache(), new NullLogger());
|
|
|
|
// https://old.reddit.com/search.json?q=cats dogs hen subreddit:php&sort=hot&include_over_18=on
|
|
$expected = 'https://old.reddit.com/search.json?q=cats+dogs+hen+subreddit%3Aphp&sort=hot&include_over_18=on';
|
|
$actual = RedditBridge::createUrl('cats,dogs hen', '', 'php', false, 'hot', 'single');
|
|
$this->assertSame($expected, $actual);
|
|
|
|
// https://old.reddit.com/search.json?q=author:RavenousRandy&sort=hot&include_over_18=on
|
|
$expected = 'https://old.reddit.com/search.json?q=author%3ARavenousRandy&sort=hot&include_over_18=on';
|
|
$actual = RedditBridge::createUrl('', '', 'RavenousRandy', true, 'hot', 'user');
|
|
$this->assertSame($expected, $actual);
|
|
|
|
// https://old.reddit.com/search.json?q=cats dogs hen flair:"Proxy" subreddit:php&sort=hot&include_over_18=on
|
|
$expected = 'https://old.reddit.com/search.json?q=cats+dogs+hen+flair%3A%22Proxy%22+subreddit%3Aphp&sort=hot&include_over_18=on';
|
|
$actual = RedditBridge::createUrl('cats,dogs hen', 'Proxy', 'php', false, 'hot', 'single');
|
|
$this->assertSame($expected, $actual);
|
|
|
|
// https://old.reddit.com/search.json?q=cats dogs hen flair:"Proxy Linux Server" subreddit:php&sort=hot&include_over_18=on
|
|
$expected = 'https://old.reddit.com/search.json?q=cats+dogs+hen+flair%3A%22Proxy+Linux+Server%22+subreddit%3Aphp&sort=hot&include_over_18=on';
|
|
$actual = RedditBridge::createUrl('cats,dogs hen', 'Proxy,Linux Server', 'php', false, 'hot', 'single');
|
|
$this->assertSame($expected, $actual);
|
|
}
|
|
}
|