123 lines
3.4 KiB
PHP
123 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace App\Tests\Service;
|
|
|
|
/*
|
|
* Copyright (C) 2020 Daniel Siepmann <coding@daniel-siepmann.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA.
|
|
*/
|
|
|
|
use App\Entity\Entry;
|
|
use App\Service\ActiveEntry;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Prophecy\Argument;
|
|
use Symfony\Component\HttpFoundation\Session\SessionInterface;
|
|
|
|
|
|
/**
|
|
* @covers App\Service\ActiveEntry
|
|
*/
|
|
class ActiveEntryTest extends TestCase
|
|
{
|
|
/**
|
|
* @test
|
|
*/
|
|
public function canBeCreated()
|
|
{
|
|
$session = $this->prophesize(SessionInterface::class);
|
|
$subject = new ActiveEntry(
|
|
$session->reveal()
|
|
);
|
|
|
|
static::assertInstanceOf(ActiveEntry::class, $subject);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function returnsEmptyEntryAsDefault()
|
|
{
|
|
$session = $this->prophesize(SessionInterface::class);
|
|
$subject = new ActiveEntry(
|
|
$session->reveal()
|
|
);
|
|
|
|
$entry = $subject->get();
|
|
|
|
static::assertInstanceOf(Entry::class, $entry);
|
|
static::assertSame('', $entry->getTitle());
|
|
static::assertFalse($entry->isRunning());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function canStartANewEntry()
|
|
{
|
|
$session = $this->prophesize(SessionInterface::class);
|
|
$subject = new ActiveEntry(
|
|
$session->reveal()
|
|
);
|
|
|
|
$subject->startNew('Example title');
|
|
|
|
$session->set('runningEntry', Argument::that(function (Entry $entry) {
|
|
return $entry->getTitle() === 'Example title'
|
|
&& $entry->isRunning()
|
|
;
|
|
}))->shouldBeCalled();
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function returnsStartedEntry()
|
|
{
|
|
$session = $this->prophesize(SessionInterface::class);
|
|
$entry = $this->prophesize(Entry::class);
|
|
$subject = new ActiveEntry(
|
|
$session->reveal()
|
|
);
|
|
|
|
$session->set('runningEntry', Argument::type(Entry::class))->shouldBeCalled();
|
|
$session->get('runningEntry')->willReturn($entry->reveal())->shouldBeCalled();
|
|
|
|
$subject->startNew('Example title');
|
|
|
|
static::assertSame($entry->reveal(), $subject->get());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function stopsRunningEntry()
|
|
{
|
|
$session = $this->prophesize(SessionInterface::class);
|
|
$entry = $this->prophesize(Entry::class);
|
|
$subject = new ActiveEntry(
|
|
$session->reveal()
|
|
);
|
|
|
|
$session->set('runningEntry', Argument::type(Entry::class))->shouldBeCalled();
|
|
$session->get('runningEntry')->willReturn($entry->reveal())->shouldBeCalled();
|
|
|
|
$subject->startNew('Example title');
|
|
$subject->stopRunning();
|
|
|
|
$session->remove('runningEntry')->shouldBeCalled();
|
|
}
|
|
}
|