feat: Ajout d'un endpoint getBySlug

This commit is contained in:
ext.jeremy.guillot@maxicoffee.domains
2025-02-12 16:55:44 +01:00
parent 504c62c155
commit 30d26f530d
9 changed files with 265 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ use App\Domain\Manga\Domain\Model\Chapter;
use App\Domain\Manga\Domain\Model\Manga;
use App\Domain\Manga\Domain\Model\ValueObject\ChapterId;
use App\Domain\Manga\Domain\Model\ValueObject\ExternalId;
use App\Domain\Manga\Domain\Model\ValueObject\MangaSlug;
class InMemoryMangaRepository implements MangaRepositoryInterface
{
@@ -47,6 +48,16 @@ class InMemoryMangaRepository implements MangaRepositoryInterface
return $this->mangas[$id] ?? null;
}
public function findBySlug(MangaSlug $slug): ?Manga
{
foreach ($this->mangas as $manga) {
if ($manga->getSlug()->getValue() === $slug->getValue()) {
return $manga;
}
}
return null;
}
public function save(Manga $manga): void
{
$this->mangas[$manga->getId()->getValue()] = $manga;

View File

@@ -0,0 +1,74 @@
<?php
namespace App\Tests\Domain\Manga\Application\QueryHandler;
use App\Domain\Manga\Application\Query\GetMangaBySlug;
use App\Domain\Manga\Application\QueryHandler\GetMangaBySlugHandler;
use App\Domain\Manga\Domain\Exception\MangaNotFoundException;
use App\Domain\Manga\Domain\Model\Manga;
use App\Domain\Manga\Domain\Model\ValueObject\MangaId;
use App\Domain\Manga\Domain\Model\ValueObject\MangaSlug;
use App\Domain\Manga\Domain\Model\ValueObject\MangaTitle;
use App\Tests\Domain\Manga\Adapter\InMemoryMangaRepository;
use PHPUnit\Framework\TestCase;
class GetMangaBySlugHandlerTest extends TestCase
{
private InMemoryMangaRepository $repository;
private GetMangaBySlugHandler $handler;
protected function setUp(): void
{
$this->repository = new InMemoryMangaRepository();
$this->handler = new GetMangaBySlugHandler($this->repository);
}
public function testHandleReturnsCorrectMangaResponse(): void
{
// Arrange
$manga = new Manga(
new MangaId('1'),
new MangaTitle('One Piece'),
new MangaSlug('one-piece'),
'Description',
'Eiichiro Oda',
1997,
['Action', 'Adventure'],
'ongoing',
null,
'https://example.com/image.jpg',
4.5
);
$this->repository->save($manga);
// Act
$response = $this->handler->handle(new GetMangaBySlug('one-piece'));
// Assert
$this->assertEquals('1', $response->id);
$this->assertEquals('One Piece', $response->title);
$this->assertEquals('one-piece', $response->slug);
$this->assertEquals('Description', $response->description);
$this->assertEquals('Eiichiro Oda', $response->author);
$this->assertEquals(1997, $response->publicationYear);
$this->assertEquals(['Action', 'Adventure'], $response->genres);
$this->assertEquals('ongoing', $response->status);
$this->assertNull($response->externalId);
$this->assertEquals('https://example.com/image.jpg', $response->imageUrl);
$this->assertEquals(4.5, $response->rating);
}
public function testHandleThrowsExceptionWhenMangaNotFound(): void
{
// Assert
$this->expectException(MangaNotFoundException::class);
// Act
$this->handler->handle(new GetMangaBySlug('non-existent-manga'));
}
protected function tearDown(): void
{
$this->repository->clear();
}
}