2020-05-18 17:17:36 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-05-22 13:20:31 +02:00
|
|
|
namespace Shaarli\Front\Controller\Visitor;
|
2020-05-18 17:17:36 +02:00
|
|
|
|
|
|
|
use Shaarli\Feed\FeedBuilder;
|
2020-09-29 14:41:40 +02:00
|
|
|
use Shaarli\TestCase;
|
2020-05-18 17:17:36 +02:00
|
|
|
use Slim\Http\Request;
|
|
|
|
use Slim\Http\Response;
|
|
|
|
|
|
|
|
class FeedControllerTest extends TestCase
|
|
|
|
{
|
2020-05-20 12:43:40 +02:00
|
|
|
use FrontControllerMockHelper;
|
2020-05-18 17:17:36 +02:00
|
|
|
|
|
|
|
/** @var FeedController */
|
|
|
|
protected $controller;
|
|
|
|
|
|
|
|
public function setUp(): void
|
|
|
|
{
|
2020-05-20 12:43:40 +02:00
|
|
|
$this->createContainer();
|
|
|
|
|
|
|
|
$this->container->feedBuilder = $this->createMock(FeedBuilder::class);
|
|
|
|
|
2020-05-18 17:17:36 +02:00
|
|
|
$this->controller = new FeedController($this->container);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Feed Controller - RSS default behaviour
|
|
|
|
*/
|
|
|
|
public function testDefaultRssController(): void
|
|
|
|
{
|
|
|
|
$request = $this->createMock(Request::class);
|
|
|
|
$response = new Response();
|
|
|
|
|
|
|
|
$this->container->feedBuilder->expects(static::once())->method('setLocale');
|
|
|
|
$this->container->feedBuilder->expects(static::once())->method('setHideDates')->with(false);
|
|
|
|
$this->container->feedBuilder->expects(static::once())->method('setUsePermalinks')->with(true);
|
|
|
|
|
|
|
|
// Save RainTPL assigned variables
|
|
|
|
$assignedVariables = [];
|
|
|
|
$this->assignTemplateVars($assignedVariables);
|
|
|
|
|
|
|
|
$this->container->feedBuilder->method('buildData')->willReturn(['content' => 'data']);
|
|
|
|
|
|
|
|
// Make sure that PluginManager hook is triggered
|
|
|
|
$this->container->pluginManager
|
2020-09-29 14:41:40 +02:00
|
|
|
->expects(static::atLeastOnce())
|
2020-05-18 17:17:36 +02:00
|
|
|
->method('executeHooks')
|
2020-09-29 14:41:40 +02:00
|
|
|
->withConsecutive(['render_feed'])
|
2020-05-18 17:17:36 +02:00
|
|
|
->willReturnCallback(function (string $hook, array $data, array $param): void {
|
2020-09-29 14:41:40 +02:00
|
|
|
if ('render_feed' === $hook) {
|
|
|
|
static::assertSame('data', $data['content']);
|
2020-05-18 17:17:36 +02:00
|
|
|
|
2020-09-29 14:41:40 +02:00
|
|
|
static::assertArrayHasKey('loggedin', $param);
|
|
|
|
static::assertSame('feed.rss', $param['target']);
|
|
|
|
}
|
2020-05-18 17:17:36 +02:00
|
|
|
})
|
|
|
|
;
|
|
|
|
|
|
|
|
$result = $this->controller->rss($request, $response);
|
|
|
|
|
|
|
|
static::assertSame(200, $result->getStatusCode());
|
|
|
|
static::assertStringContainsString('application/rss', $result->getHeader('Content-Type')[0]);
|
|
|
|
static::assertSame('feed.rss', (string) $result->getBody());
|
|
|
|
static::assertSame('data', $assignedVariables['content']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Feed Controller - ATOM default behaviour
|
|
|
|
*/
|
|
|
|
public function testDefaultAtomController(): void
|
|
|
|
{
|
|
|
|
$request = $this->createMock(Request::class);
|
|
|
|
$response = new Response();
|
|
|
|
|
|
|
|
$this->container->feedBuilder->expects(static::once())->method('setLocale');
|
|
|
|
$this->container->feedBuilder->expects(static::once())->method('setHideDates')->with(false);
|
|
|
|
$this->container->feedBuilder->expects(static::once())->method('setUsePermalinks')->with(true);
|
|
|
|
|
|
|
|
// Save RainTPL assigned variables
|
|
|
|
$assignedVariables = [];
|
|
|
|
$this->assignTemplateVars($assignedVariables);
|
|
|
|
|
|
|
|
$this->container->feedBuilder->method('buildData')->willReturn(['content' => 'data']);
|
|
|
|
|
|
|
|
// Make sure that PluginManager hook is triggered
|
|
|
|
$this->container->pluginManager
|
2020-09-29 14:41:40 +02:00
|
|
|
->expects(static::atLeastOnce())
|
2020-05-18 17:17:36 +02:00
|
|
|
->method('executeHooks')
|
2020-09-29 14:41:40 +02:00
|
|
|
->withConsecutive(['render_feed'])
|
2020-05-18 17:17:36 +02:00
|
|
|
->willReturnCallback(function (string $hook, array $data, array $param): void {
|
2020-09-29 14:41:40 +02:00
|
|
|
if ('render_feed' === $hook) {
|
|
|
|
static::assertSame('data', $data['content']);
|
2020-05-18 17:17:36 +02:00
|
|
|
|
2020-09-29 14:41:40 +02:00
|
|
|
static::assertArrayHasKey('loggedin', $param);
|
|
|
|
static::assertSame('feed.atom', $param['target']);
|
|
|
|
}
|
2020-05-18 17:17:36 +02:00
|
|
|
})
|
|
|
|
;
|
|
|
|
|
|
|
|
$result = $this->controller->atom($request, $response);
|
|
|
|
|
|
|
|
static::assertSame(200, $result->getStatusCode());
|
|
|
|
static::assertStringContainsString('application/atom', $result->getHeader('Content-Type')[0]);
|
|
|
|
static::assertSame('feed.atom', (string) $result->getBody());
|
|
|
|
static::assertSame('data', $assignedVariables['content']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Feed Controller - ATOM with parameters
|
|
|
|
*/
|
|
|
|
public function testAtomControllerWithParameters(): void
|
|
|
|
{
|
|
|
|
$request = $this->createMock(Request::class);
|
|
|
|
$request->method('getParams')->willReturn(['parameter' => 'value']);
|
|
|
|
$response = new Response();
|
|
|
|
|
|
|
|
// Save RainTPL assigned variables
|
|
|
|
$assignedVariables = [];
|
|
|
|
$this->assignTemplateVars($assignedVariables);
|
|
|
|
|
|
|
|
$this->container->feedBuilder
|
|
|
|
->method('buildData')
|
|
|
|
->with('atom', ['parameter' => 'value'])
|
|
|
|
->willReturn(['content' => 'data'])
|
|
|
|
;
|
|
|
|
|
|
|
|
// Make sure that PluginManager hook is triggered
|
|
|
|
$this->container->pluginManager
|
2020-09-29 14:41:40 +02:00
|
|
|
->expects(static::atLeastOnce())
|
2020-05-18 17:17:36 +02:00
|
|
|
->method('executeHooks')
|
2020-09-29 14:41:40 +02:00
|
|
|
->withConsecutive(['render_feed'])
|
2020-05-18 17:17:36 +02:00
|
|
|
->willReturnCallback(function (string $hook, array $data, array $param): void {
|
2020-09-29 14:41:40 +02:00
|
|
|
if ('render_feed' === $hook) {
|
|
|
|
static::assertSame('data', $data['content']);
|
2020-05-18 17:17:36 +02:00
|
|
|
|
2020-09-29 14:41:40 +02:00
|
|
|
static::assertArrayHasKey('loggedin', $param);
|
|
|
|
static::assertSame('feed.atom', $param['target']);
|
|
|
|
}
|
2020-05-18 17:17:36 +02:00
|
|
|
})
|
|
|
|
;
|
|
|
|
|
|
|
|
$result = $this->controller->atom($request, $response);
|
|
|
|
|
|
|
|
static::assertSame(200, $result->getStatusCode());
|
|
|
|
static::assertStringContainsString('application/atom', $result->getHeader('Content-Type')[0]);
|
|
|
|
static::assertSame('feed.atom', (string) $result->getBody());
|
|
|
|
static::assertSame('data', $assignedVariables['content']);
|
|
|
|
}
|
|
|
|
}
|