|
| 1 | +<?php |
| 2 | + |
| 3 | +declare(strict_types=1); |
| 4 | + |
| 5 | +namespace Zenstruck\Foundry\Tests\Integration\InMemory; |
| 6 | + |
| 7 | +use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase; |
| 8 | +use Zenstruck\Foundry\Test\Factories; |
| 9 | +use Zenstruck\Foundry\Test\ResetDatabase; |
| 10 | +use Zenstruck\Foundry\Tests\Fixture\Entity\Address\StandardAddress; |
| 11 | +use Zenstruck\Foundry\Tests\Fixture\Factories\Entity\Address\StandardAddressFactory; |
| 12 | +use Zenstruck\Foundry\Tests\Fixture\Factories\Entity\Category\StandardCategoryFactory; |
| 13 | +use Zenstruck\Foundry\Tests\Fixture\Factories\Entity\Contact\StandardContactFactory; |
| 14 | +use Zenstruck\Foundry\Tests\Fixture\InMemory\InMemoryStandardAddressRepository; |
| 15 | +use Zenstruck\Foundry\Tests\Fixture\InMemory\InMemoryStandardContactRepository; |
| 16 | +use function Zenstruck\Foundry\InMemory\enable_in_memory; |
| 17 | + |
| 18 | +final class InMemoryTest extends KernelTestCase |
| 19 | +{ |
| 20 | + use Factories; |
| 21 | + use ResetDatabase; |
| 22 | + |
| 23 | + private InMemoryStandardAddressRepository $addressRepository; |
| 24 | + private InMemoryStandardContactRepository $contactRepository; |
| 25 | + |
| 26 | + protected function setUp(): void |
| 27 | + { |
| 28 | + enable_in_memory(); |
| 29 | + |
| 30 | + $this->addressRepository = self::getContainer()->get(InMemoryStandardAddressRepository::class); // @phpstan-ignore-line |
| 31 | + $this->contactRepository = self::getContainer()->get(InMemoryStandardContactRepository::class); // @phpstan-ignore-line |
| 32 | + } |
| 33 | + |
| 34 | + /** |
| 35 | + * @test |
| 36 | + */ |
| 37 | + public function create_one_does_not_persist_in_database(): void |
| 38 | + { |
| 39 | + $address = StandardAddressFactory::createOne(); |
| 40 | + self::assertInstanceOf(StandardAddress::class, $address); |
| 41 | + |
| 42 | + // todo! |
| 43 | +// StandardAddressFactory::assert()->count(0); |
| 44 | + |
| 45 | + // id is autogenerated from the db, then it should be null |
| 46 | + self::assertNull($address->id); |
| 47 | + } |
| 48 | + |
| 49 | + /** |
| 50 | + * @test |
| 51 | + */ |
| 52 | + public function create_many_does_not_persist_in_database(): void |
| 53 | + { |
| 54 | + $addresses = StandardAddressFactory::createMany(2); |
| 55 | + self::assertContainsOnlyInstancesOf(StandardAddress::class, $addresses); |
| 56 | + |
| 57 | + // todo! |
| 58 | +// StandardAddressFactory::assert()->count(0); |
| 59 | + |
| 60 | + foreach ($addresses as $address) { |
| 61 | + // id is autogenerated from the db, then it should be null |
| 62 | + self::assertNull($address->id); |
| 63 | + } |
| 64 | + } |
| 65 | + |
| 66 | + /** |
| 67 | + * @test |
| 68 | + */ |
| 69 | + public function object_should_be_accessible_from_in_memory_repository(): void |
| 70 | + { |
| 71 | + $address = StandardAddressFactory::createOne(); |
| 72 | + |
| 73 | + self::assertSame([$address], $this->addressRepository->all()); |
| 74 | + } |
| 75 | + |
| 76 | + /** |
| 77 | + * @test |
| 78 | + */ |
| 79 | + public function nested_objects_should_be_accessible_from_their_respective_repository(): void |
| 80 | + { |
| 81 | + $contact = StandardContactFactory::createOne(); |
| 82 | + |
| 83 | + self::assertSame([$contact], $this->contactRepository->all()); |
| 84 | + self::assertSame([$contact->getAddress()], $this->addressRepository->all()); |
| 85 | + } |
| 86 | + |
| 87 | + /** |
| 88 | + * @test |
| 89 | + */ |
| 90 | + public function can_use_generic_repository(): void |
| 91 | + { |
| 92 | + $category = StandardCategoryFactory::createOne(); |
| 93 | + |
| 94 | + // todo! |
| 95 | +// StandardCategoryFactory::assert()->count(0); |
| 96 | + |
| 97 | + self::assertNull($category->id); |
| 98 | + } |
| 99 | +} |
0 commit comments