Compare commits
6 Commits
552eeb0c25
...
9a59a2563d
Author | SHA1 | Date |
---|---|---|
tracer | 9a59a2563d | |
tracer | 620e762dfc | |
tracer | 5efa996d1d | |
tracer | 82018976cf | |
tracer | 26e2934e40 | |
tracer | b554c751ae |
|
@ -6,3 +6,7 @@
|
||||||
/config.json.local
|
/config.json.local
|
||||||
/bindAPI.log
|
/bindAPI.log
|
||||||
|
|
||||||
|
/reports/
|
||||||
|
/bindAPI.test.log
|
||||||
|
/.phpunit.result.cache
|
||||||
|
/config.json.test
|
||||||
|
|
|
@ -15,14 +15,19 @@
|
||||||
"php": ">=8.1",
|
"php": ">=8.1",
|
||||||
"ext-curl": "*",
|
"ext-curl": "*",
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
|
"ext-mbstring": "*",
|
||||||
|
"ext-openssl": "*",
|
||||||
"ext-pdo": "*",
|
"ext-pdo": "*",
|
||||||
|
"ext-posix": "*",
|
||||||
|
"ext-sodium": "*",
|
||||||
"arubacao/tld-checker": "^1.2",
|
"arubacao/tld-checker": "^1.2",
|
||||||
"monolog/monolog": "^3.1",
|
"monolog/monolog": "^3.1",
|
||||||
|
"netresearch/jsonmapper": "^4.0",
|
||||||
"php-di/php-di": "^6.3",
|
"php-di/php-di": "^6.3",
|
||||||
"phplucidframe/console-table": "^1.2",
|
"phplucidframe/console-table": "^1.2",
|
||||||
"zircote/swagger-php": "^4.2",
|
"symfony/property-access": "^6.1",
|
||||||
"ext-posix": "*",
|
"symfony/serializer": "^6.1",
|
||||||
"ext-openssl": "*"
|
"zircote/swagger-php": "^4.2"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"optimize-autoloader": true,
|
"optimize-autoloader": true,
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
25
phpunit.xml
25
phpunit.xml
|
@ -1,8 +1,27 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<phpunit bootstrap="vendor/autoload.php">
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
|
||||||
|
bootstrap="vendor/autoload.php"
|
||||||
|
cacheResultFile=".phpunit.cache/test-results"
|
||||||
|
executionOrder="depends,defects"
|
||||||
|
forceCoversAnnotation="false"
|
||||||
|
beStrictAboutCoversAnnotation="true"
|
||||||
|
beStrictAboutOutputDuringTests="true"
|
||||||
|
beStrictAboutTodoAnnotatedTests="true"
|
||||||
|
convertDeprecationsToExceptions="true"
|
||||||
|
failOnRisky="true"
|
||||||
|
failOnWarning="true"
|
||||||
|
verbose="true">
|
||||||
<testsuites>
|
<testsuites>
|
||||||
<testsuite name="bindAPI Test Suite">
|
<testsuite name="default">
|
||||||
<directory suffix=".php">./tests/</directory>
|
<directory>tests</directory>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
</testsuites>
|
</testsuites>
|
||||||
|
|
||||||
|
<coverage cacheDirectory=".phpunit.cache/code-coverage"
|
||||||
|
processUncoveredFiles="true">
|
||||||
|
<include>
|
||||||
|
<directory suffix=".php">src</directory>
|
||||||
|
</include>
|
||||||
|
</coverage>
|
||||||
</phpunit>
|
</phpunit>
|
|
@ -11,13 +11,12 @@ use PDOException;
|
||||||
* @covers \App\Controller\DatabaseConnection
|
* @covers \App\Controller\DatabaseConnection
|
||||||
* @covers \App\Controller\ConfigController
|
* @covers \App\Controller\ConfigController
|
||||||
*/
|
*/
|
||||||
class DatabaseConnectionTest extends BindApiTestController
|
class DatabaseConnectionTest extends BindApiControllerTest
|
||||||
{
|
{
|
||||||
private PDO $dbConnection;
|
private PDO $dbConnection;
|
||||||
|
|
||||||
public function testGetConnection()
|
public function testGetConnection()
|
||||||
{
|
{
|
||||||
|
|
||||||
$configController = new ConfigController(test: true);
|
$configController = new ConfigController(test: true);
|
||||||
|
|
||||||
$dbHost = $configController->getConfig(configKey: 'dbHost');
|
$dbHost = $configController->getConfig(configKey: 'dbHost');
|
||||||
|
|
|
@ -7,7 +7,7 @@ use PHPUnit\Framework\TestCase;
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
class NameserverControllerTest extends TestCase
|
class NameserverControllerTest extends BindApiControllerTest
|
||||||
{
|
{
|
||||||
public function setUp(): void
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
|
@ -23,6 +23,6 @@ class NameserverControllerTest extends TestCase
|
||||||
|
|
||||||
public function testUpdate()
|
public function testUpdate()
|
||||||
{
|
{
|
||||||
|
self::assertEquals(expected: true, actual: true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Unit\Controller;
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
class RequestControllerTest extends BindApiControllerTest
|
||||||
|
{
|
||||||
|
|
||||||
|
public function setUp(): void
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function tearDown(): void
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue