Files
coolify/tests/Unit/GlobalSearchNewImageQuickActionTest.php
2026-06-04 15:24:53 +02:00

145 lines
6.1 KiB
PHP

<?php
/**
* Unit tests to verify that the "new image" quick action properly matches
* the docker-image type using the quickcommand field.
*
* This test verifies the fix for the issue where typing "new image" would
* not match because the frontend was only checking name and type fields,
* not the quickcommand field.
*/
it('ensures GlobalSearch blade template checks quickcommand field in matching logic', function () {
$bladeFile = file_get_contents(__DIR__.'/../../resources/views/livewire/global-search.blade.php');
// Check that the matching logic includes quickcommand check
expect($bladeFile)
->toContain('item.quickcommand')
->toContain('quickcommand.toLowerCase().includes(trimmed)');
});
it('ensures GlobalSearch clears search query when starting resource creation', function () {
$globalSearchFile = file_get_contents(__DIR__.'/../../app/Livewire/GlobalSearch.php');
// Check that navigateToResourceCreation clears the search query
expect($globalSearchFile)
->toContain('$this->searchQuery = \'\'');
});
it('ensures GlobalSearch uses redirect route helper', function () {
$globalSearchFile = file_get_contents(__DIR__.'/../../app/Livewire/GlobalSearch.php');
// Check that completeResourceCreation uses the shared redirect route helper
expect($globalSearchFile)
->toContain('redirectRoute($this, \'project.resource.create\'');
});
it('ensures docker-image item has quickcommand with new image', function () {
$globalSearchFile = file_get_contents(__DIR__.'/../../app/Livewire/GlobalSearch.php');
// Check that Docker Image has the correct quickcommand
expect($globalSearchFile)
->toContain("'name' => 'Docker Image'")
->toContain("'quickcommand' => '(type: new image)'")
->toContain("'type' => 'docker-image'");
});
it('uses neutral hover styling for GlobalSearch quick action rows', function () {
$bladeFile = file_get_contents(__DIR__.'/../../resources/views/livewire/global-search.blade.php');
preg_match_all('/<button[^>]+(?:wire:click="navigateToResource|@click="\\$wire\\.navigateToResource)[^>]+>/s', $bladeFile, $quickActionButtons);
expect($quickActionButtons[0])->not->toBeEmpty();
foreach ($quickActionButtons[0] as $quickActionButton) {
expect($quickActionButton)
->toContain('hover:bg-neutral-100 dark:hover:bg-coolgray-200')
->toContain('focus:bg-neutral-100 dark:focus:bg-coolgray-200')
->toContain('focus-visible:ring-coollabs dark:focus-visible:ring-warning')
->not->toContain('hover:bg-warning-50')
->not->toContain('hover:border-warning-500');
}
});
it('uses product logos for GlobalSearch database quick actions', function () {
$globalSearchFile = file_get_contents(__DIR__.'/../../app/Livewire/GlobalSearch.php');
$bladeFile = file_get_contents(__DIR__.'/../../resources/views/livewire/global-search.blade.php');
expect($bladeFile)
->toContain('asset($item[\'logo\'])')
->toContain(":src=\"'/' + item.logo\"");
foreach ([
'postgresql' => 'svgs/postgresql.svg',
'mysql' => 'svgs/mysql.svg',
'mariadb' => 'svgs/mariadb.svg',
'redis' => 'svgs/redis.svg',
'keydb' => 'svgs/keydb.svg',
'dragonfly' => 'svgs/dragonfly.svg',
'mongodb' => 'svgs/mongodb.svg',
'clickhouse' => 'svgs/clickhouse-icon.svg',
] as $type => $logo) {
expect($globalSearchFile)
->toContain("'type' => '{$type}'")
->toContain("'logo' => '{$logo}'");
expect(file_exists(__DIR__.'/../../public/'.$logo))->toBeTrue();
}
});
it('uses neutral hover styling for GlobalSearch existing resource rows', function () {
$bladeFile = file_get_contents(__DIR__.'/../../resources/views/livewire/global-search.blade.php');
preg_match_all('/<a[^>]+(?:href="{{ \\$result\\[\'link\'\\]|:href="result\\.link)[^>]+>/s', $bladeFile, $existingResourceLinks);
expect($existingResourceLinks[0])->not->toBeEmpty();
foreach ($existingResourceLinks[0] as $existingResourceLink) {
expect($existingResourceLink)
->toContain('hover:bg-neutral-100 dark:hover:bg-coolgray-200')
->toContain('focus:bg-neutral-100 dark:focus:bg-coolgray-200')
->toContain('focus-visible:ring-coollabs dark:focus-visible:ring-warning')
->not->toContain('hover:bg-neutral-50')
->not->toContain('focus:bg-warning')
->not->toContain('hover:border-coollabs')
->not->toContain('focus:border-warning');
}
});
it('uses visible cropped SVG marks for wide database logos', function () {
$keydbLogo = file_get_contents(__DIR__.'/../../public/svgs/keydb.svg');
$dragonflyLogo = file_get_contents(__DIR__.'/../../public/svgs/dragonfly.svg');
$clickhouseLogo = file_get_contents(__DIR__.'/../../public/svgs/clickhouse-icon.svg');
expect($keydbLogo)
->toContain('viewBox="0 0 160 182"')
->toContain('svg{color:#d4d4d4}')
->not->toContain('prefers-color-scheme');
expect($dragonflyLogo)
->toContain('viewBox="0 0 88 88"')
->toContain('svg{color:#d4d4d4}')
->not->toContain('prefers-color-scheme');
expect($clickhouseLogo)
->toContain('viewBox="1.70837 1.875 22.25025 22.2493"')
->toContain('svg{color:#d4d4d4}')
->toContain('x="20.7087"')
->toContain('width="2.24992"')
->not->toContain('viewBox="0 0 100 43"')
->not->toContain('width="215"')
->not->toContain('height="90"');
});
it('uses cropped image assets instead of inline wide logos for GlobalSearch database icons', function () {
$globalSearchFile = file_get_contents(__DIR__.'/../../app/Livewire/GlobalSearch.php');
$bladeFile = file_get_contents(__DIR__.'/../../resources/views/livewire/global-search.blade.php');
expect($bladeFile)
->toContain('class="w-8 h-8 object-contain"')
->toContain('class="w-8 h-8 object-contain"')
->not->toContain('$item[\'logo_html\']')
->not->toContain('x-html="item.logo_html"');
expect($globalSearchFile)->not->toContain("'logo_html' =>");
});