feat: ajout de la gestion des commandes pour la suppression des fichiers CBZ et des chapitres, avec création des gestionnaires et des ressources API correspondantes

This commit is contained in:
ext.jeremy.guillot@maxicoffee.domains
2025-06-29 18:33:33 +02:00
parent 7fe4ac0d3b
commit 37e1b202c2
42 changed files with 1413 additions and 21 deletions

View File

@@ -0,0 +1,146 @@
<?php
namespace App\Tests\Feature\Manga;
use App\Entity\Chapter;
use App\Factory\ChapterFactory;
use App\Factory\MangaFactory;
use App\Tests\Feature\AbstractApiTestCase;
use Symfony\Component\HttpFoundation\Response;
use Zenstruck\Foundry\Test\Factories;
use Zenstruck\Foundry\Test\ResetDatabase;
class DownloadVolumeTest extends AbstractApiTestCase
{
use ResetDatabase, Factories;
public function test_it_downloads_volume_cbz(): void
{
// Arrange
$manga = MangaFactory::createOne([
'title' => 'One Piece',
'slug' => 'one-piece'
]);
// Create chapters for volume 1
ChapterFactory::createMany(3, [
'manga' => $manga,
'volume' => 1,
'visible' => true,
'cbzPath' => '/app/tests/Shared/Files/test-chapter.cbz'
]);
$mangaId = $manga->getId();
// Act
static::createClient()->request('GET', "/api/mangas/{$mangaId}/volumes/1/download");
// Assert
$this->assertResponseIsSuccessful();
$this->assertResponseHeaderSame('Content-Type', 'application/x-cbz');
$contentDisposition = static::getClient()->getResponse()->headers->get('Content-Disposition');
$this->assertStringContainsString('attachment; filename=', $contentDisposition);
$this->assertStringContainsString('one-piece-volume-1.cbz', $contentDisposition);
}
public function test_it_returns_404_when_manga_not_found(): void
{
// Act
static::createClient()->request('GET', '/api/mangas/999999/volumes/1/download');
// Assert
$this->assertResponseStatusCodeSame(Response::HTTP_NOT_FOUND);
}
public function test_it_returns_404_when_volume_not_found(): void
{
// Arrange
$manga = MangaFactory::createOne([
'title' => 'One Piece',
'slug' => 'one-piece'
]);
$mangaId = $manga->getId();
// Act
static::createClient()->request('GET', "/api/mangas/{$mangaId}/volumes/999/download");
// Assert
$this->assertResponseStatusCodeSame(Response::HTTP_NOT_FOUND);
}
public function test_it_returns_404_when_no_available_chapters_in_volume(): void
{
// Arrange
$manga = MangaFactory::createOne([
'title' => 'One Piece',
'slug' => 'one-piece'
]);
// Create chapters for volume 1 but all without CBZ files
ChapterFactory::createMany(3, [
'manga' => $manga,
'volume' => 1,
'visible' => true,
'cbzPath' => null // No CBZ files
]);
$mangaId = $manga->getId();
// Act
static::createClient()->request('GET', "/api/mangas/{$mangaId}/volumes/1/download");
// Assert
$this->assertResponseStatusCodeSame(Response::HTTP_NOT_FOUND);
}
public function test_it_only_includes_visible_chapters_with_cbz(): void
{
// Arrange
$manga = MangaFactory::createOne([
'title' => 'One Piece',
'slug' => 'one-piece'
]);
// Create a mix of chapters
ChapterFactory::createOne([
'manga' => $manga,
'volume' => 1,
'number' => 1.0,
'visible' => true,
'cbzPath' => '/app/tests/Shared/Files/test-chapter.cbz'
]);
ChapterFactory::createOne([
'manga' => $manga,
'volume' => 1,
'number' => 2.0,
'visible' => false, // Soft deleted
'cbzPath' => '/app/tests/Shared/Files/test-chapter.cbz'
]);
ChapterFactory::createOne([
'manga' => $manga,
'volume' => 1,
'number' => 3.0,
'visible' => true,
'cbzPath' => null // No CBZ
]);
ChapterFactory::createOne([
'manga' => $manga,
'volume' => 1,
'number' => 4.0,
'visible' => true,
'cbzPath' => '/app/tests/Shared/Files/test-chapter.cbz'
]);
$mangaId = $manga->getId();
// Act
static::createClient()->request('GET', "/api/mangas/{$mangaId}/volumes/1/download");
// Assert - Should succeed with only 2 chapters (1 and 4)
$this->assertResponseIsSuccessful();
}
}