persistenceManager = $this->get(PersistenceManagerInterface::class); $this->subject = $this->get(TeaRepository::class); } /** * @test */ public function findAllForNoRecordsReturnsEmptyContainer(): void { $result = $this->subject->findAll(); self::assertCount(0, $result); } /** * @test */ public function findAllWithRecordsFindsRecordsFromAllPages(): void { $this->importCSVDataSet(__DIR__ . '/Fixtures/TeaOnPage.csv'); $result = $this->subject->findAll(); self::assertCount(1, $result); } /** * @test */ public function findAllSortsByTitleInAscendingOrder(): void { $this->importCSVDataSet(__DIR__ . '/Fixtures/TwoUnsortedTeas.csv'); $result = $this->subject->findAll(); $result->rewind(); self::assertSame(2, $result->current()->getUid()); } /** * @test */ public function findByUidForInexistentRecordReturnsNull(): void { $model = $this->subject->findByUid(1); self::assertNull($model); } /** * @test */ public function findByUidForExistingRecordReturnsModel(): void { $this->importCSVDataSet(__DIR__ . '/Fixtures/TeaWithAllScalarData.csv'); $model = $this->subject->findByUid(1); self::assertInstanceOf(Tea::class, $model); } /** * @test */ public function findByUidForExistingRecordMapsAllScalarData(): void { $this->importCSVDataSet(__DIR__ . '/Fixtures/TeaWithAllScalarData.csv'); $model = $this->subject->findByUid(1); self::assertInstanceOf(Tea::class, $model); self::assertSame('Earl Grey', $model->getTitle()); self::assertSame('Fresh and hot.', $model->getDescription()); self::assertSame(2, $model->getOwnerUid()); } /** * @test */ public function fillsImageRelation(): void { $this->importCSVDataSet(__DIR__ . '/Fixtures/TeaWithImage.csv'); $model = $this->subject->findByUid(1); $image = $model->getImage(); self::assertInstanceOf(FileReference::class, $image); self::assertSame(1, $image->getUid()); } /** * @test */ public function addAndPersistAllCreatesNewRecord(): void { $title = 'Godesberger Burgtee'; $model = new Tea(); $model->setTitle($title); $this->subject->add($model); $this->persistenceManager->persistAll(); $this->assertCSVDataSet(__DIR__ . '/Fixtures/PersistedTea.csv'); } /** * @test */ public function findByOwnerUidFindsTeaWithTheGivenOwnerUid(): void { $this->importCSVDataSet(__DIR__ . '/Fixtures/TeaWithOwner.csv'); $result = $this->subject->findByOwnerUid(1); self::assertCount(1, $result); } /** * @test */ public function findByOwnerUidFindsIgnoresTeaWithNonMatchingOwnerUid(): void { $this->importCSVDataSet(__DIR__ . '/Fixtures/TeaWithOwner.csv'); $result = $this->subject->findByOwnerUid(2); self::assertCount(0, $result); } /** * @test */ public function findByOwnerUidFindsIgnoresTeaWithZeroOwnerUid(): void { $this->importCSVDataSet(__DIR__ . '/Fixtures/TeaWithoutOwner.csv'); $result = $this->subject->findByOwnerUid(1); self::assertCount(0, $result); } /** * @test */ public function findByOwnerUidSortsByTitleInAscendingOrder(): void { $this->importCSVDataSet(__DIR__ . '/Fixtures/TwoTeasWithOwner.csv'); $result = $this->subject->findByOwnerUid(1); $result->rewind(); self::assertSame('Assam', $result->current()->getTitle()); } }