diff --git a/tests/Unit/Repository/DomainRepositoryTest.php b/tests/Unit/Repository/DomainRepositoryTest.php new file mode 100644 index 0000000..a27a7d7 --- /dev/null +++ b/tests/Unit/Repository/DomainRepositoryTest.php @@ -0,0 +1,124 @@ +logger->info(message: 'Started DomainRepositoryTest'); + } + + public function tearDown(): void + { + $this->logger->info(message: 'Finished DomainRepositoryTest'); + } + + /** + */ + public function testInsert() + { + self::assertEquals(expected: true, actual: true); + /* + $domain = new Domain(name: 'inserttest.org', panel: 'keyhelp.lab.24unix.net'); + $this->domainRepository->insert(domain: $domain); + $this->domainController->createSlaveZoneFile(domain: $domain); + + // now get the persisted domain with id + $domainTest = $this->domainRepository->findByName(name: 'inserttest.org'); + + $this->assertIsNotBool(actual: $domainTest); + $this->assertEquals(expected: 'inserttest.org', actual: $domainTest->getName()); + + if ($namedConfLocal = file_get_contents(filename: $this->namedConfLocalFile)) { + $this->assertStringContainsString(needle: $this->localZoneFile, haystack: $namedConfLocal); + } else { + $this->fail(message: 'No permissions: ' . $this->namedConfLocalFile); + } + + $this->assertNotFalse(condition: fileperms(filename: $this->localZoneFile)); + + $localZones = file_get_contents(filename: $this->localZoneFile); + $this->assertStringContainsString(needle: $domainTest->getName(), haystack: $localZones); + + $zoneFile = $this->localZonesDir . $domain->getName(); + + $this->assertFileExists(filename: $zoneFile); + + + // clean up + $this->domainRepository->delete(domain: $domainTest); + */ + } + + + /** + */ + public function testDelete() + { + self::assertEquals(expected: true, actual: true); + + /* + $domain = new Domain(name: 'inserttest.org', panel: 'keyhelp.lab.24unix.net'); + $this->domainRepository->insert(domain: $domain); + $this->domainController->createSlaveZoneFile(domain: $domain); + + $domainTest = $this->domainRepository->findByName(name: 'inserttest.org'); + $this->assertIsNotBool(actual: $domainTest); + $this->assertEquals(expected: 'inserttest.org', actual: $domainTest->getName()); + + // domain is valid and created + + // now delete and check for cleanup + $this->domainRepository->delete(domain: $domainTest); + + $this->domainController->deleteZone(domain: $domainTest); + + // check zone is removed + + $this->assertNotFalse(condition: fileperms(filename: $this->localZoneFile)); + + $localZones = file_get_contents(filename: $this->localZoneFile); + $this->assertStringNotContainsString(needle: $domainTest->getName(), haystack: $localZones); + + $zoneFile = $this->localZonesDir . $domain->getName(); + + $this->assertFileDoesNotExist(filename: $zoneFile); +*/ + } + +}