86 lines
2.9 KiB
PHP
86 lines
2.9 KiB
PHP
<?php
|
|
namespace Szurubooru\Tests\Services;
|
|
|
|
final class FavoritesServiceTest extends \Szurubooru\Tests\AbstractTestCase
|
|
{
|
|
private $favoritesDaoMock;
|
|
private $userDaoMock;
|
|
private $transactionManagerMock;
|
|
private $timeServiceMock;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->favoritesDaoMock = $this->mock(\Szurubooru\Dao\FavoritesDao::class);
|
|
$this->userDaoMock = $this->mock(\Szurubooru\Dao\UserDao::class);
|
|
$this->transactionManagerMock = $this->mockTransactionManager();
|
|
$this->timeServiceMock = $this->mock(\Szurubooru\Services\TimeService::class);
|
|
}
|
|
|
|
public function testAddingExisting()
|
|
{
|
|
$user = new \Szurubooru\Entities\User();
|
|
$post = new \Szurubooru\Entities\Post();
|
|
$fav = new \Szurubooru\Entities\Favorite(3);
|
|
$this->favoritesDaoMock->expects($this->once())->method('findByUserAndPost')->with($user, $post)->willReturn($fav);
|
|
$this->favoritesDaoMock->expects($this->never())->method('save');
|
|
|
|
$favoritesService = $this->getFavoritesService();
|
|
$favoritesService->addFavorite($user, $post);
|
|
}
|
|
|
|
public function testAdding()
|
|
{
|
|
$user = new \Szurubooru\Entities\User(1);
|
|
$post = new \Szurubooru\Entities\Post(2);
|
|
$fav = new \Szurubooru\Entities\Favorite();
|
|
$fav->setUserId($user->getId());
|
|
$fav->setPostId($post->getId());
|
|
$this->favoritesDaoMock->expects($this->once())->method('findByUserAndPost')->with($user, $post)->willReturn(null);
|
|
$this->favoritesDaoMock->expects($this->once())->method('save')->with($this->callback(
|
|
function($subject) use ($fav)
|
|
{
|
|
$this->assertEntitiesEqual($fav, $subject);
|
|
return true;
|
|
}));
|
|
|
|
$favoritesService = $this->getFavoritesService();
|
|
$favoritesService->addFavorite($user, $post);
|
|
}
|
|
|
|
public function testDeleting()
|
|
{
|
|
$user = new \Szurubooru\Entities\User();
|
|
$post = new \Szurubooru\Entities\Post();
|
|
$fav = new \Szurubooru\Entities\Favorite(3);
|
|
$this->favoritesDaoMock->expects($this->once())->method('findByUserAndPost')->with($user, $post)->willReturn($fav);
|
|
$this->favoritesDaoMock->expects($this->once())->method('deleteById')->with($fav->getId());
|
|
|
|
$favoritesService = $this->getFavoritesService();
|
|
$favoritesService->deleteFavorite($user, $post);
|
|
}
|
|
|
|
public function testGettingByPost()
|
|
{
|
|
$post = new \Szurubooru\Entities\Post();
|
|
$fav1 = new \Szurubooru\Entities\Favorite();
|
|
$fav2 = new \Szurubooru\Entities\Favorite();
|
|
$fav1->setUser(new \Szurubooru\Entities\User(1));
|
|
$fav2->setUser(new \Szurubooru\Entities\User(2));
|
|
|
|
$this->favoritesDaoMock->expects($this->once())->method('findByPost')->with($post)->willReturn([$fav1, $fav2]);
|
|
$this->userDaoMock->expects($this->once())->method('findByIds')->with([1, 2]);
|
|
|
|
$favoritesService = $this->getFavoritesService();
|
|
$favoritesService->getFavoriteUsers($post);
|
|
}
|
|
|
|
private function getFavoritesService()
|
|
{
|
|
return new \Szurubooru\Services\FavoritesService(
|
|
$this->favoritesDaoMock,
|
|
$this->userDaoMock,
|
|
$this->transactionManagerMock,
|
|
$this->timeServiceMock);
|
|
}
|
|
}
|