<?php
namespace ShlinkioTest\Shlink\Rest\Action;

use PHPUnit_Framework_TestCase as TestCase;
use Prophecy\Prophecy\ObjectProphecy;
use Shlinkio\Shlink\Core\Service\ShortUrlService;
use Shlinkio\Shlink\Rest\Action\ListShortcodesAction;
use Zend\Diactoros\Response;
use Zend\Diactoros\ServerRequestFactory;
use Zend\I18n\Translator\Translator;
use Zend\Paginator\Adapter\ArrayAdapter;
use Zend\Paginator\Paginator;

class ListShortcodesActionTest extends TestCase
{
    /**
     * @var ListShortcodesAction
     */
    protected $action;
    /**
     * @var ObjectProphecy
     */
    protected $service;

    public function setUp()
    {
        $this->service = $this->prophesize(ShortUrlService::class);
        $this->action = new ListShortcodesAction($this->service->reveal(), Translator::factory([]));
    }

    /**
     * @test
     */
    public function properListReturnsSuccessResponse()
    {
        $page = 3;
        $this->service->listShortUrls($page)->willReturn(new Paginator(new ArrayAdapter()))
                                            ->shouldBeCalledTimes(1);

        $response = $this->action->__invoke(
            ServerRequestFactory::fromGlobals()->withQueryParams([
                'page' => $page,
            ]),
            new Response()
        );
        $this->assertEquals(200, $response->getStatusCode());
    }

    /**
     * @test
     */
    public function anExceptionsReturnsErrorResponse()
    {
        $page = 3;
        $this->service->listShortUrls($page)->willThrow(\Exception::class)
                                            ->shouldBeCalledTimes(1);

        $response = $this->action->__invoke(
            ServerRequestFactory::fromGlobals()->withQueryParams([
                'page' => $page,
            ]),
            new Response()
        );
        $this->assertEquals(500, $response->getStatusCode());
    }
}