mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 04:23:34 +00:00
34 lines
1.4 KiB
PHP
34 lines
1.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Runtime Logs must query Docker with the label that matches the resource type.
|
|
* Applications use coolify.applicationId, services coolify.serviceId, databases coolify.databaseId.
|
|
* Using the application helper for services/databases returns empty results even when containers run.
|
|
*/
|
|
it('looks up containers with the correct helper for each resource type', function () {
|
|
$logsFile = file_get_contents(__DIR__.'/../../app/Livewire/Project/Shared/Logs.php');
|
|
|
|
expect($logsFile)
|
|
->toContain('getCurrentApplicationContainerStatus(')
|
|
->toContain('getCurrentServiceContainerStatus(')
|
|
->toContain('getCurrentDatabaseContainerStatus(')
|
|
->toContain('$this->resource instanceof Application')
|
|
->toContain('$this->resource instanceof Service');
|
|
});
|
|
|
|
it('filters application containers by coolify.applicationId', function () {
|
|
$dockerHelpers = file_get_contents(__DIR__.'/../../bootstrap/helpers/docker.php');
|
|
|
|
expect($dockerHelpers)->toContain('label=coolify.applicationId=');
|
|
});
|
|
|
|
it('filters service and database containers by the correct coolify labels', function () {
|
|
$dockerHelpers = file_get_contents(__DIR__.'/../../bootstrap/helpers/docker.php');
|
|
|
|
expect($dockerHelpers)
|
|
->toContain('function getCurrentServiceContainerStatus')
|
|
->toContain('label=coolify.serviceId=')
|
|
->toContain('function getCurrentDatabaseContainerStatus')
|
|
->toContain('label=coolify.databaseId=');
|
|
});
|