get(EntityManagerInterface::class); static::$RDAPService = static::$container->get(RDAPService::class); } public function testUpdateRdapServers(): void { $updateRdapServersHandler = self::$container->get(UpdateRdapServersHandler::class); $message = new UpdateRdapServers(); $updateRdapServersHandler($message); $rdapServerRepository = self::$entityManager->getRepository(RdapServer::class); $this->assertNotEmpty($rdapServerRepository->findAll()); } #[Depends('testUpdateRdapServers')] public function testRegisterDomainByTld(): void { self::$RDAPService->registerDomains(['arpa']); $rdapServerRepository = static::$entityManager->getRepository(RdapServer::class); $rdapServerList = $rdapServerRepository->findBy(['tld' => array_map( fn (string $tld) => static::$entityManager->getReference(Tld::class, $tld), ['com', 'net', 'fr', 'de', 'ch', 'ca', 'uz', 'google', 'ovh'] ), ]); foreach ($rdapServerList as $rdapServer) { try { self::$RDAPService->registerDomain('nic.'.$rdapServer->getTld()->getTld()); } catch (DomainNotFoundException|ClientException|TransportException) { } } $this->expectNotToPerformAssertions(); } #[Depends('testUpdateRdapServers')] public function testUnknownRdapServer(): void { $this->expectException(UnknownRdapServerException::class); self::$RDAPService->registerDomain('nic.arpa'); } #[Depends('testUpdateRdapServers')] public function testUnknownTld(): void { $this->expectException(TldNotSupportedException::class); self::$RDAPService->registerDomain('nic.noexist'); } #[Depends('testUpdateRdapServers')] public function testDomainNotFound() { $this->expectException(DomainNotFoundException::class); self::$RDAPService->registerDomain('dd5c3e77-c824-4792-95fc-ddde03a08881.com'); } }