mirror of
https://github.com/coollabsio/coolify.git
synced 2026-08-28 02:24:23 -05:00
Move internal hostname loading and breadcrumb status into dedicated Livewire components with live refresh. Merge public/internal access into one Access section, bind Enter to save on the unsaved bar, and drop x-teleport wrappers from popup and global search.
50 lines
3.0 KiB
PHP
50 lines
3.0 KiB
PHP
<?php
|
|
|
|
it('shows internal Docker access details in application general settings', function () {
|
|
$generalSettings = file_get_contents(resource_path('views/livewire/project/application/general.blade.php'));
|
|
$generalComponent = file_get_contents(app_path('Livewire/Project/Application/General.php'));
|
|
$internalAccessSettings = file_get_contents(resource_path('views/livewire/project/application/internal-access.blade.php'));
|
|
$internalAccessComponent = file_get_contents(app_path('Livewire/Project/Application/InternalAccess.php'));
|
|
$configurationSidebar = file_get_contents(resource_path('views/components/application/configuration-sidebar.blade.php'));
|
|
|
|
expect($generalSettings)
|
|
->toContain('id="access-section" title="Access"')
|
|
->toContain('<h3 class="mb-4 text-sm font-semibold text-black dark:text-fg">Public access</h3>')
|
|
->toContain('<livewire:project.application.internal-access')
|
|
->not->toContain('wire:init="loadCurrentInternalHostname"')
|
|
->and($internalAccessSettings)
|
|
->toContain('id="internal-access-section"')
|
|
->toContain('<h3 class="mb-4 text-sm font-semibold text-black dark:text-fg">Internal access</h3>')
|
|
->not->toContain('<x-application.settings-section')
|
|
->toContain('Internal hostname')
|
|
->toContain('Docker network')
|
|
->toContain('Exposed ports')
|
|
->toContain('Network aliases')
|
|
->toContain('wire:init="loadCurrentInternalHostname"')
|
|
->toContain('$currentInternalHostname')
|
|
->toContain('class="input input-with-copy-button bg-white dark:bg-coolgray-100 dark:read-only:bg-coolgray-100 dark:read-only:text-white"')
|
|
->not->toContain('Changes with each deployment')
|
|
->toContain("window.scrollToSettingsSection?.('networking-section')")
|
|
->and($generalComponent)
|
|
->not->toContain('public function loadCurrentInternalHostname(): void')
|
|
->and($internalAccessComponent)
|
|
->toContain('public ?string $currentInternalHostname = null;')
|
|
->toContain('public function loadCurrentInternalHostname(): void')
|
|
->toContain('getCurrentApplicationContainerStatus(')
|
|
->toContain("data_get(\$currentContainer, 'Names')")
|
|
->and($configurationSidebar)
|
|
->toContain("['id' => 'access-section', 'label' => 'Access']");
|
|
});
|
|
|
|
it('does not show the internal access section for Docker Compose applications', function () {
|
|
$generalSettings = file_get_contents(resource_path('views/livewire/project/application/general.blade.php'));
|
|
$configurationSidebar = file_get_contents(resource_path('views/components/application/configuration-sidebar.blade.php'));
|
|
|
|
expect($generalSettings)
|
|
->toContain("@if (\$buildPack !== 'dockercompose')")
|
|
->and($configurationSidebar)
|
|
->toContain("['id' => 'access-section', 'label' => 'Access']")
|
|
->not->toContain("['id' => 'public-access-section', 'label' => 'Public access']")
|
|
->not->toContain("['id' => 'internal-access-section', 'label' => 'Internal access']");
|
|
});
|