scraper = new InMemoryScraperAdapter(); $this->imageDownloader = new InMemoryImageDownloader(); $this->cbzGenerator = new InMemoryCbzGenerator('/test/project/dir'); $this->jobRepository = new InMemoryJobRepository(); $this->chapterRepository = new InMemoryChapterRepository(); $this->mangaRepository = new InMemoryMangaRepository(); $this->sourceRepository = new InMemorySourceRepository(); $this->eventBus = new InMemoryEventBus(); $this->entityManager = $this->createMock(EntityManagerInterface::class); $this->entityManager->method('beginTransaction')->willReturn(null); $this->entityManager->method('commit')->willReturn(null); $this->entityManager->method('rollback')->willReturn(null); $this->chapterRepository->save(new Chapter( id: '1', mangaId: 'test-manga', chapterNumber: 2, volumeNumber: 1, cbzPath: null, )); $this->handler = new ScrapeChapterHandler( $this->scraper, $this->imageDownloader, $this->cbzGenerator, $this->jobRepository, $this->chapterRepository, $this->mangaRepository, $this->sourceRepository, $this->eventBus, $this->entityManager ); } public function testHandleSuccessfully(): void { $command = new ScrapeChapter( chapterId: '1' ); $this->handler->handle($command); $job = $this->jobRepository->findByType('scraping_job'); $this->assertCount(1, $job); $job = array_values($job)[0]; $dispatchedMessages = $this->eventBus->getDispatchedMessages(); $this->assertCount(1, $dispatchedMessages); $this->assertInstanceOf(ChapterScraped::class, $dispatchedMessages[0]); $this->assertEquals($job->id, $dispatchedMessages[0]->getJobId()); $chapter = $this->chapterRepository->getById('1'); $this->assertNotNull($chapter->cbzPath); } public function testHandleThrowsException(): void { $command = new ScrapeChapter( chapterId: '1' ); $exception = new \Exception('Scraping failed'); $this->scraper->simulateError($exception); $this->handler->handle($command); $dispatchedMessages = $this->eventBus->getDispatchedMessages(); $this->assertCount(1, $dispatchedMessages); $this->assertInstanceOf(ChapterScrapingFailed::class, $dispatchedMessages[0]); $this->assertEquals('test-manga', $dispatchedMessages[0]->getMangaId()); $this->assertEquals('2', $dispatchedMessages[0]->getChapterNumber()); $this->assertEquals('Scraping failed', $dispatchedMessages[0]->getReason()); $jobs = $this->jobRepository->findByType('scraping_job'); $job = array_values($jobs)[0]; $this->assertCount(1, $jobs); $this->assertEquals(JobStatus::FAILED, $job->status); $this->assertEquals('Scraping failed', $job->failureReason); } protected function tearDown(): void { $this->jobRepository->clear(); $this->chapterRepository->clear(); $this->mangaRepository->clear(); $this->sourceRepository->clear(); } }