diff --git a/.drone.yml b/.drone.yml index ebf0bb4..91d90a4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -21,7 +21,7 @@ steps: - COMPOSER_ALLOW_SUPERUSER=1 phyre-php composer.phar install - phyre-php artisan phyre:set-ini-settings APP_ENV "local" - phyre-php artisan migrate - - phyre-php artisan test --filter AutoInstallPanelTest + - phyre-php artisan test --- kind: pipeline name: Ubuntu 22.04 - Unit Test & Code Coverage diff --git a/web/tests/Unit/HostingSubscriptionBackupTest.php b/web/tests/Unit/HostingSubscriptionBackupTest.php index ca004df..b907885 100644 --- a/web/tests/Unit/HostingSubscriptionBackupTest.php +++ b/web/tests/Unit/HostingSubscriptionBackupTest.php @@ -25,10 +25,11 @@ class HostingSubscriptionBackupTest extends ActionTestCase { public function testFullBackup() { + ini_set('memory_limit', '-1'); ini_set('max_execution_time', 0); - Queue::fake(); + // Queue::fake(); $chs = $this->_createHostingSubscription(); @@ -37,6 +38,7 @@ class HostingSubscriptionBackupTest extends ActionTestCase $newBackup->hosting_subscription_id = $chs['hostingSubscriptionId']; $newBackup->save(); + $phsb = new ProcessHostingSubscriptionBackup($newBackup->id); $phsb->handle(); diff --git a/web/tests/Unit/HostingSubscriptionCreateTest.php b/web/tests/Unit/HostingSubscriptionCreateTest.php index 0ab7e94..af78108 100644 --- a/web/tests/Unit/HostingSubscriptionCreateTest.php +++ b/web/tests/Unit/HostingSubscriptionCreateTest.php @@ -15,7 +15,7 @@ use Tests\Feature\Api\ActionTestCase; class HostingSubscriptionCreateTest extends ActionTestCase { - function test_route_contains_middleware() + function testRouteContainsMiddleware() { $this->assertRouteContainsMiddleware( 'api.hosting-subscriptions.index', diff --git a/web/tests/Unit/HostingSubscriptionWithNodeJSCreateTest.php b/web/tests/Unit/HostingSubscriptionWithNodeJSCreateTest.php index f6d0feb..c3e9df5 100644 --- a/web/tests/Unit/HostingSubscriptionWithNodeJSCreateTest.php +++ b/web/tests/Unit/HostingSubscriptionWithNodeJSCreateTest.php @@ -18,7 +18,7 @@ use Tests\Feature\Api\ActionTestCase; class HostingSubscriptionWithNodeJSCreateTest extends ActionTestCase { - function test_route_contains_middleware() + function testRouteContainsMiddleware() { $this->assertRouteContainsMiddleware( 'api.hosting-subscriptions.index', @@ -29,23 +29,22 @@ class HostingSubscriptionWithNodeJSCreateTest extends ActionTestCase 'api.hosting-subscriptions.store', ApiKeyMiddleware::class ); - - $this->assertRouteContainsMiddleware( - 'api.hosting-subscriptions.update', - ApiKeyMiddleware::class - ); - - $this->assertRouteContainsMiddleware( - 'api.hosting-subscriptions.destroy', - ApiKeyMiddleware::class - ); +// +// $this->assertRouteContainsMiddleware( +// 'api.hosting-subscriptions.update', +// ApiKeyMiddleware::class +// ); +// +// $this->assertRouteContainsMiddleware( +// 'api.hosting-subscriptions.destroy', +// ApiKeyMiddleware::class +// ); } - function test_create() + function testCreate() { $this->assertTrue(Str::contains(php_uname(),'Ubuntu')); -// $isNodeJsInstalled = false; diff --git a/web/tests/Unit/HostingSubscriptionWithPythonCreateTest.txt b/web/tests/Unit/HostingSubscriptionWithPythonCreateTest.txt index 6d67c9e..bcf7837 100644 --- a/web/tests/Unit/HostingSubscriptionWithPythonCreateTest.txt +++ b/web/tests/Unit/HostingSubscriptionWithPythonCreateTest.txt @@ -17,7 +17,7 @@ use Tests\Feature\Api\ActionTestCase; class HostingSubscriptionWithPythonCreateTest extends ActionTestCase { - function test_route_contains_middleware() + function testRouteContainsMiddleware() { $this->assertRouteContainsMiddleware( 'api.hosting-subscriptions.index', diff --git a/web/tests/Unit/HostingSubscriptionsTest.php b/web/tests/Unit/HostingSubscriptionsTest.php index 83e2a63..e8ec16c 100644 --- a/web/tests/Unit/HostingSubscriptionsTest.php +++ b/web/tests/Unit/HostingSubscriptionsTest.php @@ -9,7 +9,7 @@ use Tests\Feature\Api\ActionTestCase; class HostingSubscriptionsTest extends ActionTestCase { - function test_route_contains_middleware() + function testRouteContainsMiddleware() { $this->assertRouteContainsMiddleware( 'api.hosting-subscriptions.index', @@ -29,7 +29,7 @@ class HostingSubscriptionsTest extends ActionTestCase ); } - function test_index() + function testIndex() { // Make unauthorized call $callUnauthorizedResponse = $this->callRouteAction('api.hosting-subscriptions.index')->json();