entityManager = $kernel->getContainer()->get('doctrine')->getManager(); $this->userRepository = $this->entityManager->getRepository(User::class); } /** * @todo Test double username * @todo Test double email */ public function testCreation(): void { $user = new User(); $user->setUsername('Karl Marx'); $user->setEmail('mew21@test.de'); $user->setPassword('Friedrich ist kein Engel!:)'); $this->entityManager->persist($user); $this->entityManager->flush(); $userId = $user->getId(); /* * @var UserInterface */ $this->loadedUser = $this->userRepository->find($userId); $this->assertEquals($userId, $this->loadedUser->getId()); $this->assertGreaterThan(0, $this->loadedUser->getSource()->getId()); $this->assertGreaterThan(0, $this->loadedUser->getSource()->getPersonIdentitySource()->getId()); $this->assertGreaterThan(0, $this->loadedUser->getSource()->getPersonIdentitySource()->getFullPersonNameSource()->getId()); $this->assertGreaterThan(0, $this->loadedUser->getSource()->getPersonIdentitySource()->getFullPersonNameSource()->getFirstNameSource()->getId()); $this->assertGreaterThan(0, $this->loadedUser->getSource()->getPersonIdentitySource()->getFullPersonNameSource()->getSurnameSource()->getId()); $this->deleteUser(); $this->assertNull($this->userRepository->find($userId)); $this->loadedUser = null; } private function deleteUser(): void { $this->entityManager->remove($this->loadedUser); $this->entityManager->flush(); } /** * {@inheritdoc} * * @see \Symfony\Bundle\FrameworkBundle\Test\KernelTestCase::tearDown() */ protected function tearDown(): void { parent::tearDown(); $this->entityManager->close(); $this->entityManager = null; } }