coolify/tests/Feature/DockerCommandsTest.php

63 lines
2.2 KiB
PHP
Raw Normal View History

2023-03-20 22:17:28 +01:00
<?php
2023-03-30 10:04:44 +02:00
use App\Models\User;
use App\Models\Server;
2023-03-30 21:24:43 +02:00
use Database\Seeders\DatabaseSeeder;
2023-03-20 22:17:28 +01:00
use Tests\Support\Output;
2023-03-30 21:24:43 +02:00
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\RefreshDatabase;
uses(RefreshDatabase::class);
uses(DatabaseMigrations::class);
beforeEach(function () {
$this->seed(DatabaseSeeder::class);
});
2023-03-20 22:17:28 +01:00
it('starts a docker container correctly', function () {
2023-03-30 21:24:43 +02:00
test()->actingAs(User::factory([
'uuid' => Str::uuid(),
'email' => Str::uuid().'@example.com',
])->create());
2023-03-30 10:04:44 +02:00
2023-03-20 22:17:28 +01:00
$coolifyNamePrefix = 'coolify_test_';
2023-03-30 21:24:43 +02:00
2023-03-20 22:17:28 +01:00
$format = '{"ID":"{{ .ID }}", "Image": "{{ .Image }}", "Names":"{{ .Names }}"}';
$areThereCoolifyTestContainers = "docker ps --filter=\"name={$coolifyNamePrefix}*\" --format '{$format}' ";
// Generate a known name
$containerName = 'coolify_test_' . now()->format('Ymd_his');
$host = Server::where('name', 'testing-local-docker-container')->first();
2023-03-20 22:17:28 +01:00
2023-03-30 21:24:43 +02:00
// Stop testing containers
$activity = remoteProcess([
"docker stop $(docker ps --filter='name={$coolifyNamePrefix}*' -aq)",
"docker rm $(docker ps --filter='name={$coolifyNamePrefix}*' -aq)",
], $host);
2023-03-30 21:26:53 +02:00
2023-03-30 21:24:43 +02:00
expect($activity->getExtraProperty('exitCode'))->toBe(0);
2023-03-20 22:17:28 +01:00
// Assert there's no containers start with coolify_test_*
$activity = remoteProcess([$areThereCoolifyTestContainers], $host);
$containers = Output::containerList($activity->getExtraProperty('stdout'));
2023-03-20 22:17:28 +01:00
expect($containers)->toBeEmpty();
// start a container nginx -d --name = $containerName
$activity = remoteProcess(["docker run -d --rm --name {$containerName} nginx"], $host);
expect($activity->getExtraProperty('exitCode'))->toBe(0);
2023-03-20 22:17:28 +01:00
// docker ps name = $container
$activity = remoteProcess([$areThereCoolifyTestContainers], $host);
$containers = Output::containerList($activity->getExtraProperty('stdout'));
2023-03-20 22:17:28 +01:00
expect($containers->where('Names', $containerName)->count())->toBe(1);
// Stop testing containers
2023-03-30 21:24:43 +02:00
$activity = remoteProcess([
"docker stop $(docker ps --filter='name={$coolifyNamePrefix}*' -aq)",
"docker rm $(docker ps --filter='name={$coolifyNamePrefix}*' -aq)",
], $host);
expect($activity->getExtraProperty('exitCode'))->toBe(0);
2023-03-20 22:17:28 +01:00
});